/* =====================================================
   HASTROY STYLE.CSS
   CLEAN VERSION v90
===================================================== */

/* =====================================================
   ROOT
===================================================== */

:root {
    --bg-main:#050914;
    --bg-soft:#08111f;
    --bg-card:rgba(11,18,32,.72);

    --blue:#38bdf8;
    --blue-soft:#60a5fa;
    --blue-dark:#1d4ed8;
    --blue-glow:rgba(56,189,248,.38);

    --text-main:#f1f7ff;
    --text-soft:#a9bad0;
    --text-muted:#71839a;

    --border:rgba(95,190,255,.18);
    --glass:rgba(8,14,25,.72);

    --container:1200px;

    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:26px;

    --transition:.28s ease;
}

/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior:smooth;
}

body {
    min-height:100vh;
    font-family:"Inter",sans-serif;
    background:var(--bg-main);
    color:var(--text-main);
    overflow-x:hidden;
    opacity:1;
}

@keyframes pageFadeIn {
    from {
        opacity:0;
    }

    to {
        opacity:1;
    }
}

body.menu-open,
body.popup-open {
    overflow:hidden;
}

img {
    max-width:100%;
    height:auto;
    display:block;
    object-fit:cover;
    object-position:center;
}

/* LOGO VE MARKA GÖRSELLERİ (ASPECT RATIO KORUMALI) */
.logo img,
.admin-brand img,
.admin-login-logo img,
.footer-logo img,
.brand-logo img {
    object-fit:contain !important;
    max-height:54px;
}

/* OYUN & CROSSHAIR KARTLARI GÖRSEL OTOMATİK BOYUTLANDIRMA VE ÇERÇEVELEME */
.game-image,
.crosshair-image,
.game-card .game-image {
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    border-radius:14px;
    background:rgba(2,8,18,.8);
}

.game-image img,
.crosshair-image img,
.game-card img {
    width:100%;
    height:100%;
    object-fit:cover !important;
    object-position:center !important;
}

a {
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea {
    font-family:inherit;
}

button {
    border:0;
}

::selection {
    background:var(--blue);
    color:#00111f;
}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width:10px;
}

::-webkit-scrollbar-track {
    background:#050914;
}

::-webkit-scrollbar-thumb {
    background:linear-gradient(180deg,var(--blue),var(--blue-dark));
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover {
    background:linear-gradient(180deg,#67e8f9,var(--blue));
}

/* =====================================================
   BACKGROUND
===================================================== */

.background-grid {
    position:fixed;
    inset:0;
    z-index:-10;

    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);

    background-size:56px 56px;

    animation:gridMove 18s linear infinite;
}

.background-glow {
    position:fixed;
    left:50%;
    top:0;

    width:650px;
    height:650px;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(56,189,248,.26),
        rgba(96,165,250,.12) 35%,
        transparent 70%
    );

    filter:blur(55px);

    z-index:-9;
    pointer-events:none;

    transition:left .18s linear, top .18s linear;
}

body::before {
    content:"";
    position:fixed;
    inset:0;
    z-index:-8;

    background:
        radial-gradient(circle at 20% 20%, rgba(56,189,248,.10), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 35%),
        linear-gradient(180deg, rgba(5,9,20,.15), rgba(5,9,20,.85));

    pointer-events:none;
}

@keyframes gridMove {
    from {
        transform:translateY(0);
    }

    to {
        transform:translateY(56px);
    }
}

/* =====================================================
   GENERAL
===================================================== */

.container {
    width:min(var(--container),92%);
    margin-inline:auto;
}

.section {
    width:min(var(--container),92%);
    margin-inline:auto;
    padding:105px 0;
}

.section::after {
    content:"";
    display:block;

    width:180px;
    height:1px;

    margin:95px auto 0;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(56,189,248,.55),
        transparent
    );
}

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

.section-title small {
    display:block;

    margin-bottom:12px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:14px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2 {
    position:relative;

    font-family:"Rajdhani",sans-serif;

    font-size:clamp(34px,5vw,52px);
    line-height:1.1;

    font-weight:800;

    color:var(--text-main);

    text-shadow:0 0 22px rgba(56,189,248,.14);
}

.section-title h2::after {
    content:"";
    display:block;

    width:70px;
    height:3px;

    margin:16px auto 0;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        transparent,
        #38bdf8,
        transparent
    );

    box-shadow:0 0 18px rgba(56,189,248,.45);
}

/* =====================================================
   NAVBAR
===================================================== */

header {
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:
        linear-gradient(
            180deg,
            rgba(6,12,24,.78),
            rgba(6,12,24,.48)
        );

    border-bottom:1px solid rgba(95,190,255,.12);

    backdrop-filter:blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04);

    transition:var(--transition);
}

header.scrolled {
    background:
        linear-gradient(
            180deg,
            rgba(6,12,24,.95),
            rgba(6,12,24,.82)
        );

    border-bottom:1px solid rgba(95,190,255,.22);

    box-shadow:
        0 10px 35px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.navbar {
    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:28px;
}

.logo {
    display:flex;
    align-items:center;
    gap:14px;

    flex:0 0 auto;
}

.logo img {
    width:50px;
    height:50px;
    object-fit:contain;
    filter:drop-shadow(0 0 14px rgba(56,189,248,.45));
    animation:logoFloat 4s ease-in-out infinite;
    display:block;
}

.logo span {
    font-family:"Rajdhani",sans-serif;
    font-size:32px;
    font-weight:800;
    letter-spacing:2px;
    color:#ffffff;
    text-shadow:0 0 16px rgba(56,189,248,.35);
}

@keyframes logoFloat {
    0%,100% {
        transform:translateY(0);
    }
    50% {
        transform:translateY(-5px);
    }
}

nav {
    display:flex;
    align-items:center;
    justify-content:center;

    gap:28px;

    flex:1;
}

nav a {
    position:relative;

    font-size:15px;
    font-weight:600;

    color:#d9ecff;

    white-space:nowrap;

    transition:var(--transition);
}

nav a::after {
    content:"";

    position:absolute;

    left:0;
    bottom:-9px;

    width:0;
    height:2px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--blue),
        var(--blue-soft)
    );

    transition:var(--transition);
}

