:root{
    --bg:#0b0d12;
    --bg2:#131722;
    --card:rgba(18,22,32,.72);
    --border:rgba(255,255,255,.08);
    --text:#ffffff;
    --muted:#a8b0bf;
    --primary:#19b5e8;
    --accent:#ff6a4d;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top,#1a2030 0%,#0b0d12 60%);
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    min-height:100vh;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:url("../images/public/hero-bg.jpg") center center / cover no-repeat;
    opacity:.16;
    filter:blur(2px);
    transform:scale(1.05);
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(rgba(8,10,15,.55),rgba(8,10,15,.82));
    z-index:-1;
}

.topbar{
    width:min(1320px,calc(100% - 60px));
    margin:auto;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:48px;
}

nav{
    display:flex;
    gap:42px;
}

nav a{
    color:#d4d8df;
    text-decoration:none;
    font-size:15px;
    transition:.25s;
}

nav a:hover{
    color:#fff;
}

.actions{
    display:flex;
    align-items:center;
    gap:18px;
}

#themeToggle{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:var(--card);
    color:#fff;
    cursor:pointer;
    backdrop-filter:blur(20px);
}

.activate{
    padding:14px 26px;
    border-radius:14px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#1f78ff);
    font-weight:600;
    transition:.25s;
}

.activate:hover{
    transform:translateY(-2px);
}

.hero{
    min-height:calc(100vh - 90px);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content{
    width:min(820px,90%);
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:24px;
}

.hero p{
    color:var(--muted);
    font-size:22px;
    line-height:1.8;
    margin-bottom:42px;
}

.hero-button{
    display:inline-block;
    padding:18px 44px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--accent),#ff8458);
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.25s;
}

.hero-button:hover{
    transform:translateY(-4px);
}

@media(max-width:900px){

nav{
display:none;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

}

.glass{
    background:rgba(18,22,32,.45);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:28px;
    padding:70px 60px;
    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.05);
}

