:root{
    --bg1:#070b18;
    --bg2:#0a1430;
    --text:#eef3ff;
    --muted: rgba(238,243,255,.72);

    --red:#d31f2a;
    --yellow:#f3c316;

    --section:#0b1a32;

    --max: 1200px;
    --radius: 14px;

    --cardRadius: 18px;
    --gap: 16px;
}

*{box-sizing:border-box}
body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color:var(--text);
    background: var(--bg1);
    overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{
    max-width:var(--max);
    margin:0 auto;
    padding:0 clamp(16px, 4vw, 24px);
}

/* ===== HERO ===== */
.hero{
    min-height: 72vh;
    min-height: 72svh;
    position:relative;
    display:flex;
    align-items:stretch;
    overflow:hidden;
    background:
            radial-gradient(1200px 600px at 10% 30%, rgba(62,110,255,.25), transparent 60%),
            radial-gradient(900px 500px at 85% 35%, rgba(230,48,120,.18), transparent 60%),
            linear-gradient(180deg, var(--bg1), var(--bg2));
}
.hero::before{
    content:"";
    position:absolute; inset:0;
    background: url("../stadium.jpg") center/cover no-repeat;
    opacity:.55;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.05);
}
.hero::after{
    content:"";
    position:absolute; inset:0;
    background:
            linear-gradient(90deg,
            rgba(4,8,18,.92) 0%,
            rgba(6,12,26,.78) 38%,
            rgba(40,10,35,.55) 70%,
            rgba(10,8,18,.70) 100%
            ),
            radial-gradient(900px 420px at 30% 0%, rgba(0,0,0,.35), transparent 60%),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cg fill='white' fill-opacity='0.06'%3E%3Ccircle cx='18' cy='24' r='1.6'/%3E%3Ccircle cx='72' cy='58' r='1.2'/%3E%3Ccircle cx='140' cy='42' r='1.4'/%3E%3Ccircle cx='196' cy='78' r='1.1'/%3E%3Ccircle cx='44' cy='140' r='1.2'/%3E%3Ccircle cx='108' cy='168' r='1.1'/%3E%3Ccircle cx='178' cy='150' r='1.3'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, auto, 220px 220px;
    background-repeat:no-repeat, no-repeat, repeat;
    pointer-events:none;
}

/* ===== NAV ===== */
.nav{
    position:absolute; top:0; left:0; right:0;
    z-index:5;
    padding: clamp(14px, 3vw, 22px) 0;
}
.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

/* logo png */
.brand{
    display:flex; align-items:center; gap:12px;
    font-weight:900;
    letter-spacing:.2px;
    min-width: 180px;
}
.brand .logo{
    width:52px; height:52px;
    border-radius: 999px;
    border:1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    display:grid; place-items:center;
    overflow:hidden;
    flex:0 0 auto;
}
.brand .logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:10px;
    display:block;
}