nav a:hover,
nav a.active {
    color:var(--blue);
}

nav a:hover::after,
nav a.active::after {
    width:100%;
}

.right-nav {
    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:14px;

    flex:0 0 auto;
}

.lang {
    min-width:82px;

    padding:10px 15px;

    border:1px solid var(--border);
    border-radius:var(--radius-sm);

    background:rgba(255,255,255,.045);

    color:var(--text-main);

    cursor:pointer;

    transition:var(--transition);
}

.lang:hover {
    border-color:rgba(56,189,248,.45);
    background:rgba(56,189,248,.10);
    box-shadow:0 0 20px rgba(56,189,248,.14);
}

.lang:active {
    transform:scale(.96);
}

.live-btn {
    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:11px 18px;

    border-radius:var(--radius-sm);

    color:white;

    font-weight:800;

    background:linear-gradient(
        135deg,
        #0284c7,
        #38bdf8
    );

    box-shadow:
        0 0 18px rgba(56,189,248,.30),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition:var(--transition);
}

.live-btn:hover {
    transform:translateY(-3px);

    box-shadow:
        0 0 25px rgba(56,189,248,.45),
        0 12px 30px rgba(0,0,0,.25);
}

.live-btn:active,
.stream-switch-btn:active {
    transform:scale(.96);
}

.active-stream-btn {
    border-color:#38bdf8 !important;
    box-shadow:0 0 20px rgba(56,189,248,.45) !important;
    background:rgba(56,189,248,.18) !important;
    color:#ffffff !important;
}

.live-btn span,
.live-dot {
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
    vertical-align:middle;
}

/* YAYIN AKTİF: YEŞİL & YANIP SÖNEN NOKTA */
.live-btn span,
.live-dot.online,
.live-dot.active {
    background:#22c55e;
    box-shadow:0 0 14px #22c55e;
    animation:livePulse 1.2s infinite;
}

/* YAYIN KAPALI / ÇEVRİMDİŞİ: KIRMIZI & SABİT YANMAYAN NOKTA */
.live-dot.offline,
.live-btn.offline-btn span {
    background:#ef4444 !important;
    box-shadow:0 0 10px rgba(239, 68, 68, 0.7) !important;
    animation:none !important;
}

.live-btn.offline-btn {
    border-color:rgba(239, 68, 68, 0.35);
    background:rgba(239, 68, 68, 0.08);
    color:#fca5a5;
}

.live-btn.offline-btn:hover {
    border-color:rgba(239, 68, 68, 0.60);
    box-shadow:0 0 18px rgba(239, 68, 68, 0.35);
}

@keyframes livePulse {
    0%,100% {
        opacity:1;
        transform:scale(1);
    }
    50% {
        opacity:.35;
        transform:scale(1.15);
    }
}

.mobile-btn {
    display:none;

    font-size:25px;

    color:var(--text-main);

    cursor:pointer;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height:100vh;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:130px 20px 80px;
}

.system-hero,
.about-hero,
.contact-hero,
.music-hero {
    min-height:72vh;
    padding-top:135px;
    padding-bottom:70px;
}

.hero-image {
    position:relative;

    width:220px;
    height:220px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:34px;
}

.hero-image::before {
    content:"";

    position:absolute;

    width:310px;
    height:310px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(56,189,248,.20),
        transparent 68%
    );

    filter:blur(38px);

    z-index:-1;

    animation:heroGlow 5s ease-in-out infinite;
}

.hero-image img {
    width:125px;
    z-index:3;

    filter:
        drop-shadow(0 0 24px rgba(56,189,248,.60))
        drop-shadow(0 0 50px rgba(37,99,235,.25));

    transition:transform .15s linear;
}

.ring {
    position:absolute;
    inset:0;
    border-radius:50%;
    border:1px solid rgba(56,189,248,.35);
    box-shadow:
        inset 0 0 22px rgba(56,189,248,.18),
        0 0 28px rgba(56,189,248,.18);
    -webkit-animation:rotateRing 14s linear infinite !important;
    animation:rotateRing 14s linear infinite !important;
    -webkit-transform-origin:center center;
    transform-origin:center center;
    pointer-events:none;
}

.ring::before {
    content:"";
    position:absolute;
    top:-7px;
    left:50%;
    width:15px;
    height:15px;
    transform:translateX(-50%);
    border-radius:50%;
    background:var(--blue);
    box-shadow:
        0 0 18px var(--blue),
        0 0 35px var(--blue);
}

