:root {
    --bg: #050505;
    --panel: #0b0b0b;
    --gold: #f5b928;
    --gold2: #d99000;
    --text: #f4f4f1;
    --muted: #989898;
    --line: #242424;
    --red: #a91515;
    --container: min(1180px, 92vw);
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    z-index: 50;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.container {
    width: var(--container);
    margin: auto
}

.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: linear-gradient(#050505dd, transparent);
    padding: 20px 0
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none
}

.brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid #777;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    font: 800 12px 'Barlow Condensed';
    letter-spacing: 1px
}

.brand-mark:before,
.brand-mark:after {
    content: "";
    position: absolute;
    border: 2px solid var(--gold);
    border-radius: 50%;
    inset: 6px;
    border-right-color: transparent;
    transform: rotate(-25deg)
}

.brand-mark:after {
    inset: 11px;
    border-color: #aaa;
    border-left-color: transparent;
    transform: rotate(155deg)
}

.brand-text {
    font: 700 13px/1 'Barlow Condensed';
    letter-spacing: 1.5px
}

.brand-text b {
    color: var(--gold)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px
}

.nav-links a,
.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--gold)
}

.nav-cta {
    border: 1px solid #666;
    padding: 11px 17px !important
}

.menu-btn {
    display: none;
    background: none;
    border: 0
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #070707
}

.hero-media {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 35%, #2b2110 0, #090909 38%, #050505 70%);
    overflow: hidden
}

.media-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: contrast(1.1) grayscale(0.2);
    pointer-events: none
}

.media-slide.active {
    opacity: 0.65;
    pointer-events: all
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #050505 0%, #050505cc 38%, transparent 75%), linear-gradient(0deg, #050505 0%, transparent 35%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font: 600 12px 'Inter';
    letter-spacing: 2.4px;
    text-transform: uppercase
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    display: inline-block
}

.hero h1,
.section-head h2,
.event-copy h2,
.champ-copy h2,
.manifesto h2,
.shop h2,
.contact h2 {
    font: 900 clamp(74px, 10vw, 145px)/.78 'Barlow Condensed';
    letter-spacing: -3px;
    margin: 28px 0 20px;
    text-transform: uppercase
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
    -webkit-text-stroke: 1px #e7a916;
    text-shadow: 0 0 30px #f2ae2322
}

.hero-sub {
    font: 600 14px 'Inter';
    letter-spacing: 4px
}

.hero-sub b {
    color: var(--gold);
    margin: 0 8px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 35px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font: 800 12px 'Inter';
    padding: 16px 20px;
    border: 1px solid transparent;
    cursor: pointer
}

.btn span {
    font-size: 17px
}

.btn-gold {
    background: var(--gold);
    color: #080808;
    box-shadow: 0 10px 35px #f5b92820
}

.btn-gold:hover {
    background: #ffd45e
}

.btn-ghost {
    border-color: #555;
    color: #fff
}

.btn-ghost:hover {
    background: #ffffff11
}

.btn-hollow {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold)
}

.btn-hollow:hover {
    background: #f5b92815
}

.hero-bottom {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    font: 700 13px 'Barlow Condensed';
    letter-spacing: 2px
}

.hero-bottom small {
    font-size: 10px;
    color: var(--gold)
}

.hero-bottom .line {
    height: 1px;
    background: #555;
    flex: 1;
    min-width: 130px
}

.sponsor-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #000000cc;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.sponsor-overlay.open {
    opacity: 1;
    pointer-events: all
}

.sponsor-card {
    background: #090909;
    border: 1px solid #222;
    padding: 50px;
    max-width: 650px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: .4s;
    box-shadow: 0 30px 60px #000
}

.sponsor-overlay.open .sponsor-card {
    transform: translateY(0)
}

.close-sponsor {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 0;
    color: #aaa;
    font-size: 22px;
    cursor: pointer
}

.close-sponsor:hover {
    color: #fff
}

.sponsor-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 35px 0 45px
}