.hero h5{
    color:var(--primary);
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-button.primary{
    background:linear-gradient(135deg,var(--primary),#1f78ff);
}

.hero-button.secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
}

.hero-button.secondary:hover{
    background:rgba(255,255,255,.08);
}

@media(max-width:900px){

.glass{
    padding:40px 28px;
}

}

.features{
    width:min(1280px,calc(100% - 60px));
    margin:120px auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    margin:18px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.feature-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:34px;
    backdrop-filter:blur(16px);
    transition:.35s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:rgba(25,181,232,.45);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.feature-card h3{
    margin-bottom:14px;
    font-size:24px;
}

.feature-card p{
    color:var(--muted);
    line-height:1.7;
}


.provider-section{
    width:min(1280px,calc(100% - 60px));
    margin:160px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.provider-left span{
    color:var(--primary);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
}

.provider-left h2{
    font-size:56px;
    line-height:1.15;
    margin:22px 0;
}

.provider-left p{
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
    max-width:560px;
}

.provider-button{
    display:inline-block;
    margin-top:40px;
    padding:16px 34px;
    border-radius:16px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#1f78ff);
    transition:.3s;
}

.provider-button:hover{
    transform:translateY(-3px);
}

.provider-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.provider-box{
    padding:34px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    transition:.35s;
}

.provider-box:hover{
    transform:translateY(-8px);
    border-color:rgba(25,181,232,.45);
}

.provider-box strong{
    display:block;
    font-size:22px;
    margin-bottom:14px;
}

.provider-box small{
    display:block;
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}

@media(max-width:960px){

.provider-section{
    grid-template-columns:1fr;
}

.provider-right{
    grid-template-columns:1fr;
}

.provider-left h2{
    font-size:40px;
}

}

/* ==========================================================
   Animated Background Effects
========================================================== */

.bg-effects{
    position:fixed;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:-1;
}

.orb{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.28;
    animation:float 16s ease-in-out infinite;
}

.orb-1{
    width:520px;
    height:520px;
    background:#1bb6e9;
    top:-120px;
    left:-120px;
}

.orb-2{
    width:620px;
    height:620px;
    background:#5d5cff;
    bottom:-220px;
    right:-180px;
    animation-duration:22s;
}

.grid-overlay{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size:40px 40px;
    mask-image:radial-gradient(circle at center, black 40%, transparent 90%);
    opacity:.35;
}

@keyframes float{

0%{
transform:translate3d(0,0,0) scale(1);
}

50%{
transform:translate3d(40px,-30px,0) scale(1.08);
}

100%{
transform:translate3d(0,0,0) scale(1);
}

}

.hero,
.features,
.provider-section{
    position:relative;
    z-index:2;
}


/* ==========================================================
   Scroll Reveal
========================================================== */

.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.feature-card:nth-child(2){
    transition-delay:.08s;
}

.feature-card:nth-child(3){
    transition-delay:.16s;
}

.feature-card:nth-child(4){
    transition-delay:.24s;
}

.feature-card:nth-child(5){
    transition-delay:.32s;
}

.feature-card:nth-child(6){
    transition-delay:.40s;
}

.provider-box:nth-child(2){
    transition-delay:.10s;
}

.provider-box:nth-child(3){
    transition-delay:.20s;
}

.provider-box:nth-child(4){
    transition-delay:.30s;
}


/* ==========================================================
   Light Theme
========================================================== */

body.light-mode{

    --bg:#f4f6fb;
    --bg2:#ffffff;
    --card:rgba(255,255,255,.75);
    --border:rgba(0,0,0,.08);

    --text:#111827;
    --muted:#5b6473;

    background:
        radial-gradient(circle at top,#ffffff 0%,#eef2f8 100%);
}

body.light-mode::after{
    background:
        linear-gradient(rgba(255,255,255,.35),rgba(255,255,255,.75));
}

body.light-mode nav a{
    color:#374151;
}

body.light-mode nav a:hover{
    color:#000;
}

body.light-mode .glass,
body.light-mode .feature-card,
body.light-mode .provider-box{

    background:rgba(255,255,255,.72);
    border:1px solid rgba(0,0,0,.08);

}

body.light-mode .section-title span,
body.light-mode .provider-left span{
    color:#0ea5e9;
}

body.light-mode .hero-button.secondary{
    color:#111;
    border-color:rgba(0,0,0,.12);
}

body.light-mode #themeToggle{

    background:#ffffff;
    color:#111;
    border:1px solid rgba(0,0,0,.08);

}


/* ==========================================================
   Floating Glass Navigation
========================================================== */

.topbar{
    position:fixed;
    top:18px;
    left:50%;
    z-index:1000;
    transform:translateX(-50%);
    padding:0 22px;
    border:1px solid transparent;
    border-radius:22px;
    transition:
        top .35s ease,
        height .35s ease,
        width .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}

.topbar.is-scrolled{
    top:12px;
    width:min(1180px,calc(100% - 32px));
    height:68px;
    background:rgba(10,13,20,.72);
    border-color:rgba(255,255,255,.10);
    box-shadow:
        0 18px 50px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter:blur(24px) saturate(150%);
    -webkit-backdrop-filter:blur(24px) saturate(150%);
}

.topbar.is-scrolled .logo img{
    height:40px;
}

.logo img{
    transition:height .35s ease;
}

.hero{
    padding-top:90px;
}

body.light-mode .topbar.is-scrolled{
    background:rgba(255,255,255,.78);
    border-color:rgba(15,23,42,.09);
    box-shadow:
        0 18px 50px rgba(15,23,42,.12),
        inset 0 1px 0 rgba(255,255,255,.85);
}

@media(max-width:900px){

    .topbar{
        top:10px;
        width:calc(100% - 20px);
        height:68px;
        padding:0 14px;
    }

    .topbar.is-scrolled{
        top:8px;
        width:calc(100% - 16px);
    }

    .logo img,
    .topbar.is-scrolled .logo img{
        height:36px;
    }

    .activate{
        padding:12px 16px;
        font-size:14px;
    }

}

/* ==========================================================
   Theme Logo
========================================================== */

.logo{
    position:relative;
    width:220px;
    height:48px;
}

.logo img{
    position:absolute;
    inset:0;
    height:48px;
    width:auto;
    transition:opacity .25s ease;
}

.logo-dark{
    opacity:1;
}

.logo-light{
    opacity:0;
}

body.light-mode .logo-dark{
    opacity:0;
}

body.light-mode .logo-light{
    opacity:1;
}

.topbar.is-scrolled .logo img{
    height:40px;
}


/* ==========================================================
   Logo Theme (Admin ile aynı mantık)
========================================================== */

.logo img{
    transition:filter .25s ease, opacity .25s ease;
}

body.light-mode .logo img{
    filter:brightness(0) saturate(100%) opacity(.84);
}

body:not(.light-mode) .logo img{
    filter:none;
}


/* Public logo theme kesin düzeltme */
.logo{
    position:relative !important;
    width:auto !important;
    height:auto !important;
}

.logo img{
    position:static !important;
    display:block !important;
    width:auto !important;
    height:48px !important;
    opacity:1 !important;
    transition:filter .25s ease, height .35s ease !important;
}

body.light-mode .logo img{
    filter:brightness(0) saturate(100%) opacity(.84) !important;
}

body:not(.light-mode) .logo img{
    filter:none !important;
}

.topbar.is-scrolled .logo img{
    height:40px !important;
}

/* ==========================================================
   Hero Product Mockup
========================================================== */

.hero{
    width:min(1320px,calc(100% - 60px));
    margin:auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
    gap:70px;
    text-align:left;
}

.hero-content{
    width:100%;
}

.hero-buttons{
    justify-content:flex-start;
}

.hero-visual{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective:1400px;
}

.tv-glow{
    position:absolute;
    width:88%;
    height:70%;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(25,181,232,.35) 0%,
        rgba(92,92,255,.18) 42%,
        transparent 72%);
    filter:blur(42px);
    animation:tvGlow 6s ease-in-out infinite;
}

.tv-frame{
    position:relative;
    width:min(100%,590px);
    aspect-ratio:16/10;
    padding:11px;
    border-radius:28px;
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.30),
        rgba(255,255,255,.05) 32%,
        rgba(0,0,0,.75));
    box-shadow:
        0 45px 90px rgba(0,0,0,.48),
        inset 0 1px 1px rgba(255,255,255,.45);
    transform:rotateY(-9deg) rotateX(3deg);
    transition:transform .6s ease;
}