@-webkit-keyframes rotateRing {
    0% {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100% {
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@keyframes rotateRing {
    0% {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100% {
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@keyframes heroGlow {
    0%,100% {
        transform:scale(1);
        opacity:.65;
    }
    50% {
        transform:scale(1.16);
        opacity:1;
    }
}

.hero h1 {
    font-family:"Rajdhani",sans-serif;
    font-size:clamp(48px,8vw,82px);
    line-height:1;
    font-weight:800;
    letter-spacing:8px;
    margin-bottom:16px;
    color:#ffffff;
    text-shadow:0 0 28px rgba(56,189,248,.25);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero h1 {
        background:linear-gradient(
            90deg,
            #ffffff,
            #7dd3fc,
            #38bdf8,
            #ffffff
        );
        background-size:220% auto;
        -webkit-background-clip:text;
        background-clip:text;
        -webkit-text-fill-color:transparent;
        animation:titleShine 5s linear infinite;
    }
}

@keyframes titleShine {
    from {
        background-position:0% center;
    }
    to {
        background-position:220% center;
    }
}

.hero p {
    max-width:680px;

    color:var(--text-soft);

    font-size:19px;
    line-height:1.7;
}

.hero-buttons {
    margin-top:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:16px;

    flex-wrap:wrap;
}

/* =====================================================
   BUTTONS
===================================================== */

.watch,
.secondary-btn {
    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:48px;

    padding:14px 26px;

    border-radius:var(--radius-sm);

    font-weight:800;

    transition:var(--transition);
}

.watch {
    color:white;

    background:linear-gradient(
        135deg,
        #0284c7,
        #38bdf8
    );

    box-shadow:
        0 0 20px rgba(56,189,248,.32),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.secondary-btn {
    border:1px solid var(--border);

    color:#dff4ff;

    background:rgba(255,255,255,.045);

    backdrop-filter:blur(12px);
}

.watch::before,
.secondary-btn::before,
.live-btn::before {
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );

    transform:skewX(-18deg);

    transition:.75s ease;
}

.watch:hover::before,
.secondary-btn:hover::before,
.live-btn:hover::before {
    left:130%;
}

.watch:hover,
.secondary-btn:hover {
    transform:translateY(-3px);
}

.watch:hover {
    box-shadow:
        0 0 28px rgba(56,189,248,.46),
        0 14px 30px rgba(0,0,0,.30);
}

.secondary-btn:hover {
    border-color:rgba(56,189,248,.45);
    background:rgba(56,189,248,.10);
    box-shadow:0 0 20px rgba(56,189,248,.15);
}

.watch:active,
.secondary-btn:active {
    transform:scale(.96);
}

/* =====================================================
   SOCIAL
===================================================== */

.social-grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.card {
    position:relative;

    min-height:190px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:30px 18px;

    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.78)
        );

    backdrop-filter:blur(18px);

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        background .35s ease,
        opacity .65s ease;
}

.card::before {
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:85%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:skewX(-12deg);

    transition:.75s ease;
}

.card::after {
    content:"";

    position:absolute;
    inset:1px;

    border-radius:inherit;

    pointer-events:none;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            transparent 38%
        );

    opacity:.45;
}

.card:hover::before {
    left:130%;
}

.card:hover {
    border-color:rgba(56,189,248,.45);

    box-shadow:
        0 0 28px rgba(56,189,248,.22),
        0 18px 38px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.10);

    background:
        linear-gradient(
            180deg,
            rgba(18,33,57,.90),
            rgba(8,14,25,.86)
        );
}

.card i,
.platform-icon,
.real-instagram-logo,
.real-byno-logo {
    position:relative;
    z-index:2;
}

.card i {
    font-size:48px;
    margin-bottom:22px;

    color:var(--blue);

    filter:drop-shadow(0 0 15px rgba(56,189,248,.35));

    transition:var(--transition);
}

.card:hover i {
    transform:scale(1.12);
}

.card h3 {
    position:relative;
    z-index:2;

    font-family:"Rajdhani",sans-serif;

    font-size:26px;
    font-weight:800;

    color:var(--text-main);

    margin-bottom:8px;
}

.card span {
    position:relative;
    z-index:2;

    color:var(--text-soft);

    font-size:15px;
}

.platform-kick i {
    color:#22c55e;
    filter:drop-shadow(0 0 16px rgba(34,197,94,.55));
}

.platform-kick:hover {
    border-color:rgba(34,197,94,.42);

    box-shadow:
        0 0 28px rgba(34,197,94,.18),
        0 18px 38px rgba(0,0,0,.30);
}

.platform-youtube i {
    color:#ff0033;
    filter:drop-shadow(0 0 16px rgba(255,0,51,.55));
}

.platform-tiktok i {
    color:#ffffff;

    filter:
        drop-shadow(-1px 0 0 #25f4ee)
        drop-shadow(1px 0 0 #fe2c55)
        drop-shadow(0 0 12px rgba(255,255,255,.30));
}

.platform-discord i {
    color:#5865f2;
    filter:drop-shadow(0 0 16px rgba(88,101,242,.55));
}

.platform-twitch i {
    color:#a855f7;
    filter:drop-shadow(0 0 16px rgba(168,85,247,.60));
}

.platform-mystery .mystery-logo {
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    border-radius:50%;

    color:white;

    font-family:"Rajdhani",sans-serif;
    font-size:36px;
    font-weight:800;

    background:
        radial-gradient(circle, rgba(56,189,248,.22), rgba(8,14,25,.75));

    border:1px solid rgba(56,189,248,.28);

    box-shadow:
        0 0 18px rgba(255,255,255,.18),
        0 0 30px rgba(56,189,248,.25);
}

.real-instagram-logo {
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;
}

.real-instagram-logo i {
    margin:0;

    font-size:48px;

    background:linear-gradient(
        45deg,
        #feda75 0%,
        #fa7e1e 22%,
        #d62976 48%,
        #962fbf 72%,
        #4f5bd5 100%
    );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;

    filter:
        drop-shadow(0 0 12px rgba(250,126,30,.65))
        drop-shadow(0 0 22px rgba(214,41,118,.70))
        drop-shadow(0 0 34px rgba(150,47,191,.45));
}

.platform-instagram:hover i {
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.real-byno-logo {
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;

    font-family:"Rajdhani",sans-serif;

    font-size:30px;
    font-weight:800;

    letter-spacing:-1px;

    line-height:1;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,.50))
        drop-shadow(0 0 24px rgba(255,122,0,.55));
}

.real-byno-orange {
    color:#ff7a00;
}

.real-byno-white {
    color:#ffffff;
}

.platform-bynogame:hover {
    border-color:rgba(255,122,0,.55);

    box-shadow:
        0 0 30px rgba(255,122,0,.25),
        0 18px 38px rgba(0,0,0,.30);
}

.platform-bynogame:hover .real-byno-logo {
    transform:scale(1.08);
}

/* =====================================================
   LIVE
===================================================== */

.live-box {
    position:relative;

    width:100%;

    padding:28px;

    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.82)
        );

    backdrop-filter:blur(20px);

    overflow:hidden;

    box-shadow:
        0 18px 55px rgba(0,0,0,.35),
        0 0 35px rgba(56,189,248,.12),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:var(--transition);
}

.live-box::before {
    content:"";

    position:absolute;
    inset:-2px;

    background:
        radial-gradient(circle at 20% 0%, rgba(56,189,248,.16), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(37,99,235,.14), transparent 30%);

    z-index:-1;
}

.live-top {
    display:flex;
    align-items:center;

    gap:12px;

    margin-bottom:22px;

    color:var(--text-soft);

    font-size:15px;
}

.offline,
.online {
    width:12px;
    height:12px;

    border-radius:50%;
}

.offline {
    background:#ef4444;

    box-shadow:
        0 0 12px rgba(239,68,68,.8),
        0 0 24px rgba(239,68,68,.35);
}

.online {
    background:#22c55e;

    box-shadow:
        0 0 12px rgba(34,197,94,.8),
        0 0 24px rgba(34,197,94,.35);

    animation:livePulse 1.2s infinite;
}

.live-player {
    position:relative;

    width:100%;
    height:620px;

    border-radius:var(--radius-md);

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #0f2238
        );

    border:1px solid rgba(56,189,248,.24);

    box-shadow:
        0 0 0 1px rgba(56,189,248,.04),
        0 0 32px rgba(56,189,248,.12),
        inset 0 0 38px rgba(0,0,0,.42);
}