.tier {
    border: 1px solid #222;
    padding: 25px 15px;
    background: #0c0c0c;
    text-align: center
}

.tier h3 {
    font: 800 18px 'Barlow Condensed';
    color: #fff;
    margin: 0 0 10px
}

.tier p {
    font-size: 10px;
    color: #888;
    line-height: 1.6
}

.tier.gold-tier {
    border-color: var(--gold);
    background: #f5b9280a
}

.tier.gold-tier h3 {
    color: var(--gold)
}

.event-banner,
.fight-card-section,
.team-section,
.gallery,
.shop,
.contact {
    background: #080808;
    padding: 120px 0
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 70px;
    align-items: center
}

.event-kicker {
    color: var(--gold);
    font: 700 13px 'Barlow Condensed';
    letter-spacing: 3px
}

.event-copy h2,
.champ-copy h2,
.shop h2,
.contact h2 {
    font-size: clamp(62px, 8vw, 105px);
    margin: 20px 0
}

.event-copy h2 span,
.champ-copy h2 span,
.section-head h2 span,
.manifesto h2 span,
.shop h2 span,
.contact h2 span,
.team-copy h2 span {
    color: var(--gold)
}

.muted {
    color: #8f8f8f;
    line-height: 1.8;
    max-width: 560px
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.team-copy h2 {
    font-size: clamp(62px, 8vw, 105px);
    margin: 20px 0
}

.team-name {
    font: 800 35px 'Barlow Condensed';
    color: #fff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-role {
    font: 600 13px 'Inter';
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

.team-bio p {
    color: #999;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.team-image-wrap {
    position: relative;
    border: 1px solid #222;
    background: #0b0b0b;
}

.team-image-wrap img {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: top;
    filter: saturate(.8) contrast(1.1);
}

.event-meta {
    display: flex;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 35px 0;
    padding: 20px 0;
    gap: 35px
}

.event-meta>div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.event-meta b {
    font: 800 25px 'Barlow Condensed';
    letter-spacing: 1px
}

.event-meta span {
    font-size: 9px;
    color: #777;
    line-height: 1.5;
    letter-spacing: 1px
}

.text-link {
    color: #fff;
    text-decoration: none;
    font: 700 12px 'Inter';
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.text-link span {
    color: var(--gold);
    font-size: 18px;
    margin-left: 10px
}

.poster-card {
    position: relative
}

.poster-card img {
    display: block;
    width: 100%;
    max-height: 690px;
    object-fit: cover;
    object-position: center;
    filter: saturate(.95);
    border: 1px solid #2c2c2c
}

.poster-glow {
    position: absolute;
    inset: 8% -5%;
    z-index: -1;
    background: #d7941e;
    filter: blur(100px);
    opacity: .11
}

.countdown-section {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    background: #0d0d0d;
    padding: 55px 0
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.countdown-inner h3 {
    font: 900 50px/.85 'Barlow Condensed';
    margin: 18px 0 0
}

.countdown {
    display: flex;
    align-items: center;
    gap: 20px
}

.countdown div {
    display: flex;
    flex-direction: column;
    align-items: center
}

.countdown b {
    font: 800 62px/.8 'Barlow Condensed'
}

.countdown span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #777;
    margin-top: 12px
}

.countdown i {
    font-style: normal;
    color: var(--gold);
    font-size: 25px
}

.dark-section {
    padding: 120px 0;
    background: #050505
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 55px
}

.section-head h2 {
    font-size: clamp(65px, 8vw, 100px);
    margin: 22px 0 0
}

.fighter-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px
}

.fighter-card {
    background: #0b0b0b;
    border: 1px solid #222
}

.fighter-img {
    height: 520px;
    position: relative;
    overflow: hidden;
    background: #151515
}

.fighter-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000b;
    border: 1px solid #555;
    padding: 8px 12px;
    font: 700 12px 'Barlow Condensed';
    color: var(--gold)
}

.fighter-info {
    padding: 22px
}

.fighter-info p {
    font-size: 9px;
    letter-spacing: 2px;
    color: #777
}

.fighter-info h3 {
    font: 800 29px 'Barlow Condensed';
    margin: 10px 0 20px
}

.record {
    display: flex;
    gap: 20px
}

.record span {
    font-size: 8px;
    color: #777;
    line-height: 1.5
}

.record b {
    display: block;
    color: #ddd;
    font-size: 11px
}

.placeholder-art {
    height: 520px;
    background: radial-gradient(circle at 50% 40%, #3a2a10, #111 35%, #080808 70%);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden
}

.placeholder-art:before {
    content: "";
    width: 210px;
    height: 340px;
    border-radius: 50% 50% 42% 42%;
    border: 1px solid #544520;
    box-shadow: 0 0 100px #f5b92815
}

.placeholder-art span {
    position: absolute;
    font: 900 80px 'Barlow Condensed';
    color: #ffffff09
}

.placeholder-art.alt {
    background: radial-gradient(circle at 50% 30%, #262626, #0a0a0a 60%)
}

.champ-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background: #080808
}

.champ-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 50%, #f5b92812, transparent 35%), linear-gradient(120deg, #111, #050505)
}

.champ-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 50px
}

