
/* =====================================================
   ASLI777
   ASEAN / AFF INDONESIA 2026
   RED & WHITE NATIONAL FOOTBALL
===================================================== */

:root {

    --red: #c8102e;
    --red-dark: #8d071c;
    --red-light: #ed2445;

    --white: #ffffff;
    --white-soft: #f4f4f2;

    --black: #080808;
    --black-soft: #101010;
    --black-light: #171717;

    --gray: #888;
    --gray-light: #b5b5b5;

    --line: rgba(255,255,255,.10);

    --container: 1180px;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--black);

    color: var(--white);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

}


.nav {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: inline-flex;

    align-items: center;

    gap: 0;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -1px;

}


.brand strong {

    color: var(--red);

}


.menu {

    display: flex;

    align-items: center;

    gap: 32px;

}


.menu a {

    color: #c2c2c2;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .3s ease;

}


.menu a:hover {

    color: var(--white);

}


.nav-cta {

    padding:
        11px 18px;

    background: var(--red);

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s ease;

}


.nav-cta:hover {

    background: var(--red-light);

    transform: translateY(-2px);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 860px;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-bg {

    position: absolute;

    inset: 0;

    background:

        url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;

    transform: scale(1.03);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5,5,5,.98) 0%,
            rgba(8,8,8,.90) 38%,
            rgba(8,8,8,.57) 72%,
            rgba(8,8,8,.90) 100%
        );

}


.hero-overlay::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(200,16,46,.10),
            transparent 35%,
            rgba(200,16,46,.08)
        );

}


.hero-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, .8fr);

    gap: 80px;

    align-items: center;

    padding-top: 80px;

}


.hero-content {

    max-width: 720px;

}


.flag-line {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ddd;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.flag-line span {

    width: 30px;
    height: 3px;

    background: var(--red);

}


.hero h1 {

    margin-top: 23px;

    font-family:
        "Barlow Condensed",
        Impact,
        sans-serif;

    font-size:
        clamp(72px, 9vw, 128px);

    font-weight: 900;

    line-height: .78;

    letter-spacing: -3px;

    text-transform: uppercase;

}


.hero h1 strong {

    display: block;

    color: var(--red);

}


.hero-content > p {

    max-width: 560px;

    margin-top: 35px;

    color: #b0b0b0;

    font-size: 14px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 32px;

}


.btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    padding:
        0 23px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: .3s ease;

}


.btn-red {

    background: var(--red);

    color: var(--white);

}


.btn-red:hover {

    background: var(--red-light);

    transform: translateY(-2px);

}


.btn-white {

    border:
        1px solid
        rgba(255,255,255,.35);

    color: var(--white);

}


.btn-white:hover {

    background: var(--white);

    color: var(--black);

}


.hero-status {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;

    color: #666;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 0 5px
        rgba(200,16,46,.12);

}


/* =====================================================
   HERO MATCH CARD
===================================================== */

.hero-match {

    min-height: 450px;

    position: relative;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.035)
        );

    border:
        1px solid
        rgba(255,255,255,.18);

    backdrop-filter:
        blur(15px);

}


.hero-match::before {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(200,16,46,.25);

    filter: blur(30px);

}


.match-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--red);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.match-label {

    margin-top: 35px;

    color: #777;

    font-size: 9px;

    letter-spacing: 2px;

}


.match-teams {

    display: grid;

    grid-template-columns:
        1fr
        60px
        1fr;

    gap: 15px;

    align-items: center;

    text-align: center;

}


.country {

    display: flex;

    flex-direction: column;

    align-items: center;

}


.flag-circle {

    width: 82px;
    height: 82px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #ffffff 0 50%,
            var(--red) 50% 100%
        );

    color: var(--black);

    font-size: 18px;

    font-weight: 900;

    border:
        4px solid
        rgba(255,255,255,.1);

}


.flag-circle.dark {

    background:
        linear-gradient(
            145deg,
            #272727,
            #101010
        );

    color: var(--white);

}


.country strong {

    margin-top: 15px;

    font-size: 11px;

    letter-spacing: 1px;

}


.country small {

    color: #666;

    margin-top: 4px;

    font-size: 7px;

    letter-spacing: 1.5px;

}


.versus {

    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(200,16,46,.55);

    border-radius: 50%;

    color: var(--red);

    font-size: 9px;

    font-weight: 900;

}


.match-card-footer {

    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.1);

}


.match-card-footer div {

    display: flex;

    flex-direction: column;

}


.match-card-footer small {

    color: #666;

    font-size: 7px;

    letter-spacing: 1.5px;

}


.match-card-footer strong {

    margin-top: 3px;

    color: var(--white);

    font-size: 10px;

    letter-spacing: 1px;

}


/* =====================================================
   GENERAL
===================================================== */

section {

    padding: 120px 0;

}


.section-heading {

    max-width: 650px;

}


.section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}


.section-tag {

    display: inline-block;

    color: var(--red);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    margin-top: 15px;

    font-family:
        "Barlow Condensed",
        Impact,
        sans-serif;

    font-size:
        clamp(52px, 6vw, 82px);

    font-weight: 900;

    line-height: .82;

    letter-spacing: -1px;

    text-transform: uppercase;

}