.live-player iframe {
    width:100%;
    height:100%;

    border:0;

    display:block;
}

.live-player::before {
    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(56,189,248,.13),
            transparent 42%
        );

    pointer-events:none;

    z-index:1;
}

.live-buttons {
    margin-top:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    flex-wrap:wrap;
}

/* =====================================================
   VIDEOS + SHORTS
===================================================== */

.video-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:26px;
}

.video-card,
.shorts-card {
    position:relative;

    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.82)
        );

    overflow:hidden;

    box-shadow:
        0 12px 36px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:var(--transition);
}

.video-card {
    min-height:310px;
}

.video-card:hover,
.shorts-card:hover {
    transform:translateY(-8px);

    border-color:rgba(56,189,248,.42);

    box-shadow:
        0 0 28px rgba(56,189,248,.18),
        0 18px 42px rgba(0,0,0,.32);
}

.video-thumb {
    height:175px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(135deg, rgba(2,132,199,.35), rgba(29,78,216,.24)),
        radial-gradient(circle at 50% 50%, rgba(56,189,248,.18), transparent 55%);

    border-bottom:1px solid rgba(255,255,255,.06);
}

.video-thumb img {
    width:100%;
    height:100%;

    object-fit:cover;
}

.video-thumb i {
    font-size:62px;

    color:#ff0033;

    filter:
        drop-shadow(0 0 16px rgba(255,0,51,.42))
        drop-shadow(0 0 30px rgba(56,189,248,.18));

    transition:var(--transition);
}

.video-info,
.shorts-info {
    padding:22px;
}

.video-info h3,
.shorts-info h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:24px;
    font-weight:800;

    color:var(--text-main);

    margin-bottom:8px;
}

.video-info p,
.shorts-info p {
    color:var(--text-soft);

    font-size:15px;
    line-height:1.7;
}

.shorts-grid {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:22px;
}

.shorts-card {
    min-height:390px;
}

.shorts-thumb {
    position:relative;

    height:300px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:
        linear-gradient(135deg, rgba(2,132,199,.35), rgba(29,78,216,.24)),
        radial-gradient(circle at 50% 50%, rgba(56,189,248,.18), transparent 55%);
}

.shorts-thumb img {
    width:100%;
    height:100%;

    object-fit:cover;
}

.shorts-thumb i {
    font-size:58px;

    color:#ff0033;

    filter:drop-shadow(0 0 16px rgba(255,0,51,.50));
}

.shorts-thumb span,
.shorts-badge {
    position:absolute;

    left:14px;
    top:14px;

    z-index:2;

    padding:7px 11px;

    border-radius:999px;

    color:white;
    background:rgba(0,0,0,.55);

    font-size:13px;
    font-weight:800;

    backdrop-filter:blur(8px);
}

/* =====================================================
   SYSTEM PAGE
===================================================== */

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

.system-card,
.equipment-card,
.system-summary {
    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.78)
        );

    backdrop-filter:blur(18px);

    box-shadow:
        0 12px 36px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:var(--transition);
}

.system-card {
    display:flex;
    align-items:flex-start;

    gap:18px;

    padding:26px;
}

.system-card:hover,
.equipment-card:hover,
.system-summary:hover {
    transform:translateY(-8px);

    border-color:rgba(56,189,248,.42);

    box-shadow:
        0 0 28px rgba(56,189,248,.18),
        0 18px 42px rgba(0,0,0,.32);
}

.system-icon {
    width:58px;
    height:58px;

    flex:0 0 58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    color:var(--blue);

    background:rgba(56,189,248,.10);

    border:1px solid rgba(56,189,248,.20);

    box-shadow:0 0 22px rgba(56,189,248,.15);
}

.system-icon i {
    font-size:27px;
}

.system-info span {
    display:block;

    margin-bottom:5px;

    color:var(--blue);

    font-size:13px;
    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;
}

.system-info h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:25px;
    font-weight:800;

    margin-bottom:8px;
}

.system-info p {
    color:var(--text-soft);

    font-size:15px;
    line-height:1.7;
}

.equipment-grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.equipment-card {
    min-height:210px;

    padding:30px 22px;

    text-align:center;
}

.equipment-card i {
    font-size:42px;

    color:var(--blue);

    margin-bottom:20px;

    filter:drop-shadow(0 0 16px rgba(56,189,248,.45));
}

.equipment-card h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:25px;
    font-weight:800;

    margin-bottom:9px;
}

.equipment-card p {
    color:var(--text-soft);

    line-height:1.7;
}

.system-summary {
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:24px;

    padding:34px;
}

.system-summary small {
    display:block;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;

    margin-bottom:8px;
}