.belt-wrap {
    position: relative;
    padding: 25px
}

.belt-wrap img {
    position: relative;
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0 35px 35px #000)
}

.orbit {
    position: absolute;
    inset: 10%;
    border: 1px solid #4d3a18;
    border-radius: 50%;
    box-shadow: 0 0 100px #f5b92812
}

.champ-copy p {
    max-width: 500px;
    color: #999;
    line-height: 1.9
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 35px 0
}

.values div {
    border-top: 1px solid #333;
    padding-top: 12px
}

.values b {
    font: 700 12px 'Barlow Condensed';
    color: var(--gold)
}

.values span {
    display: block;
    font: 700 11px 'Inter';
    margin-top: 10px
}

.bouts {
    border-top: 1px solid #292929
}

.bout {
    display: grid;
    grid-template-columns: 1fr 1fr 2.3fr 1.1fr;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #292929;
    gap: 20px
}

.bout-no {
    font: 800 13px 'Barlow Condensed';
    color: var(--gold);
    letter-spacing: 1px
}

.division {
    font-size: 10px;
    color: #777;
    text-transform: uppercase
}

.versus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    font: 600 10px 'Inter';
    letter-spacing: 1px
}

.versus b {
    font: 800 25px 'Barlow Condensed';
    color: #eee
}

.versus strong {
    font: 900 20px 'Barlow Condensed';
    color: var(--gold)
}

.bout-prize {
    font-size: 9px;
    color: #888;
    text-align: right;
    letter-spacing: 1px
}

.manifesto {
    padding: 150px 0;
    background: linear-gradient(120deg, #12100b, #050505)
}

.manifesto h2 {
    font-size: clamp(60px, 9vw, 125px);
    max-width: 1000px
}

.manifesto p {
    max-width: 620px;
    color: #999;
    line-height: 1.9;
    font-size: 16px
}

.gallery-grid {
    columns: 3 320px;
    column-gap: 12px;
}

.g {
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 12px;
    display: inline-block;
    width: 100%;
}

.g img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .5s
}

.g:hover img {
    transform: scale(1.04)
}

.g:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000b, transparent 45%)
}

.g span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    font-size: 9px;
    letter-spacing: 2px;
    color: #ddd
}

.g1 {
    grid-column: span 2;
    grid-row: span 2
}

.g2 img {
    object-position: top center
}

.g3 img {
    object-fit: cover
}

.g6 {
    grid-column: span 2
}

.shop {
    background: #0c0c0c
}

.shop-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center
}

.shop h2 {
    margin-bottom: 10px
}

.shop p {
    max-width: 450px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px
}