.section-heading h2 span {

    display: block;

    color: var(--red);

}


.section-heading p {

    margin-top: 23px;

    color: var(--gray);

    font-size: 13px;

}


/* =====================================================
   NATIONAL
===================================================== */

.national {

    background:
        var(--black-soft);

}


.national-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    margin-top: 70px;

    background:
        var(--line);

}


.national-card {

    min-height: 320px;

    padding: 32px;

    position: relative;

    background:
        var(--black-soft);

    overflow: hidden;

}


.national-card::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    border:
        1px solid
        rgba(200,16,46,.15);

}


.national-card.red {

    background:
        linear-gradient(
            145deg,
            var(--red-dark),
            #700616
        );

}


.card-number {

    color: #555;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.red .card-number {

    color: rgba(255,255,255,.45);

}


.card-icon {

    margin-top: 55px;

    color: var(--red);

    font-size: 30px;

}


.red .card-icon {

    color: var(--white);

}


.national-card h3 {

    margin-top: 18px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 27px;

    text-transform: uppercase;

}


.national-card p {

    max-width: 290px;

    margin-top: 8px;

    color: #777;

    font-size: 12px;

}


.red p {

    color: rgba(255,255,255,.65);

}


/* =====================================================
   MATCH SECTION
===================================================== */

.match-section {

    background: #090909;

}


.match-list {

    margin-top: 60px;

    border-top:
        1px solid
        var(--line);

}


.match-row {

    min-height: 120px;

    display: grid;

    grid-template-columns:
        60px
        130px
        1fr
        65px
        1fr
        100px;

    gap: 20px;

    align-items: center;

    border-bottom:
        1px solid
        var(--line);

    transition: .3s ease;

}


.match-row:hover {

    background:
        rgba(200,16,46,.04);

}


.match-number {

    color: var(--red);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 30px;

    font-weight: 800;

}


.match-info {

    display: flex;

    flex-direction: column;

}


.match-info small {

    color: #555;

    font-size: 7px;

    letter-spacing: 1.5px;

}


.match-info strong {

    margin-top: 3px;

    font-size: 10px;

    letter-spacing: 1px;

}


.club {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


.versus-small {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(200,16,46,.4);

    border-radius: 50%;

    color: var(--red);

    font-size: 8px;

    font-weight: 800;

}


.match-type {

    color: var(--red);

    text-align: center;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =====================================================
   STADIUM
===================================================== */

.stadium {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.stadium-image {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5,5,5,.97),
            rgba(5,5,5,.70),
            rgba(5,5,5,.60)
        ),

        url("https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;

}


.stadium-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(200,16,46,.12),
            transparent 60%
        );

}


.stadium-inner {

    position: relative;

    z-index: 2;

}


.stadium-content {

    max-width: 650px;

}


.stadium-content h2 {

    margin-top: 15px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(65px, 8vw, 110px);

    line-height: .78;

    font-weight: 900;

    text-transform: uppercase;

}


.stadium-content h2 span {

    display: block;

    color: var(--red);

}


.stadium-content p {

    max-width: 500px;

    margin-top: 25px;

    color: #aaa;

    font-size: 14px;

}


.stadium-stats {

    display: flex;

    gap: 40px;

    margin-top: 45px;

}


.stadium-stats div {

    display: flex;

    flex-direction: column;

}


.stadium-stats strong {

    color: var(--red);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 28px;

}


.stadium-stats span {

    max-width: 100px;

    margin-top: 4px;

    color: #aaa;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =====================================================
   TICKET
===================================================== */

.ticket-section {

    background:
        var(--black-soft);

}


.ticket-grid {

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 80px;

    align-items: center;

}


.ticket-copy h2 {

    margin-top: 15px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(58px, 7vw, 95px);

    line-height: .78;

    font-weight: 900;

    text-transform: uppercase;

}


.ticket-copy h2 span {

    display: block;

    color: var(--red);

}


.ticket-copy p {

    max-width: 430px;

    margin: 25px 0 30px;

    color: #777;

    font-size: 13px;

}


/* Ticket */

.football-ticket {

    position: relative;

    min-height: 350px;

    padding: 28px;

    color: var(--black);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #ededed
        );

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.45);

}


.football-ticket::before,
.football-ticket::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 30px;
    height: 30px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        var(--black-soft);

}


.football-ticket::before {

    left: -16px;

}


.football-ticket::after {

    right: -16px;

}


.ticket-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        rgba(0,0,0,.15);

}


.ticket-logo {

    font-size: 19px;

    font-weight: 900;

}


.ticket-logo strong {

    color: var(--red);

}