.system-summary h2 {
    font-family:"Rajdhani",sans-serif;

    font-size:36px;
    font-weight:800;

    margin-bottom:10px;
}

.system-summary p {
    color:var(--text-soft);

    line-height:1.7;
}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-wrapper {
    display:grid;
    grid-template-columns:360px 1fr;
    gap:26px;
}

.about-card,
.about-feature,
.about-cta {
    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.78)
        );

    backdrop-filter:blur(18px);

    box-shadow:
        0 12px 36px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:var(--transition);
}

.about-card {
    padding:32px;
}

.about-profile {
    text-align:center;
}

.about-avatar {
    width:145px;
    height:145px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    border-radius:50%;

    border:1px solid rgba(56,189,248,.24);

    background:
        radial-gradient(circle, rgba(56,189,248,.20), rgba(8,14,25,.75));

    box-shadow:
        0 0 30px rgba(56,189,248,.15),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.about-avatar img {
    width:82px;

    filter:drop-shadow(0 0 18px rgba(56,189,248,.50));
}

.about-profile h2,
.about-text h2 {
    font-family:"Rajdhani",sans-serif;

    font-size:34px;
    font-weight:800;

    margin-bottom:10px;
}

.about-profile p,
.about-text p {
    color:var(--text-soft);

    line-height:1.8;
}

.about-socials {
    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    margin-top:24px;
}

.about-socials a {
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:var(--blue);

    border:1px solid rgba(56,189,248,.20);

    background:rgba(255,255,255,.04);

    transition:var(--transition);
}

.about-socials a:hover {
    transform:translateY(-4px);

    border-color:rgba(56,189,248,.45);
    background:rgba(56,189,248,.12);
}

.about-text small,
.about-cta small {
    display:block;

    margin-bottom:10px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.about-text p + p {
    margin-top:16px;
}

.about-features {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:20px;
}

.about-feature {
    padding:28px 18px;
    text-align:center;
}

.about-feature i {
    font-size:40px;

    color:var(--blue);

    margin-bottom:18px;

    filter:drop-shadow(0 0 16px rgba(56,189,248,.45));
}

.about-feature h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:23px;
    font-weight:800;

    margin-bottom:8px;
}

.about-feature p {
    color:var(--text-soft);

    line-height:1.7;
    font-size:14px;
}

.about-cta {
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:24px;

    padding:34px;
}

.about-cta h2 {
    font-family:"Rajdhani",sans-serif;

    font-size:36px;
    font-weight:800;

    margin-bottom:10px;
}

.about-cta p {
    color:var(--text-soft);

    line-height:1.7;
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.big-mail-box {
    margin-bottom:30px;

    padding:34px;

    text-align:center;

    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.78)
        );

    box-shadow:
        0 12px 36px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.big-mail-box small {
    display:block;

    margin-bottom:10px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.big-mail-box a {
    font-family:"Rajdhani",sans-serif;

    font-size:clamp(30px,5vw,54px);
    font-weight:800;

    color:var(--text-main);

    text-shadow:0 0 20px rgba(56,189,248,.20);

    word-break:break-word;

    transition:var(--transition);
}

.big-mail-box a:hover {
    color:var(--blue);
}

.contact-wrapper {
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:26px;
}

.contact-card,
.contact-social-card,
.contact-cta {
    border-radius:var(--radius-lg);
    border:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.82),
            rgba(8,14,25,.78)
        );

    backdrop-filter:blur(18px);

    box-shadow:
        0 12px 36px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:var(--transition);
}

.contact-card {
    padding:32px;
}

.contact-card small,
.contact-cta small {
    display:block;

    margin-bottom:10px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-card h2,
.contact-cta h2 {
    font-family:"Rajdhani",sans-serif;

    font-size:34px;
    font-weight:800;

    margin-bottom:12px;
}

.contact-card p,
.contact-cta p {
    color:var(--text-soft);

    line-height:1.7;
}

.contact-list {
    margin-top:26px;

    display:flex;
    flex-direction:column;

    gap:14px;
}

.contact-item {
    display:flex;
    align-items:center;

    gap:14px;

    padding:15px;

    border-radius:var(--radius-md);
    border:1px solid rgba(255,255,255,.07);

    background:rgba(255,255,255,.035);

    transition:var(--transition);
}

.contact-item:hover {
    transform:translateX(6px);

    border-color:rgba(56,189,248,.34);
    background:rgba(56,189,248,.08);
}

.contact-icon {
    width:48px;
    height:48px;

    flex:0 0 48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:15px;

    color:var(--blue);

    background:rgba(56,189,248,.10);

    border:1px solid rgba(56,189,248,.18);
}

.contact-item span {
    display:block;

    color:var(--text-muted);

    font-size:13px;

    margin-bottom:3px;
}

.contact-item strong {
    color:var(--text-main);

    font-size:15px;
}

.contact-form {
    margin-top:22px;

    display:flex;
    flex-direction:column;

    gap:16px;
}

.form-group {
    display:flex;
    flex-direction:column;

    gap:8px;
}

.form-group label {
    color:#d9ecff;

    font-size:14px;
    font-weight:700;
}

.form-group input,
.form-group textarea {
    width:100%;

    padding:14px 15px;

    border-radius:var(--radius-sm);
    border:1px solid rgba(255,255,255,.10);

    color:var(--text-main);
    background:rgba(255,255,255,.045);

    outline:none;

    resize:none;

    transition:var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color:rgba(56,189,248,.48);
    background:rgba(56,189,248,.07);
    box-shadow:0 0 18px rgba(56,189,248,.14);
}

.contact-submit {
    width:max-content;
    margin-top:4px;
}

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

.contact-social-card {
    min-height:220px;

    padding:30px 22px;

    text-align:center;
}

.contact-social-card i {
    font-size:44px;

    color:var(--blue);

    margin-bottom:18px;

    filter:drop-shadow(0 0 16px rgba(56,189,248,.45));
}

.contact-social-card h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:26px;
    font-weight:800;

    margin-bottom:8px;
}