.shirt img {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: auto;
    filter: drop-shadow(0 30px 30px #000)
}

.contact {
    background: #050505;
    border-top: 1px solid #222
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 100px
}

.contact h2 {
    margin-top: 25px
}

.contact p {
    color: #888;
    line-height: 1.8;
    max-width: 500px
}

form {
    display: grid;
    gap: 16px
}

label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777
}

input,
select,
textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    background: #0c0c0c;
    border: 1px solid #292929;
    color: #fff;
    padding: 14px;
    font: 500 13px Inter;
    outline: none
}

input:focus,
select:focus,
textarea:focus {
    border-color: #9b721f
}

textarea {
    resize: vertical
}

.form-msg {
    font-size: 11px !important;
    color: var(--gold) !important;
    margin: 0
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 0;
    border-bottom: 1px solid #222
}

.footer-links {
    display: flex;
    gap: 25px
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    color: #aaa;
    text-decoration: none;
    font-size: 9px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 30px;
    color: #555;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase
}

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 4vw;
        right: 4vw;
        background: #090909;
        border: 1px solid #222;
        padding: 20px;
        flex-direction: column;
        align-items: stretch
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 12px
    }

    .menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px
    }

    .menu-btn span {
        width: 25px;
        height: 2px;
        background: #fff
    }

    .hero-video {
        opacity: .5
    }

    .event-grid,
    .champ-grid,
    .shop-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 35px;
    }

    .team-image-wrap img {
        max-height: 400px;
    }

    .event-grid {
        gap: 40px
    }

    .countdown-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .countdown {
        width: 100%;
        justify-content: space-between
    }

    .countdown b {
        font-size: 48px
    }

    .fighter-grid {
        grid-template-columns: 1fr
    }

    .fighter-card.mob-hide {
        display: none
    }

    .bout {
        grid-template-columns: 1fr 1fr
    }

    .versus {
        grid-column: 1/-1;
        grid-row: 2
    }

    .bout-prize {
        text-align: left
    }

    .gallery-grid {
        columns: 2;
        column-gap: 15px;
    }

    .gallery-grid .g {
        margin-bottom: 15px;
        break-inside: avoid;
    }
}

@media(max-width: 600px) {
    .gallery-grid {
        columns: 1 !important;
    }
}

.footer-top {
    flex-wrap: wrap;
    gap: 30px
}

.footer-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap
}

.footer-bottom {
    flex-direction: column;
    gap: 8px
}

.hero h1 {
    font-size: 90px
}

.hero-bottom {
    width: 92%
}

@media(max-width:520px) {
    .hero h1 {
        font-size: 72px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .event-meta {
        gap: 15px;
        flex-wrap: wrap
    }

    .event-meta>div {
        min-width: 85px
    }

    .countdown {
        gap: 5px
    }

    .countdown b {
        font-size: 36px
    }

    .countdown i {
        font-size: 15px
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px
    }

    .gallery-grid {
        columns: 1;
        gap: 15px;
    }

    .manifesto {
        padding: 100px 0
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column
    }
}

#scroll-progress-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0%, #222 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

#scroll-progress-btn:hover {
    transform: scale(1.1);
}

#scroll-progress-btn::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: #050505;
    border-radius: 50%;
    z-index: -1;
}

#scroll-percent {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}

.hero-ticker-wrap {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100vw;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-ticker-track {
    display: flex;
    align-items: center;
    gap: 45px;
    width: max-content;
    animation: ticker-slide 20s linear infinite;
}

.hero-ticker-track img {
    height: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.custom-brand-logo {
    height: 35px !important;
    filter: none !important;
    opacity: 1 !important;
    border-radius: 4px;
    transition: transform 0.3s;
}

.hero-ticker-track a:hover .custom-brand-logo {
    transform: scale(1.1);
}

.ticker-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.ticker-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media(max-width: 600px) {
    .hero-ticker-wrap {
        bottom: 50px;
        padding: 8px 0;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: #060606;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid #1f1f1f;
    border-radius: 6px;
    padding: 24px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-answer {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--gold);
}