.hero-visual:hover .tv-frame{
    transform:rotateY(-3deg) rotateX(1deg) translateY(-8px);
}

.tv-screen{
    position:relative;
    height:100%;
    overflow:hidden;
    border-radius:19px;
    padding:30px;
    background:
        radial-gradient(circle at 78% 20%,rgba(28,192,235,.34),transparent 30%),
        radial-gradient(circle at 25% 82%,rgba(112,82,255,.30),transparent 38%),
        linear-gradient(145deg,#101828,#080b12 62%,#111827);
}

.tv-screen::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(115deg,
        rgba(255,255,255,.13),
        transparent 24%,
        transparent 68%,
        rgba(255,255,255,.04));
    pointer-events:none;
}

.screen-topbar{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.screen-brand{
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    color:#fff;
}

.screen-time{
    font-size:12px;
    color:rgba(255,255,255,.65);
}

.screen-copy{
    position:relative;
    z-index:2;
    margin-top:66px;
}

.screen-copy small{
    display:block;
    color:#39c6ee;
    letter-spacing:2px;
    font-size:10px;
    margin-bottom:12px;
}

.screen-copy strong{
    display:block;
    color:#fff;
    font-size:36px;
    line-height:1.08;
    letter-spacing:-1.2px;
}

.screen-copy span{
    display:block;
    margin-top:16px;
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.screen-cards{
    position:absolute;
    left:30px;
    right:30px;
    bottom:28px;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:11px;
}

.screen-cards i{
    height:58px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.11);
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.13),
        rgba(255,255,255,.035));
    box-shadow:inset 0 1px rgba(255,255,255,.08);
}

