.fp-hero {
    margin-bottom: 2.5rem;
    position: relative;
}

.fp-hero-article {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #222;
    position: relative;
}

.fp-hero-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.fp-hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fp-hero-article:hover .fp-hero-image img {
    transform: scale(1.05);
}

.fp-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 50%, transparent 100%);
    padding: 2rem 2rem 2.5rem;
    color: white;
    z-index: 2;
}

.fp-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fp-category-badge {
    background: #00A676;
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

.fp-hero-date {
    color: #ccc;
    font-size: 0.95rem;
}

.fp-hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.fp-hero-title a {
    color: white;
    text-decoration: none;
}

.fp-hero-title a:hover {
    color: #00A676;
}

.fp-hero-excerpt {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.fp-read-more-btn {
    display: inline-block;
    background: #00A676;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fp-read-more-btn:hover {
    background: #008c66;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 118, 0.35);
}

.fp-latest-section {
    margin-bottom: 4rem;
}

.fp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.fp-section-title {
    font-size: 2rem;
    color: white;
    position: relative;
    padding-bottom: 0.7rem;
}

.fp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: #00A676;
}

.fp-prediksi-section .fp-section-title {
    color: #00A676;
}

.fp-latest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fp-latest-item {
    background: #111;
    border-radius: 16px;
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.35s ease;
}

.fp-latest-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 166, 118, 0.22);
}

.fp-item-thumb {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}

.fp-item-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.fp-latest-item:hover .fp-item-thumb img {
    transform: scale(1.12);
}

.fp-item-content {
    padding: 1.5rem;
}

.fp-item-title {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-item-title a {
    color: white;
    text-decoration: none;
}

.fp-item-title a:hover {
    color: #00A676;
}

.fp-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #aaa;
    font-size: 0.95rem;
}

.fp-item-date {
    color: #ccc;
}

.fp-item-cat {
    background: rgba(0, 166, 118, 0.18);
    color: #00A676;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.fp-pagination {
    padding: 2rem 0;
    text-align: center;
}