.contact-social-card p {
    color:var(--text-soft);

    line-height:1.7;
}

.contact-cta {
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:24px;

    padding:34px;
}

/* =====================================================
   MUSIC PAGE
===================================================== */

.music-small {
    display:block;

    margin-bottom:12px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:14px;
    font-weight:800;

    letter-spacing:4px;
    text-transform:uppercase;
}

.music-orb {
    position:relative;

    width:155px;
    height:155px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    border-radius:50%;
    border:1px solid rgba(56,189,248,.26);

    background:
        radial-gradient(circle, rgba(56,189,248,.24), rgba(8,14,25,.82) 68%);

    box-shadow:
        0 0 35px rgba(56,189,248,.28),
        inset 0 1px 0 rgba(255,255,255,.10);

    overflow:hidden;
}

.music-orb i {
    position:relative;
    z-index:3;

    font-size:56px;

    color:#ffffff;

    filter:
        drop-shadow(0 0 16px rgba(255,255,255,.65))
        drop-shadow(0 0 34px rgba(56,189,248,.50));
}

.music-orb span {
    position:absolute;

    width:190px;
    height:190px;

    border-radius:50%;

    border:1px solid rgba(56,189,248,.20);

    animation:musicPulse 3.5s linear infinite;
}

.music-orb span:nth-child(2) {
    animation-delay:.5s;
}

.music-orb span:nth-child(3) {
    animation-delay:1s;
}

.music-orb span:nth-child(4) {
    animation-delay:1.5s;
}

@keyframes musicPulse {
    from {
        transform:scale(.55);
        opacity:.8;
    }

    to {
        transform:scale(1.28);
        opacity:0;
    }
}

.latest-music-player {
    width:min(860px,92%);

    margin:36px auto 0;
    padding:22px;

    border-radius:var(--radius-lg);
    border:1px solid rgba(56,189,248,.24);

    background:
        linear-gradient(
            135deg,
            rgba(14,25,44,.92),
            rgba(8,14,25,.86)
        );

    backdrop-filter:blur(18px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.28),
        0 0 32px rgba(56,189,248,.14),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.latest-music-head {
    display:flex;
    align-items:center;

    gap:16px;

    margin-bottom:18px;

    text-align:left;
}

.latest-music-icon {
    width:58px;
    height:58px;

    flex:0 0 58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(255,0,51,.10);

    border:1px solid rgba(255,0,51,.25);

    box-shadow:
        0 0 22px rgba(255,0,51,.18),
        inset 0 1px 0 rgba(255,255,255,.10);
}

.latest-music-icon i {
    font-size:30px;

    color:#ff0033;

    filter:
        drop-shadow(0 0 14px rgba(255,0,51,.70))
        drop-shadow(0 0 28px rgba(255,0,51,.35));
}

.latest-music-head span {
    display:block;

    margin-bottom:4px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.latest-music-head h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:28px;
    line-height:1.2;

    color:var(--text-main);
}

.latest-music-frame {
    position:relative;

    width:100%;
    height:360px;

    border-radius:20px;

    overflow:hidden;

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

    background:
        linear-gradient(
            135deg,
            #07111f,
            #0f2238
        );

    box-shadow:
        inset 0 0 32px rgba(0,0,0,.35),
        0 10px 34px rgba(0,0,0,.22);
}

.latest-music-frame iframe {
    width:100%;
    height:100%;

    border:0;

    display:block;
}

.latest-sound-btn {
    position:absolute;

    right:16px;
    bottom:16px;

    z-index:10;

    display:flex;
    align-items:center;

    gap:8px;

    padding:11px 16px;

    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;

    color:white;
    background:rgba(0,0,0,.68);

    cursor:pointer;

    backdrop-filter:blur(10px);

    box-shadow:
        0 0 22px rgba(56,189,248,.25),
        inset 0 1px 0 rgba(255,255,255,.12);

    transition:.25s ease;
}

.latest-sound-btn:hover {
    transform:translateY(-2px);
    background:rgba(56,189,248,.24);
    border-color:rgba(56,189,248,.45);
}

.music-grid {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:22px;
}

.music-card {
    position:relative;

    min-height:315px;

    display:flex;
    flex-direction:column;

    border:0;
    border-radius:var(--radius-lg);

    text-align:left;

    color:inherit;
    background:
        linear-gradient(180deg, rgba(14,25,44,.86), rgba(8,14,25,.84));

    overflow:hidden;

    cursor:pointer;

    box-shadow:
        0 14px 38px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.06);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        box-shadow .35s ease;

    border:1px solid var(--border);
}

.music-card:hover {
    transform:translateY(-8px);

    border-color:rgba(56,189,248,.46);

    box-shadow:
        0 0 32px rgba(56,189,248,.20),
        0 18px 44px rgba(0,0,0,.34);
}

.music-thumb {
    position:relative;

    height:165px;

    overflow:hidden;

    background:
        radial-gradient(circle at 50% 30%, rgba(56,189,248,.22), transparent 55%),
        linear-gradient(135deg, rgba(2,132,199,.28), rgba(29,78,216,.18));
}

.music-thumb img {
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .35s ease;
}

.music-card:hover .music-thumb img {
    transform:scale(1.08);
}

.music-thumb::after {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(180deg, transparent, rgba(5,9,20,.78));

    pointer-events:none;
}

.music-play {
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:54px;
    height:54px;

    z-index:3;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:white;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(8px);

    box-shadow:
        0 0 22px rgba(56,189,248,.42),
        inset 0 1px 0 rgba(255,255,255,.18);

    transition:.25s ease;
}

.music-card:hover .music-play {
    transform:translate(-50%,-50%) scale(1.12);
    background:#38bdf8;
}

.music-wave {
    position:absolute;

    right:14px;
    bottom:14px;

    z-index:3;

    display:flex;
    align-items:end;

    gap:4px;

    height:26px;
}