.screen-cards i:nth-child(2){
    background:linear-gradient(145deg,rgba(25,181,232,.28),rgba(255,255,255,.035));
}

.screen-cards i:nth-child(3){
    background:linear-gradient(145deg,rgba(112,82,255,.27),rgba(255,255,255,.035));
}

.tv-stand{
    position:absolute;
    bottom:34px;
    width:150px;
    height:22px;
    border-radius:50%;
    background:rgba(0,0,0,.72);
    filter:blur(5px);
}

@keyframes tvGlow{
    0%,100%{
        opacity:.72;
        transform:scale(.96);
    }

    50%{
        opacity:1;
        transform:scale(1.06);
    }
}

body.light-mode .tv-frame{
    box-shadow:
        0 45px 90px rgba(26,38,60,.22),
        inset 0 1px 1px rgba(255,255,255,.75);
}

@media(max-width:1050px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:130px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-visual{
        min-height:430px;
        width:min(680px,100%);
        margin:auto;
    }

}

@media(max-width:600px){

    .hero{
        width:calc(100% - 28px);
        gap:34px;
    }

    .hero-visual{
        min-height:310px;
    }

    .tv-screen{
        padding:20px;
    }

    .screen-copy{
        margin-top:36px;
    }

    .screen-copy strong{
        font-size:25px;
    }

    .screen-cards{
        left:20px;
        right:20px;
        bottom:18px;
    }

    .screen-cards i{
        height:38px;
    }

}

/* ==========================================================
   Hero Product Mockup
========================================================== */

.hero{
    width:min(1320px,calc(100% - 60px));
    margin:auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
    gap:70px;
    text-align:left;
}

.hero-content{
    width:100%;
}

.hero-buttons{
    justify-content:flex-start;
}

.hero-visual{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    perspective:1400px;
}

.tv-glow{
    position:absolute;
    width:88%;
    height:70%;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(25,181,232,.35) 0%,
        rgba(92,92,255,.18) 42%,
        transparent 72%);
    filter:blur(42px);
    animation:tvGlow 6s ease-in-out infinite;
}

.tv-frame{
    position:relative;
    width:min(100%,590px);
    aspect-ratio:16/10;
    padding:11px;
    border-radius:28px;
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.30),
        rgba(255,255,255,.05) 32%,
        rgba(0,0,0,.75));
    box-shadow:
        0 45px 90px rgba(0,0,0,.48),
        inset 0 1px 1px rgba(255,255,255,.45);
    transform:rotateY(-9deg) rotateX(3deg);
    transition:transform .6s ease;
}

.hero-visual:hover .tv-frame{
    transform:rotateY(-3deg) rotateX(1deg) translateY(-8px);
}

.tv-screen{
    position:relative;
    height:100%;
    overflow:hidden;
    border-radius:19px;
    padding:30px;
    background:
        radial-gradient(circle at 78% 20%,rgba(28,192,235,.34),transparent 30%),
        radial-gradient(circle at 25% 82%,rgba(112,82,255,.30),transparent 38%),
        linear-gradient(145deg,#101828,#080b12 62%,#111827);
}

.tv-screen::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(115deg,
        rgba(255,255,255,.13),
        transparent 24%,
        transparent 68%,
        rgba(255,255,255,.04));
    pointer-events:none;
}

.screen-topbar{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.screen-brand{
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    color:#fff;
}

.screen-time{
    font-size:12px;
    color:rgba(255,255,255,.65);
}

.screen-copy{
    position:relative;
    z-index:2;
    margin-top:66px;
}

.screen-copy small{
    display:block;
    color:#39c6ee;
    letter-spacing:2px;
    font-size:10px;
    margin-bottom:12px;
}

.screen-copy strong{
    display:block;
    color:#fff;
    font-size:36px;
    line-height:1.08;
    letter-spacing:-1.2px;
}

.screen-copy span{
    display:block;
    margin-top:16px;
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.screen-cards{
    position:absolute;
    left:30px;
    right:30px;
    bottom:28px;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:11px;
}

.screen-cards i{
    height:58px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.11);
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.13),
        rgba(255,255,255,.035));
    box-shadow:inset 0 1px rgba(255,255,255,.08);
}

