.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-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.fp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fp-hero-article:hover .fp-hero-image {
    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.95) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 2rem 2rem 1.8rem;
    color: white;
    z-index: 2;
}

.fp-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.fp-category-badge {
    background: #00A676;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.fp-hero-date {
    color: #ccc;
    font-size: 0.8rem;
}

.fp-hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    max-width: 80%;
}

.fp-hero-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fp-hero-title a:hover {
    color: #00A676;
}

.fp-hero-excerpt {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 70%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-read-more-small {
    display: inline-block;
    background: #00A676;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.fp-read-more-small:hover {
    background: #008c66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 118, 0.3);
}

.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;
    display: block;
}

.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: 600;
    font-size: 0.7rem;
    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;
    }
    .fp-hero-image-wrapper {
        height: 450px;
    }
    .fp-hero-title {
        font-size: 1.6rem;
        max-width: 90%;
    }
    .fp-hero-excerpt {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .fp-latest-item.hide-on-mobile {
        display: none;
    }
    .fp-hero {
        margin-bottom: 2rem;
    }
    .fp-hero-image-wrapper {
        height: 400px;
    }
    .fp-hero-overlay {
        padding: 1.5rem;
    }
    .fp-hero-title {
        font-size: 1.4rem;
        max-width: 100%;
    }
    .fp-hero-excerpt {
        max-width: 100%;
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    .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-image-wrapper {
        height: 350px;
    }
    .fp-hero-overlay {
        padding: 1.2rem;
    }
    .fp-hero-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .fp-hero-excerpt {
        display: none;
    }
    .fp-hero-date {
        display: none;
    }
    .fp-read-more-small {
        padding: 0.3rem 1rem;
        font-size: 0.85rem;
    }
    .fp-read-more-btn {
        width: 100%;
    }
}

.featured-strip {
    margin: 2rem 0 3rem;
}

.strip-header {
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.strip-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-teams {
    margin-bottom: 2rem;
    padding: 0 0 1rem 0;
}

.strip-logos {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00A676 #222;
}

.strip-logos::-webkit-scrollbar {
    height: 4px;
}

.strip-logos::-webkit-scrollbar-track {
    background: #222;
    border-radius: 4px;
}

.strip-logos::-webkit-scrollbar-thumb {
    background: #00A676;
    border-radius: 4px;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 80px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.strip-item:hover {
    transform: translateY(-3px);
}

.strip-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.strip-item:hover img {
    border-color: #00A676;
}

.team-name {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-players {
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.strip-players {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00A676 #222;
}

.strip-players::-webkit-scrollbar {
    height: 4px;
}

.strip-players::-webkit-scrollbar-track {
    background: #222;
    border-radius: 4px;
}

.strip-players::-webkit-scrollbar-thumb {
    background: #00A676;
    border-radius: 4px;
}

.strip-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 80px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.strip-player:hover {
    transform: translateY(-3px);
}

.player-avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: #1a1a1a;
}

.strip-player:hover .player-avatar {
    border-color: #00A676;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-name {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-logos,
.strip-players {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00A676 #222;
}

.strip-item,
.strip-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.strip-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.player-avatar {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: #1a1a1a;
}

.team-name,
.player-name {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    max-width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 769px) {
    .strip-item img,
    .player-avatar {
        width: 90px;
        height: 90px;
    }
    .team-name,
    .player-name {
        max-width: 90px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .fp-hero-image-wrapper {
        height: 280px !important;
    }
    .fp-hero-overlay {
        padding: 1.2rem 1.2rem 1rem !important;
    }
    .fp-hero-title {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }
    .fp-hero-excerpt {
        display: none;
    }
    .fp-hero-date {
        display: none;
    }
    .fp-hero,
    .fp-latest-section,
    .fp-category-section,
    .standings-section,
    .top-scorers-section,
    .most-read-section {
        margin-bottom: 2rem !important;
    }
    .fp-section-header {
        margin-bottom: 1rem !important;
    }
    .fp-section-title {
        font-size: 0.7rem !important;
        padding-bottom: 0.5rem !important;
    }
    .fp-latest-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .fp-latest-item {
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    .fp-item-thumb {
        padding-top: 56.25% !important;
    }
    .fp-item-content {
        padding: 0.9rem !important;
    }
    .fp-item-title {
        font-size: 1.05rem !important;
        line-height: 1.32;
        margin-bottom: 0.5rem;
    }
    .fp-item-meta {
        font-size: 0.78rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .fp-item-cat {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
        background: #00A676;
        color: white;
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        font-size: 0.75rem;
    }
    .fp-cat-list {
        gap: 0.3rem;
    }
    .fp-cat-item {
        padding: 1rem !important;
        gap: 1rem;
    }
    .fp-cat-thumb {
        height: 180px !important;
    }
    .fp-cat-item.rest-cat-item .fp-cat-thumb {
        width: 110px !important;
        height: 78px !important;
    }
    .fp-cat-title {
        font-size: 1.12rem !important;
    }
    .fp-cat-excerpt {
        display: none;
    }
    .standings-grid,
    .scorers-grid {
        gap: 1.3rem;
    }
    .standing-card,
    .league-scorers-group {
        padding: 1rem;
    }
    .league-title,
    .league-subtitle {
        font-size: 1.1rem;
        padding: 0.9rem;
    }
    .fp-hero {
        margin-bottom: 0.3rem !important;
    }
    .featured-strip {
        margin: 0.2rem 0 0.3rem !important;
    }
    .featured-teams {
        margin-bottom: 0.2rem !important;
    }
    .featured-players {
        padding-top: 0.3rem !important;
    }
    .strip-header {
        margin-bottom: 0.2rem !important;
    }
    .strip-logos,
    .strip-players {
        padding: 0 !important;
        gap: 0.7rem !important;
    }
    .strip-item,
    .strip-player {
        width: 54px !important;
    }
    .strip-item img,
    .player-avatar {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
    }
    .team-name,
    .player-name {
        margin-top: 0.15rem !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .fp-hero-image-wrapper {
        height: 240px !important;
    }
    .fp-latest-list {
        gap: 1.1rem;
    }
    .fp-item-title {
        font-size: 1.1rem !important;
    }
    .fp-cat-thumb {
        height: 160px !important;
    }
}