.music-wave span {
    width:4px;

    border-radius:20px;

    background:#38bdf8;

    box-shadow:0 0 12px rgba(56,189,248,.70);

    animation:waveMove 1s ease-in-out infinite;
}

.music-wave span:nth-child(1) {
    height:12px;
}

.music-wave span:nth-child(2) {
    height:22px;
    animation-delay:.15s;
}

.music-wave span:nth-child(3) {
    height:16px;
    animation-delay:.3s;
}

.music-wave span:nth-child(4) {
    height:25px;
    animation-delay:.45s;
}

@keyframes waveMove {
    0%,100% {
        transform:scaleY(.55);
    }

    50% {
        transform:scaleY(1.1);
    }
}

.music-info {
    padding:20px;
    flex:1;
}

.music-info h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:22px;
    font-weight:800;

    line-height:1.2;

    margin-bottom:9px;

    color:var(--text-main);
}

.music-info p {
    color:var(--text-soft);

    font-size:14px;
    line-height:1.7;
}

.music-loading {
    min-height:165px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.music-loading i {
    font-size:58px;

    color:var(--blue);

    filter:
        drop-shadow(0 0 18px rgba(56,189,248,.60))
        drop-shadow(0 0 34px rgba(56,189,248,.28));

    animation:discSpin 3s linear infinite;
}

@keyframes discSpin {
    to {
        transform:rotate(360deg);
    }
}

/* =====================================================
   MUSIC POPUP
===================================================== */

.music-popup {
    position:fixed;
    inset:0;

    z-index:999999;

    display:none;
    align-items:center;
    justify-content:center;

    padding:24px;
}

.music-popup.active {
    display:flex;
}

.music-popup-overlay {
    position:fixed;
    inset:0;

    z-index:1;

    border:0;

    background:rgba(2,8,18,.82);

    backdrop-filter:blur(14px);

    cursor:pointer;
}

.music-popup-box {
    position:relative;
    z-index:2;

    width:min(980px,96vw);
    max-height:90vh;

    border-radius:26px;
    border:1px solid rgba(56,189,248,.28);

    background:
        linear-gradient(
            180deg,
            rgba(14,25,44,.96),
            rgba(8,14,25,.94)
        );

    box-shadow:
        0 0 45px rgba(56,189,248,.18),
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.08);

    overflow:hidden;
}

.music-popup-x {
    position:absolute;

    right:16px;
    top:16px;

    z-index:30;

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.14);
    border-radius:50%;

    color:white;
    background:rgba(0,0,0,.58);

    cursor:pointer;

    backdrop-filter:blur(10px);

    transition:var(--transition);
}

.music-popup-x:hover {
    transform:scale(1.08);

    background:rgba(56,189,248,.26);
    border-color:rgba(56,189,248,.50);
}

.music-popup-video {
    width:100%;

    aspect-ratio:16 / 9;

    background:#020817;
}

.music-popup-video iframe {
    width:100%;
    height:100%;

    border:0;

    display:block;
}

.music-popup-info {
    padding:22px 26px 26px;
}

.music-popup-info small {
    display:block;

    margin-bottom:8px;

    color:var(--blue);

    font-family:"Rajdhani",sans-serif;
    font-size:13px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;
}

.music-popup-info h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:30px;
    line-height:1.2;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    margin-top:100px;

    border-top:1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            rgba(5,9,20,.55),
            rgba(5,9,20,.92)
        );

    backdrop-filter:blur(18px);
}

.footer-top {
    width:min(var(--container),92%);

    margin-inline:auto;

    padding:70px 0;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;

    gap:60px;
}

.footer-brand img {
    width:58px;

    margin-bottom:18px;

    filter:drop-shadow(0 0 18px rgba(56,189,248,.45));
}

.footer-brand h3 {
    font-family:"Rajdhani",sans-serif;

    font-size:38px;

    letter-spacing:2px;

    margin-bottom:12px;
}

.footer-brand p {
    color:var(--text-soft);

    line-height:1.7;
}

.footer-links h4 {
    font-family:"Rajdhani",sans-serif;

    font-size:24px;

    color:var(--blue);

    margin-bottom:18px;
}

.footer-links a {
    display:block;

    width:max-content;

    color:#d9ecff;

    margin:12px 0;

    transition:var(--transition);
}

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

    transform:translateX(6px);
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.06);

    padding:22px;

    text-align:center;

    color:var(--text-muted);

    font-size:14px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position:fixed;

    top:82px;
    left:-100%;

    width:100%;
    height:calc(100vh - 82px);

    z-index:9998;

    padding:36px 24px;

    display:flex;
    flex-direction:column;

    gap:14px;

    background:
        linear-gradient(
            180deg,
            rgba(5,9,20,.98),
            rgba(8,17,31,.98)
        );

    border-top:1px solid rgba(95,190,255,.12);

    transition:left .32s ease;
}

.mobile-menu.active {
    left:0;
}

.mobile-menu a {
    padding:16px 18px;

    border-radius:var(--radius-sm);

    color:#e5f5ff;

    font-family:"Rajdhani",sans-serif;
    font-size:22px;
    font-weight:800;

    letter-spacing:.5px;

    border:1px solid rgba(255,255,255,.04);

    background:rgba(255,255,255,.025);

    transition:var(--transition);
}

.mobile-menu a:hover {
    color:var(--blue);

    background:rgba(56,189,248,.10);

    border-color:rgba(56,189,248,.28);
}

/* =====================================================
   STREAM PLAYER SWITCHER BUTTONS
===================================================== */

.stream-switch-btn {
    cursor:pointer !important;
    pointer-events:auto !important;
    user-select:none;
    transition:all .25s ease !important;
}

.stream-switch-btn:hover {
    transform:translateY(-3px) scale(1.03) !important;
    box-shadow:0 0 25px rgba(56,189,248,.4), 0 8px 20px rgba(0,0,0,.3) !important;
}