.screen-cards i:nth-child(2){
    background:linear-gradient(145deg,rgba(25,181,232,.28),rgba(255,255,255,.035));
}

.screen-cards i:nth-child(3){
    background:linear-gradient(145deg,rgba(112,82,255,.27),rgba(255,255,255,.035));
}

.tv-stand{
    position:absolute;
    bottom:34px;
    width:150px;
    height:22px;
    border-radius:50%;
    background:rgba(0,0,0,.72);
    filter:blur(5px);
}

@keyframes tvGlow{
    0%,100%{
        opacity:.72;
        transform:scale(.96);
    }

    50%{
        opacity:1;
        transform:scale(1.06);
    }
}

body.light-mode .tv-frame{
    box-shadow:
        0 45px 90px rgba(26,38,60,.22),
        inset 0 1px 1px rgba(255,255,255,.75);
}

@media(max-width:1050px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:130px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-visual{
        min-height:430px;
        width:min(680px,100%);
        margin:auto;
    }

}

@media(max-width:600px){

    .hero{
        width:calc(100% - 28px);
        gap:34px;
    }

    .hero-visual{
        min-height:310px;
    }

    .tv-screen{
        padding:20px;
    }

    .screen-copy{
        margin-top:36px;
    }

    .screen-copy strong{
        font-size:25px;
    }

    .screen-cards{
        left:20px;
        right:20px;
        bottom:18px;
    }

    .screen-cards i{
        height:38px;
    }

}

/* Final page sections */

#how-it-works .feature-grid,
#faq .feature-grid{
    grid-template-columns:repeat(4,1fr);
}

.legal-footer{
    width:min(1280px,calc(100% - 60px));
    margin:140px auto 40px;
    padding:50px 30px 20px;
    text-align:center;
    border-top:1px solid var(--border);
}

.footer-brand{
    font-size:28px;
    font-weight:800;
    letter-spacing:4px;
}

.legal-footer p{
    margin:12px 0 28px;
    color:var(--muted);
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:24px;
    margin-bottom:28px;
}

.footer-links a{
    color:var(--muted);
    text-decoration:none;
    transition:.25s;
}

.footer-links a:hover{
    color:var(--text);
}

.legal-footer small{
    color:var(--muted);
}

@media(max-width:960px){
    #how-it-works .feature-grid,
    #faq .feature-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    #how-it-works .feature-grid,
    #faq .feature-grid{
        grid-template-columns:1fr;
    }
}

/* Hero ve alt bölüm boşluk düzeltmesi */

.hero{
    min-height:auto !important;
    padding-top:150px !important;
    padding-bottom:90px !important;
}

.features{
    margin-top:70px !important;
    margin-bottom:90px !important;
}

.hero + .features{
    margin-top:20px !important;
}

/* Footer kesin hizalama */

.legal-footer{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    width:min(1280px,calc(100% - 60px)) !important;
    margin:100px auto 30px !important;
    padding:45px 20px 25px !important;
}

.legal-footer .footer-brand,
.legal-footer p,
.legal-footer small{
    width:100% !important;
    text-align:center !important;
}

.legal-footer .footer-links{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:20px !important;
}

@media(max-width:600px){

    .hero{
        padding-top:120px !important;
        padding-bottom:60px !important;
    }

    .features{
        margin-top:50px !important;
        margin-bottom:70px !important;
    }

}

/* Hero telifsiz yaşam alanı görseli */

.hero{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    min-height:680px !important;
    padding:150px 70px 90px !important;
    background:
        linear-gradient(
            90deg,
            rgba(6,9,16,.96) 0%,
            rgba(6,9,16,.84) 42%,
            rgba(6,9,16,.30) 75%,
            rgba(6,9,16,.18) 100%
        ),
        url("../images/public/backgrounds/novotv-bg.webp") center right / cover no-repeat;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    margin:0 !important;
    text-align:left !important;
}

