* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


/* HEADER */

.site-header {
    background: #111;
    border-bottom: 4px solid #d4af37;
}

.site-header-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
}

.site-logo {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.site-logo span {
    color: #d4af37;
}


/* MAIN ARTICLE */

.container {
    width: min(960px, calc(100% - 40px));
    margin: 40px auto 60px;
}

article {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

article h1 {
    margin: 0 0 26px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    color: #111;
}

article h2 {
    margin: 34px 0 16px;
    font-size: 28px;
    line-height: 1.3;
    color: #111;
}

article h3 {
    color: #111;
}

article p {
    margin: 0 0 18px;
    font-size: 18px;
}


/* HERO IMAGE */

.match-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 28px;
}


/* CTA */

.cta-wrapper {
    text-align: center;
    margin: 28px 0 34px;
}

.main-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    min-height: 54px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    border-radius: 10px;
    transition: 0.2s ease;
}

.main-link:hover {
    transform: translateY(-2px);
    background: #c29b2f;
}


/* MATCH OVERVIEW */

.match-overview {
    margin: 34px 0;
    padding: 26px 28px;
    background: #f7f7f7;
    border-left: 5px solid #d4af37;
    border-radius: 10px;
}

.match-overview h2 {
    margin-top: 0;
}


/* SOURCES */

.source-title {
    margin: 32px 0 14px;
    padding-left: 24px;
    font-size: 20px;
}

.source-logo {
    display: block;
    width: 100%;
    max-width: 360px;
    max-height: 140px;
    height: auto;
    object-fit: contain;
    margin: 18px 0 24px;
}


/* WATCH INSTRUCTIONS */

.watch-instructions {
    margin: 34px 0;
    padding: 26px 30px;
    background: #191919;
    color: #fff;
    border-radius: 14px;
}

.watch-instructions-title {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 800;
}

.watch-instructions ol {
    margin: 0;
    padding-left: 24px;
}

.watch-instructions li {
    padding: 5px 0;
    font-size: 17px;
}

.watch-instructions a {
    color: #f0ce60;
    font-weight: 700;
}


/* VIDEOS */

.match-videos {
    margin-top: 42px;
}

.match-videos > h2 {
    margin-bottom: 22px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.video-item {
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-content {
    padding: 24px 26px 10px;
}

.video-content h3 {
    margin: 0 0 15px;
    font-size: 24px;
}


/* HOMEPAGE */

.home-container {
    width: min(1180px, calc(100% - 40px));
    margin: 42px auto 60px;
}

.home-intro {
    text-align: center;
    margin-bottom: 36px;
}

.home-intro h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    color: #111;
}

.home-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    color: #555;
}

.articles-section h2 {
    margin-bottom: 24px;
    font-size: 29px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.article-card {
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.07);
    transition: 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.article-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-card-content {
    padding: 22px;
}

.article-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.article-card h3 a {
    color: #111;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #b28e24;
}

.article-card p {
    margin: 0 0 17px;
    color: #555;
    font-size: 16px;
}

.read-more {
    color: #b28e24;
    font-weight: 800;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}


/* PAGINATION */

.pagination {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination a,
.pagination span {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.pagination a {
    background: #fff;
    border: 1px solid #ddd;
}

.pagination a:hover {
    border-color: #d4af37;
    background: #fff9e9;
}

.pagination .current-page {
    background: #d4af37;
    color: #111;
}

.pagination .next-page {
    padding-left: 18px;
    padding-right: 18px;
}


/* FOOTER */

.site-footer {
    margin-top: 60px;
    padding: 30px 20px;
    background: #111;
    color: #bbb;
    text-align: center;
}

.site-footer p {
    margin: 0;
}


/* TABLET */

@media (max-width: 900px) {

    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    article {
        padding: 30px;
    }
}


/* MOBILE */

@media (max-width: 620px) {

    .site-header-inner,
    .container,
    .home-container {
        width: calc(100% - 24px);
    }

    .site-header-inner {
        min-height: 66px;
    }

    .site-logo {
        font-size: 25px;
    }

    .container,
    .home-container {
        margin-top: 24px;
    }

    article {
        padding: 20px;
        border-radius: 12px;
    }

    article h1 {
        font-size: 31px;
    }

    article h2 {
        font-size: 24px;
    }

    article p {
        font-size: 17px;
    }

    .match-overview {
        padding: 20px;
    }

    .source-logo {
        width: 100%;
        max-width: 300px;
        max-height: 120px;
        margin: 16px 0 22px;
    }

    .watch-instructions {
        padding: 22px;
    }

    .main-link {
        width: 100%;
        padding: 14px 18px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-card-content {
        padding: 19px;
    }

    .video-content {
        padding: 20px 20px 8px;
    }

    .video-content h3 {
        font-size: 21px;
    }

    .pagination {
        gap: 6px;
    }

    .pagination a,
    .pagination span {
        min-width: 40px;
        min-height: 40px;
        padding: 8px 11px;
    }
}