.ticket-top > span {

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.ticket-center {

    padding:
        45px 20px 35px;

    text-align: center;

}


.ticket-center small {

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 3px;

}


.ticket-center h3 {

    margin-top: 12px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(45px, 6vw, 70px);

    line-height: .75;

    font-weight: 900;

    text-transform: uppercase;

}


.ticket-center h3 span {

    display: block;

    color: var(--red);

}


.ticket-vs {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    margin-top: 30px;

}


.ticket-vs strong {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        2px solid
        var(--red);

    border-radius: 50%;

    font-size: 10px;

}


.ticket-vs span {

    color: var(--red);

    font-size: 9px;

    font-weight: 900;

}


.ticket-details {

    display: flex;

    justify-content: center;

    gap: 50px;

    padding-top: 15px;

    border-top:
        1px dashed
        rgba(0,0,0,.25);

}


.ticket-details div {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.ticket-details small {

    font-size: 6px;

    letter-spacing: 1.5px;

}


.ticket-details strong {

    font-size: 9px;

    letter-spacing: 1px;

}


.ticket-bottom {

    display: flex;

    justify-content: space-between;

    margin-top: 20px;

    padding-top: 13px;

    border-top:
        1px solid
        rgba(0,0,0,.12);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =====================================================
   BENEFITS
===================================================== */

.benefits {

    background: #090909;

}


.benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    margin-top: 60px;

    background:
        var(--line);

}


.benefit-grid article {

    min-height: 230px;

    padding: 30px;

    background: #090909;

}


.benefit-grid article > span {

    color: var(--red);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.benefit-grid h3 {

    margin-top: 55px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 25px;

    text-transform: uppercase;

}


.benefit-grid p {

    margin-top: 8px;

    color: #666;

    font-size: 11px;

}


/* =====================================================
   FAQ
===================================================== */

.faq {

    background:
        var(--black-soft);

}


.faq-list {

    max-width: 850px;

    margin: 60px auto 0;

}


details {

    border-top:
        1px solid
        var(--line);

}


details:last-child {

    border-bottom:
        1px solid
        var(--line);

}


summary {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    list-style: none;

    font-size: 13px;

    font-weight: 700;

}


summary::-webkit-details-marker {

    display: none;

}


summary span {

    color: var(--red);

    font-size: 22px;

    font-weight: 300;

}


details p {

    max-width: 720px;

    padding:
        0 40px 25px 0;

    color: #707070;

    font-size: 12px;

}


/* =====================================================
   FINAL
===================================================== */

.final {

    position: relative;

    text-align: center;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );

}


.final::before {

    content: "INDONESIA";

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(120px, 20vw, 300px);

    font-weight: 900;

    color:
        rgba(255,255,255,.04);

    white-space: nowrap;

}


.final .container {

    position: relative;

    z-index: 2;

}


.final-label {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


.final h2 {

    margin:
        22px auto 35px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(65px, 9vw, 120px);

    line-height: .75;

    font-weight: 900;

    text-transform: uppercase;

}


.final h2 strong {

    display: block;

    color: var(--white);

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding-top: 70px;

    background:
        #050505;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

}


.footer-grid p {

    max-width: 360px;

    margin-top: 20px;

    color: #555;

    font-size: 11px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h4 {

    margin-bottom: 8px;

    color: var(--red);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.footer-column a {

    color: #666;

    font-size: 11px;

    transition: .3s ease;

}


.footer-column a:hover {

    color: var(--white);

}


.footer-bottom {

    border-top:
        1px solid
        var(--line);

}


.footer-bottom .container {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom span {

    color: #444;

    font-size: 9px;

    letter-spacing: 1px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .menu {

        display: none;

    }


    .hero-inner {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .hero {

        min-height: auto;

        padding:
            145px 0 90px;

    }


    .hero-match {

        max-width: 500px;

    }


    .national-grid {

        grid-template-columns: 1fr;

    }


    .ticket-grid {

        grid-template-columns: 1fr;

    }


    .benefit-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    section {

        padding: 85px 0;

    }


    .nav {

        min-height: 70px;

    }


    .nav-cta {

        display: none;

    }


    .hero {

        padding-top: 120px;

    }


    .hero h1 {

        font-size: 67px;

        letter-spacing: -2px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-match {

        min-height: 390px;

    }


    .flag-circle {

        width: 65px;
        height: 65px;

        font-size: 14px;

    }


    .match-teams {

        grid-template-columns:
            1fr
            45px
            1fr;

    }


    .versus {

        width: 44px;
        height: 44px;

    }


    .match-row {

        grid-template-columns:
            40px
            75px
            1fr
            42px
            1fr;

        gap: 9px;

        min-height: 110px;

    }


    .match-type {

        display: none;

    }


    .match-number {

        font-size: 23px;

    }


    .match-info strong {

        font-size: 8px;

    }


    .club {

        font-size: 9px;

    }


    .versus-small {

        width: 38px;
        height: 38px;

    }


    .stadium {

        min-height: 650px;

    }


    .stadium-stats {

        gap: 20px;

    }


    .stadium-stats span {

        font-size: 6px;

    }


    .benefit-grid {

        grid-template-columns: 1fr;

    }


    .benefit-grid article {

        min-height: 190px;

    }


    .benefit-grid h3 {

        margin-top: 35px;

    }


    .football-ticket {

        min-height: 320px;

        padding: 20px;

    }


    .ticket-center {

        padding:
            35px 5px;

    }


    .ticket-details {

        gap: 25px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom .container {

        min-height: 90px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 6px;

    }

}