.fp-pagination .page-numbers {
    padding: 0.6rem 1.2rem;
    margin: 0 0.3rem;
    background: #222;
    color: #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.fp-pagination .page-numbers:hover,
.fp-pagination .page-numbers.current {
    background: #00A676;
    color: white;
}

.fp-no-posts {
    text-align: center;
    padding: 3rem;
    color: #777;
    font-style: italic;
}

.fp-category-section {
    margin-bottom: 4.5rem;
}

.fp-cat-link {
    color: #00A676;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.fp-cat-link:hover {
    color: white;
    transform: translateX(8px);
}

.fp-cat-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fp-cat-item {
    display: flex;
    gap: 1.6rem;
    padding: 1.4rem;
    background: #111;
    border-radius: 16px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.fp-cat-item:hover {
    background: #181818;
    transform: translateY(-4px);
}

.fp-cat-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.fp-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.fp-cat-item:hover .fp-cat-thumb img {
    transform: scale(1.08);
}

.fp-cat-content {
    flex-grow: 1;
}

.fp-cat-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-cat-title a {
    color: white;
    text-decoration: none;
}

.fp-cat-title a:hover {
    color: #00A676;
}

.fp-cat-excerpt {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-cat-meta {
    color: #aaa;
    font-size: 0.92rem;
}

.fp-no-cat-posts {
    text-align: center;
    padding: 2rem;
    color: #777;
    font-style: italic;
}

.fp-cat-item.first-cat-item {
    flex-direction: column;
    padding: 0;
    background: #0a0a0a;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.fp-cat-item.first-cat-item .fp-cat-thumb {
    width: 100%;
    height: 300px;
}

.fp-cat-item.first-cat-item .fp-cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.8rem 1.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
    color: white;
}

.fp-cat-item.first-cat-item .fp-cat-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.fp-cat-item.first-cat-item .fp-cat-title a {
    color: white;
}

.fp-cat-item.first-cat-item .fp-cat-excerpt {
    display: -webkit-box;
    color: #eee;
    font-size: 1.05rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden;
}

.fp-cat-item.first-cat-item .fp-cat-meta {
    color: #ddd;
    font-size: 0.95rem;
    margin-top: 0.8rem;
}

.fp-cat-item.rest-cat-item {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
}

.fp-cat-item.rest-cat-item .fp-cat-thumb {
    width: 120px;
    height: 80px;
}

.fp-cat-item.rest-cat-item .fp-cat-content {
    flex: 1;
}

.fp-cat-item.rest-cat-item .fp-cat-excerpt {
    display: none;
}

.standings-section {
    margin: 4rem 0;
}

.standings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .standings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.standing-card {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.league-title {
    background: #00A676;
    color: white;
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.standing-content {
    padding: 1rem;
    flex-grow: 1;
    overflow: hidden;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.standings-table th {
    background: #222;
    color: #ccc;
    padding: 0.5rem 0.25rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    border-bottom: 2px solid #00A676;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standings-table td {
    padding: 0.5rem 0.25rem;
    text-align: center;
    border-bottom: 1px solid #333;
    font-size: 0.85rem;
}

.standings-table th:nth-child(1),
.standings-table td:nth-child(1) {
    width: 10%;
    min-width: 35px;
}

.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    width: 45%;
    min-width: 120px;
    text-align: left;
    padding-left: 0.5rem;
}

.standings-table th:nth-child(3),
.standings-table th:nth-child(4),
.standings-table th:nth-child(5),
.standings-table th:nth-child(6),
.standings-table td:nth-child(3),
.standings-table td:nth-child(4),
.standings-table td:nth-child(5),
.standings-table td:nth-child(6) {
    width: 8%;
    min-width: 25px;
}

.standings-table th:nth-child(7),
.standings-table td:nth-child(7) {
    width: 13%;
    min-width: 40px;
    font-weight: bold;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.team-logo {
    border-radius: 50%;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.team-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    font-size: 0.9rem;
}

.champions-league {
    background: rgba(76, 175, 80, 0.1);
}

.europa-league {
    background: rgba(33, 150, 243, 0.1);
}

.relegation {
    background: rgba(244, 67, 54, 0.1);
}

.no-data {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-style: italic;
}

.top-scorers-section {
    margin: 4rem 0;
}

.scorers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .scorers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.league-scorers-group {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.league-subtitle {
    color: #00A676;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.league-scorers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.scorer-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.scorer-card:hover {
    transform: translateX(5px);
    background: #222;
}

.scorer-rank {
    background: #00A676;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.scorer-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.scorer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.scorer-info {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
}

.scorer-name {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scorer-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    overflow: hidden;
}

.team-logo-small {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

.scorer-team {
    color: #aaa;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scorer-stats {
    color: #00A676;
    font-weight: bold;
    font-size: 0.9rem;
}

.most-read-section {
    margin: 4rem 0;
}

.most-read-list {
    background: #111;
    border-radius: 12px;
    border: 1px solid #222;
    overflow: hidden;
}

.most-read-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #222;
    transition: background 0.3s ease;
}

.most-read-item:last-child {
    border-bottom: none;
}

.most-read-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.item-rank {
    background: #00A676;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.item-content {
    flex-grow: 1;
}

.item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.item-title a {
    color: white;
    text-decoration: none;
}

.item-title a:hover {
    color: #00A676;
}

.item-meta {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.item-category {
    background: rgba(0, 166, 118, 0.2);
    color: #00A676;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.item-views {
    color: #aaa;
}

@media (max-width: 1023px) {
    .fp-latest-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }
}

@media (max-width: 768px) {
    .fp-hero {
        margin-bottom: 2rem;
    }

    .fp-hero-image {
        padding-top: 66.67%;
    }

    .fp-hero-overlay {
        padding: 1.6rem;
    }

    .fp-hero-title {
        font-size: 1.9rem;
    }

    .fp-hero-excerpt {
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }

    .fp-latest-list {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .fp-cat-list {
        gap: 1.2rem;
    }

    .fp-cat-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        background: #111;
        border-radius: 12px;
        border: 1px solid #222;
    }

    .fp-cat-thumb {
        width: 100%;
        height: 200px;
    }

    .fp-cat-title {
        font-size: 1.2rem;
    }

    .fp-cat-excerpt {
        display: none;
    }

    .standings-grid,
    .scorers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fp-hero-title {
        font-size: 1.6rem;
    }

    .fp-hero-excerpt,
    .fp-hero-date {
        display: none;
    }

    .fp-read-more-btn {
        width: 100%;
    }
}