.stream-switch-btn.active-stream-btn {
    border-color:#38bdf8 !important;
    background:linear-gradient(135deg, rgba(56,189,248,.32), rgba(14,165,233,.42)) !important;
    color:#ffffff !important;
    box-shadow:0 0 30px rgba(56,189,248,.55), 0 10px 25px rgba(0,0,0,.4) !important;
    transform:scale(1.04) !important;
}

/* =====================================================
   JS CLASSES
===================================================== */

.scroll-progress {
    position:fixed;

    top:0;
    left:0;

    height:3px;
    width:0;

    z-index:99999;

    background:linear-gradient(
        90deg,
        var(--blue),
        var(--blue-soft)
    );

    box-shadow:0 0 14px rgba(56,189,248,.55);
}

.back-top {
    position:fixed;

    right:24px;
    bottom:24px;

    width:52px;
    height:52px;

    border:0;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:24px;
    font-weight:800;

    cursor:pointer;

    opacity:0;
    pointer-events:none;

    transform:translateY(16px);

    transition:var(--transition);

    z-index:999;

    background:linear-gradient(
        135deg,
        #0284c7,
        #38bdf8
    );

    box-shadow:
        0 0 24px rgba(56,189,248,.35),
        0 12px 25px rgba(0,0,0,.30);
}

.back-top.show {
    opacity:1;
    pointer-events:auto;

    transform:translateY(0);
}

.back-top:hover {
    transform:translateY(-4px);

    box-shadow:
        0 0 32px rgba(56,189,248,.50),
        0 16px 30px rgba(0,0,0,.35);
}

.star {
    position:fixed;

    width:2px;
    height:2px;

    border-radius:50%;

    background:#9be7ff;

    opacity:.45;

    z-index:-7;

    pointer-events:none;

    animation:starFloat linear infinite;

    box-shadow:0 0 10px rgba(56,189,248,.7);
}

@keyframes starFloat {
    0% {
        transform:translateY(0);
        opacity:.15;
    }

    45% {
        opacity:.85;
    }

    100% {
        transform:translateY(-44px);
        opacity:.12;
    }
}

/* =====================================================
   REVEAL
===================================================== */

.section,
.card,
.video-card,
.shorts-card,
.live-box,
.system-card,
.equipment-card,
.system-summary,
.about-card,
.about-feature,
.about-cta,
.contact-card,
.contact-social-card,
.contact-cta,
.big-mail-box,
.latest-music-player,
.music-card {
    opacity:0;

    transform:translateY(42px);

    transition:
        opacity .65s ease,
        transform .65s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.section.active,
.card.active,
.video-card.active,
.shorts-card.active,
.live-box.active,
.system-card.active,
.equipment-card.active,
.system-summary.active,
.about-card.active,
.about-feature.active,
.about-cta.active,
.contact-card.active,
.contact-social-card.active,
.contact-cta.active,
.big-mail-box.active,
.latest-music-player.active,
.music-card.active {
    opacity:1;

    transform:translateY(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px) {
    .music-grid {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .about-features {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

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

@media(max-width:1100px) {
    nav {
        display:none;
    }

    .mobile-btn {
        display:block;
    }

    .footer-top {
        grid-template-columns:1fr 1fr;
    }

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

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

    .about-wrapper {
        grid-template-columns:1fr;
    }

    .contact-wrapper {
        grid-template-columns:1fr;
    }

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

@media(max-width:768px) {
    .hero {
        padding-top:140px;
        min-height:auto;
        padding-bottom:70px;
    }

    .system-hero,
    .about-hero,
    .contact-hero,
    .music-hero {
        min-height:auto;
        padding-top:125px;
        padding-bottom:55px;
    }

    .hero-image {
        width:180px;
        height:180px;

        margin-bottom:28px;
    }

    .hero-image::before {
        width:250px;
        height:250px;
    }

    .hero-image img {
        width:105px;
    }

    .hero h1 {
        letter-spacing:5px;
    }

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

    .section {
        padding:78px 0;
    }

    .section-title {
        margin-bottom:40px;
    }

    .social-grid,
    .system-grid,
    .equipment-grid,
    .contact-social-grid,
    .music-grid,
    .about-features {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

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

    .card {
        min-height:170px;
        padding:28px 18px;
    }

    .card i {
        font-size:40px;
    }

    .live-box {
        padding:18px;
    }

    .live-player {
        height:390px;
    }

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

    .latest-music-frame {
        height:260px;
    }

    .system-summary,
    .about-cta,
    .contact-cta {
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-top {
        grid-template-columns:1fr;
        gap:38px;
        padding:55px 0;
    }

    .music-popup {
        padding:12px;
    }

    .music-popup-info h3 {
        font-size:24px;
    }
}

@media(max-width:540px) {
    .logo img {
        width:42px;
        height:42px;
    }

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

    .right-nav {
        gap:10px;
    }

    .lang {
        min-width:72px;
        padding:9px 11px;
        font-size:14px;
    }

    .live-btn {
        display:none;
    }

    .hero-buttons {
        width:100%;
    }

    .watch,
    .secondary-btn {
        width:100%;
        max-width:280px;
    }

    .social-grid,
    .system-grid,
    .equipment-grid,
    .contact-social-grid,
    .music-grid,
    .about-features,
    .shorts-grid {
        grid-template-columns:1fr;
    }

    .live-player {
        height:300px;
    }

    .latest-music-head {
        align-items:flex-start;
    }

    .latest-music-head h3 {
        font-size:23px;
    }

    .latest-music-frame {
        height:220px;
    }

    .section::after {
        margin-top:70px;
    }

    .back-top {
        right:16px;
        bottom:16px;

        width:46px;
        height:46px;
    }
}

@media(max-width:390px) {
    .hero h1 {
        font-size:42px;
        letter-spacing:3px;
    }

    .section-title h2 {
        font-size:32px;
    }

    .mobile-menu a {
        font-size:20px;
        padding:14px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *:not(.ring):not(.logo img):not(.live-dot):not(.live-btn span) {
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
        scroll-behavior:auto !important;
    }
}