.nav-actions{
    display:flex; gap:12px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.btn{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: 900;
    cursor:pointer;
    transition: transform .15s ease, filter .15s ease, background .15s ease;
    user-select:none;
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    touch-action: manipulation;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn.red{
    background: linear-gradient(180deg, rgba(211,31,42,1), rgba(175,22,30,1));
    border-color: rgba(255,255,255,.10);
}
.btn.yellow{
    background: linear-gradient(180deg, rgba(243,195,22,1), rgba(215,158,0,1));
    color: #141414;
    border-color: rgba(0,0,0,.10);
}

/* ===== HERO CONTENT ===== */
.hero-content{
    position:relative;
    z-index:3;
    flex:1;
    display:flex;
    align-items:center;
    padding: clamp(92px, 10vw, 110px) 0 70px;
}
.hero-grid{
    width:100%;
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items:center;
}

.copy{max-width: 680px;}
.copy h1{
    margin:0 0 14px;
    font-size: clamp(30px, 4vw, 38px);
    line-height:1.06;
    font-weight:1000;
    letter-spacing:.2px;
    text-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.copy p{
    margin:0 0 22px;
    color: var(--muted);
    font-size: clamp(14.5px, 1.8vw, 16.5px);
    max-width: 58ch;
}

.cta-row{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    align-items:center;
}
.cta-row .btn{
    padding: 14px 22px;
    border-radius: 10px;
}
.hint{
    margin-top: 16px;
    color: rgba(255,255,255,.55);
    font-size: 12.5px;
}

.visual{
    position:relative;
    height: 520px;
    min-height: 420px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
}
.player{
    position:absolute;
    right: -10px;
    bottom: -34px;
    height: 110%;
    max-height: 640px;
    width:auto;
    max-width: 95%;
    filter: drop-shadow(0 28px 80px rgba(0,0,0,.55));
    opacity: .95;
    user-select:none;
    pointer-events:none;
}
.glow{
    position:absolute;
    right: 40px;
    bottom: 40px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 59% 59%, rgba(230,48,120,.35), transparent 37%),
    radial-gradient(circle at 65% 41%, rgba(110,80,255,.25), transparent 46%);
    filter: blur(8px);
    opacity:.95;
    pointer-events:none;
}

/* ===== SPONSOR STRIP ===== */
.sponsor-strip{
    background: var(--section);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}
.contentText{
    display:flex;
    gap:16px;
    align-items:center;
    justify-content:left;
    flex-wrap:wrap;
}
.sponsor-label{
    letter-spacing: .25em;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255,255,255,.65);
    display:flex;
    align-items:center;
    gap:10px;
}
.star{
    width:10px; height:10px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
}
.logos{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
}
.logo-pill{
    width:44px; height:44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    display:grid; place-items:center;
    color: rgba(255,255,255,.75);
    font-weight: 1000;
    font-size: 12px;
}

/* ===== SECTIONS ===== */
.section{
    background: var(--section);
    padding: 2px 0 64px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.section-title{
    text-align:center;
    margin-bottom: 26px;
}
.section-title h2{
    margin:0;
    font-size: clamp(26px, 3vw, 34px);
    font-weight:1000;
    letter-spacing:.2px;
}
.section-title h2 .gold{color: var(--yellow)}
.section-title p{
    margin: 10px auto 0;
    max-width: 70ch;
    color: rgba(255,255,255,.70);
    font-size: 15.5px;
}

/* ===== FEATURE CARDS (4) ===== */
.feature-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.8vw, 18px);
    align-items:start;
    margin-top: 18px;
}
.feature{
    text-align:center;
    padding: 0 6px;
}
.feature .art{
    width: 100%;
    height: 104px;
    border-radius: var(--cardRadius);
    background:
            radial-gradient(120px 90px at 30% 35%, rgba(243,195,22,.18), transparent 60%),
            radial-gradient(140px 90px at 80% 40%, rgba(80,120,255,.14), transparent 62%),
            rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin: 0 auto 12px;
}
.feature .art img{
    max-height: 140px;
    width:auto;
    object-fit:contain;
    transform: translateY(10px);
    filter: drop-shadow(0 18px 50px rgba(0,0,0,.45));
}
.feature h3{
    margin:0 0 8px;
    font-weight:1000;
    font-size: 15.5px;
    color: rgba(255,255,255,.92);
}
.feature p{
    margin:0;
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.45;
}
.feature p b{ color: #f0a20a; }

/* ===== AUTO SLIDERS ===== */
.slider-wrap{
    margin-top: 26px;
}
.slider-head{
    text-align:center;
    margin-bottom: 14px;
}
.slider-head h3{
    margin:0;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight:1000;
}
.slider-head p{
    margin: 8px auto 0;
    max-width: 70ch;
    color: rgba(255,255,255,.68);
    font-size: 14.5px;
}
.slider{
    position:relative;
    overflow:hidden;
    border-radius: var(--cardRadius);
    padding: 10px 0;
}
/* fade edges */
.slider::before,
.slider::after{
    content:"";
    position:absolute;
    top:0; bottom:0;
    width: 64px;
    z-index: 2;
    pointer-events:none;
}
.slider::before{
    left:0;
    background: linear-gradient(90deg, var(--section), rgba(11,26,50,0));
}
.slider::after{
    right:0;
    background: linear-gradient(270deg, var(--section), rgba(11,26,50,0));
}

.track{
    display:flex;
    width:max-content;
    will-change: transform;
}
.group{
    display:flex;
    gap: var(--gap);
    padding-right: var(--gap); /* bu kritik: seamless kayma */
}

/* desktop auto */
.auto-left .track{
    animation: marquee-left 34s linear infinite;
}
.auto-right .track{
    animation: marquee-right 38s linear infinite;
}
.slider:hover .track{ animation-play-state: paused; }

@keyframes marquee-left{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}
@keyframes marquee-right{
    from{ transform: translateX(-50%); }
    to{ transform: translateX(0); }
}

/* card inside sliders */
.media-card{
    flex: 0 0 auto;
    width: 280px;
    border-radius: var(--cardRadius);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    overflow:hidden;
    box-shadow: 0 16px 55px rgba(0,0,0,.22);
    transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.media-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.05);
}
.media-img{
    height: 160px;
    background:
            radial-gradient(140px 90px at 30% 35%, rgba(243,195,22,.18), transparent 60%),
            radial-gradient(160px 90px at 80% 45%, rgba(80,120,255,.14), transparent 62%),
            rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.08);
    position:relative;
    overflow:hidden;
}
.media-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.media-body{
    padding: 12px 12px 14px;
}
.media-body b{
    display:block;
    font-size: 14px;
    font-weight:1000;
    margin-bottom: 6px;
    color: rgba(255,255,255,.94);
}
.media-body p{
    margin:0;
    color: rgba(255,255,255,.72);
    font-size: 12.8px;
    line-height: 1.35;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
    .hero-grid{grid-template-columns:1fr;}
    .visual{
        height: 360px;
        min-height: 300px;
        justify-content:center;
    }
    .player{
        right:auto;
        left: 50%;
        transform: translateX(-35%);
        opacity:.78;
        height: 122%;
        bottom: -40px;
    }
    .glow{right: 50%; transform: translateX(20%); width: 420px; height: 420px;}
    .hero-content{padding: 96px 0 54px;}

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

    /* mobilde auto kayma yerine swipe */
    .slider{ overflow-x:auto; -webkit-overflow-scrolling: touch; }
    .slider::before, .slider::after{ display:none; }
    .track{ animation:none !important; }
    .group{ padding-right: 0; }
    .group.clone{ display:none; } /* swipe için klonu kapat */
    .media-card{ width: 260px; scroll-snap-align: start; }
    .slider{ scroll-snap-type: x mandatory; }
}