.hero-buttons{
    justify-content:flex-start !important;
}

.hero + .features{
    margin-top:70px !important;
}

body.light-mode .hero{
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.86) 42%,
            rgba(255,255,255,.38) 74%,
            rgba(255,255,255,.18) 100%
        ),
        url("../images/public/backgrounds/novotv-bg.webp") center right / cover no-repeat;
}

@media(max-width:900px){

    .hero{
        min-height:620px !important;
        padding:140px 32px 70px !important;
        background-position:62% center;
    }

    .hero-content{
        max-width:560px;
    }

}

@media(max-width:600px){

    .hero{
        min-height:590px !important;
        padding:130px 24px 60px !important;
        border-radius:22px;
        background:
            linear-gradient(
                rgba(6,9,16,.78),
                rgba(6,9,16,.94)
            ),
            url("../images/public/backgrounds/novotv-bg.webp") center / cover no-repeat;
    }

    body.light-mode .hero{
        background:
            linear-gradient(
                rgba(255,255,255,.72),
                rgba(255,255,255,.94)
            ),
            url("../images/public/backgrounds/novotv-bg.webp") center / cover no-repeat;
    }

}

/* Hero görselini premiumlaştır */

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 78% 52%,rgba(38,145,255,.28),transparent 25%),
        radial-gradient(circle at 88% 38%,rgba(134,71,255,.20),transparent 30%),
        linear-gradient(90deg,rgba(4,7,14,.20),transparent 58%);
    mix-blend-mode:screen;
}

.hero::after{
    content:"";
    position:absolute;
    top:24%;
    right:11%;
    width:34%;
    aspect-ratio:16/9;
    z-index:1;
    pointer-events:none;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.10);
    background:
        radial-gradient(circle at 72% 28%,rgba(36,190,232,.30),transparent 32%),
        radial-gradient(circle at 28% 78%,rgba(112,76,255,.28),transparent 35%),
        linear-gradient(145deg,rgba(8,15,28,.86),rgba(4,8,16,.94));
    box-shadow:
        0 0 70px rgba(35,130,255,.18),
        inset 0 1px rgba(255,255,255,.08);
    opacity:.78;
}

.hero-content{
    z-index:3 !important;
}

body.light-mode .hero::before{
    background:
        radial-gradient(circle at 78% 52%,rgba(38,145,255,.18),transparent 25%),
        radial-gradient(circle at 88% 38%,rgba(134,71,255,.12),transparent 30%);
}

body.light-mode .hero::after{
    opacity:.64;
    border-color:rgba(0,0,0,.08);
    box-shadow:
        0 20px 60px rgba(31,78,140,.16),
        inset 0 1px rgba(255,255,255,.5);
}

@media(max-width:900px){
    .hero::after{
        display:none;
    }
}

/* Gerçek hero görseli kullanıldığı için sahte TV overlay kaldırıldı */

.hero::after{
    display:none !important;
}

/* Public language switcher */
.language-switcher{
    display:flex;
    align-items:center;
    gap:4px;
    padding:5px;
    border:1px solid var(--border);
    border-radius:14px;
    background:var(--card);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}

.language-option{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:38px;
    height:34px;
    padding:0 9px;
    border-radius:10px;
    color:var(--muted);
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}

.language-option:hover{
    color:var(--text);
    background:rgba(255,255,255,.08);
    transform:translateY(-1px);
}

.language-option.active{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),#1f78ff);
    box-shadow:0 6px 18px rgba(25,181,232,.24);
}

@media(max-width:600px){
    .topbar{
        width:min(100% - 28px,1320px);
    }

    .logo img{
        height:40px;
    }

    .actions{
        gap:9px;
    }

    .language-switcher{
        gap:2px;
        padding:4px;
    }

    .language-option{
        min-width:31px;
        height:32px;
        padding:0 6px;
        font-size:11px;
    }

    #themeToggle{
        width:40px;
        height:40px;
    }
}