@media (max-width: 720px){
    .nav-inner{
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .nav-actions{
        width:100%;
        justify-content:flex-start;
        display:none;
    }
    .copy h1 {
        font-size: clamp(22px, 4vw, 38px);
    }
    .nav-actions .btn{ flex: 1 1 160px; }

    .feature-grid{ grid-template-columns: 1fr; }
    .feature{ max-width: 520px; margin: 0 auto; }
}

@media (max-width: 520px){
    .hero-content{padding: 86px 0 44px;}
    .cta-row .btn{ width: 100%; }
    .visual{height: 300px;}
    .player{ transform: translateX(-45%); opacity:.62; height: 118%; }
    .logo-pill{width:40px;height:40px}
    .media-card{ width: 240px; }
}

@media (prefers-reduced-motion: reduce){
    .track{ animation:none !important; }
}

.mb-footer{
    background:#071224;
    color: var(--mb-text);
    padding: 52px 0;
}

.mb-footer__container{
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.mb-footer__grid{
    display: grid;
    grid-template-columns: 2.85fr 0.8fr 0.8fr ;
    gap: 56px;
    align-items: start;
}

/* Brand */
.mb-brand{
    display:flex;
    align-items:center;
    gap: 14px;
    margin-bottom: 18px;
}

.mb-brand__logo{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
}

.mb-brand__name{
    font-weight: 800;
    letter-spacing: .6px;
    font-size: 34px;
    line-height: 1;
    white-space: nowrap;
}

.mb-brand__name--white{ color: var(--mb-white); }
.mb-brand__name--red{ color: var(--mb-red); margin-left: 2px; }

.mb-footer__text{
    margin: 0;
    color: var(--mb-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
}

.mb-badge{
    margin-top: 18px;
}

.mb-badge__pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--mb-white);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .4px;
}

/* Columns */
.mb-footer__title{
    margin: 0 0 14px;
    color: var(--mb-white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .2px;
}

.mb-footer__list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap: 12px;
}

.mb-footer__list a{
    color: var(--mb-link);
    text-decoration:none;
    font-size: 14px;
    line-height: 1.25;
    opacity: .92;
    transition: opacity .15s ease, transform .15s ease;
}

.mb-footer__list a:hover{
    color: var(--mb-linkHover);
    opacity: 1;
    transform: translateX(2px);
}

/* DMCA badge (placeholder) */
.mb-dmca{
    margin-top: 18px;
    display:inline-flex;
    border-radius: 4px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.18);
}
.mb-dmca__left{
    background:#47b24b;
    color:#fff;
    font-weight:800;
    padding: 7px 10px;
    font-size: 12px;
    letter-spacing:.4px;
}
.mb-dmca__right{
    background:#1b1f27;
    color:#fff;
    font-weight:800;
    padding: 7px 10px;
    font-size: 12px;
    letter-spacing:.4px;
}

/* Responsive */
@media (max-width: 980px){
    .mb-footer__grid{
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
    .mb-footer__text{ max-width: none; }
    .mb-brand__name{ font-size: 30px; }
    .mb-footer__list a{ font-size: 18px; }
}

@media (max-width: 560px){
    .mb-footer__grid{
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .mb-footer__title{ font-size: 22px; }
}