*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    background:#02060d;
    color:#fff;
    font-family:"Inter",sans-serif;
    overflow-x:hidden;
    padding-top:114px;
}
a{text-decoration:none;color:inherit}
.container{width:min(1400px,92%);margin:auto}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 10% 14%,rgba(0,255,208,.13),transparent 34%),
        radial-gradient(circle at 86% 10%,rgba(0,168,255,.14),transparent 35%),
        radial-gradient(circle at 50% 100%,rgba(0,255,208,.055),transparent 44%);
    z-index:-4;
}
body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
    background-size:74px 74px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),transparent 84%);
    z-index:-3;
}

/* HEADER */
.royal-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(1,5,10,.78);
    backdrop-filter:blur(24px);
    border-bottom:1px solid rgba(255,255,255,.06);
}
.header-glow{
    position:absolute;
    top:-120px;
    left:8%;
    width:420px;
    height:220px;
    background:rgba(0,255,200,.12);
    filter:blur(90px);
    pointer-events:none;
}
.header-topbar{
    height:36px;
    background:rgba(7,15,24,.72);
    border-bottom:1px solid rgba(255,255,255,.045);
    position:relative;
    z-index:2;
}
.topbar-inner{
    height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.topbar-left{
    display:flex;
    align-items:center;
    gap:9px;
    color:#aeb7c2;
    font-size:12px;
    font-weight:600;
}
.live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.topbar-left span:not(.live-dot){color:#4b5662}
.topbar-right{display:flex;align-items:center;gap:18px}
.topbar-right a{color:#8e99a5;font-size:12px;transition:.3s}
.topbar-right a:hover{color:#00ffd0}
.nav-inner{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.royal-logo{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:260px;
}
.logo-mark{
    width:48px;
    height:48px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(0,255,200,.22),rgba(0,168,255,.12));
    border:1px solid rgba(0,255,200,.30);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00ffd0;
    font-family:"Orbitron",sans-serif;
    font-weight:900;
    font-size:16px;
    box-shadow:0 0 25px rgba(0,255,200,.15);
}
.royal-logo strong{
    display:block;
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:22px;
    letter-spacing:1px;
    line-height:1;
}
.royal-logo span{
    display:block;
    color:#89939f;
    font-size:11px;
    margin-top:6px;
    letter-spacing:1px;
    text-transform:uppercase;
}
.main-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
}
.main-menu>a{
    color:#c9d0d8;
    font-size:14px;
    font-weight:700;
    transition:.3s;
    position:relative;
}
.main-menu>a:hover,
.main-menu>a.active{color:#00ffd0}
.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:240px;
    justify-content:flex-end;
}
.login-link{color:#9ba5b0;font-size:14px;font-weight:700;transition:.3s}
.login-link:hover{color:#00ffd0}
.client-panel-btn{
    padding:14px 24px;
    border-radius:15px;
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:black;
    font-size:14px;
    font-weight:900;
    box-shadow:0 0 30px rgba(0,255,200,.25);
    transition:.3s;
}

/* MOBILE */
.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    border:1px solid rgba(0,255,208,.22);
    border-radius:16px;
    background:rgba(0,255,208,.07);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    box-shadow:0 0 24px rgba(0,255,208,.10);
}
.mobile-menu-btn span{
    width:22px;
    height:2px;
    border-radius:99px;
    background:#00ffd0;
    box-shadow:0 0 12px rgba(0,255,208,.65);
    transition:.3s;
}
.mobile-menu-btn.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.mobile-menu-btn.is-open span:nth-child(2){opacity:0}
.mobile-menu-btn.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(8px);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}
.mobile-menu-overlay.is-open{opacity:1;visibility:visible}
.mobile-drawer{
    position:fixed;
    top:0;
    right:0;
    width:min(410px,92vw);
    height:100vh;
    z-index:9999;
    padding:22px;
    background:
        radial-gradient(circle at 80% 0%,rgba(0,255,208,.14),transparent 34%),
        radial-gradient(circle at 0% 45%,rgba(0,168,255,.10),transparent 35%),
        linear-gradient(180deg,rgba(7,16,26,.97),rgba(2,5,11,.98));
    border-left:1px solid rgba(0,255,208,.18);
    box-shadow:-35px 0 90px rgba(0,0,0,.55),0 0 70px rgba(0,255,208,.10);
    transform:translateX(105%);
    transition:.42s cubic-bezier(.2,.8,.2,1);
    overflow-y:auto;
}
.mobile-drawer.is-open{transform:translateX(0)}
.mobile-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
}
.mobile-logo{min-width:0}
.mobile-logo .logo-mark{width:44px;height:44px;border-radius:15px}
.mobile-logo strong{font-size:17px}
.mobile-logo span{font-size:10px}
.mobile-close{
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}
.mobile-status{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    border-radius:18px;
    background:rgba(0,255,136,.07);
    border:1px solid rgba(0,255,136,.14);
    color:#d5ffe8;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}
.mobile-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.mobile-links{display:grid;gap:10px}
.mobile-link{
    position:relative;
    overflow:hidden;
    display:block;
    padding:16px 17px;
    border-radius:19px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
    transition:.25s;
}
.mobile-link::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,255,208,.10),transparent 58%);
    opacity:0;
    transition:.25s;
}
.mobile-link b,.mobile-link small{position:relative;z-index:2;display:block}
.mobile-link b{
    font-family:"Orbitron",sans-serif;
    color:#fff;
    font-size:14px;
    margin-bottom:5px;
}
.mobile-link small{color:#94a0ad;font-size:12px;line-height:1.4}
.mobile-link:hover,.mobile-link.active{
    border-color:rgba(0,255,208,.38);
    transform:translateX(-4px);
    box-shadow:0 0 30px rgba(0,255,208,.08);
}
.mobile-link:hover::before,.mobile-link.active::before{opacity:1}
.mobile-link.active b{color:#00ffd0}
.mobile-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:18px;
    padding-bottom:24px;
}
.mobile-primary,.mobile-secondary{
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
}
.mobile-primary{
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#00110f;
    box-shadow:0 0 30px rgba(0,255,208,.24);
}
.mobile-secondary{
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    background:rgba(255,255,255,.035);
}

/* HERO TERMS */
.terms-hero{
    position:relative;
    overflow:hidden;
    padding:105px 0 90px;
    background:
        radial-gradient(circle at 20% 20%,rgba(0,255,208,.14),transparent 30%),
        radial-gradient(circle at 80% 0%,rgba(0,153,255,.12),transparent 30%),
        linear-gradient(180deg,#02060d,#07111c);
}
.terms-hero-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:70px 70px;
    mask-image:linear-gradient(to bottom,rgba(0,0,0,1),transparent);
}
.terms-hero-content{
    position:relative;
    z-index:2;
}
.terms-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    border:1px solid rgba(0,255,208,.22);
    background:rgba(0,255,208,.08);
    color:#00ffd0;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}
.terms-badge span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 15px #00ff88;
}
.terms-hero h1{
    font-family:"Orbitron",sans-serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}
.terms-hero h1 strong{
    display:block;
    color:#00ffd0;
    text-shadow:0 0 35px rgba(0,255,208,.45);
}
.terms-hero p{
    max-width:880px;
    color:#aab4c0;
    font-size:18px;
    line-height:1.9;
}
.terms-meta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:30px;
}
.terms-meta div{
    padding:14px 18px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    color:#d8e0e8;
    font-size:13px;
    font-weight:800;
}
.terms-meta span{
    color:#00ffd0;
}

/* CONTENT */
.terms-section{
    position:relative;
    padding:95px 0;
}
.terms-wrapper{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;
}
.terms-sidebar{
    position:sticky;
    top:135px;
    padding:30px;
    border-radius:30px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)),
        #07111c;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.terms-sidebar h3{
    font-family:"Orbitron",sans-serif;
    font-size:22px;
    margin-bottom:25px;
}
.terms-sidebar a{
    display:block;
    padding:14px 18px;
    margin-bottom:10px;
    border-radius:16px;
    color:#cfd6de;
    background:#0b1622;
    border:1px solid rgba(255,255,255,.05);
    transition:.3s;
    font-size:14px;
    font-weight:700;
}
.terms-sidebar a:hover{
    background:rgba(0,255,208,.08);
    border-color:rgba(0,255,208,.18);
    color:#00ffd0;
    transform:translateX(5px);
}
.terms-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}
.terms-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    padding:40px;
    background:
        linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015)),
        radial-gradient(circle at top right,rgba(0,255,208,.12),transparent 35%),
        #07111c;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
}
.terms-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:34px;
    padding:1px;
    background:linear-gradient(135deg,rgba(0,255,208,.55),rgba(0,153,255,.16),transparent);
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:.45;
    pointer-events:none;
}
.terms-card h2{
    position:relative;
    z-index:2;
    font-family:"Orbitron",sans-serif;
    font-size:34px;
    margin-bottom:22px;
    color:#fff;
}
.terms-card p,
.terms-card li{
    position:relative;
    z-index:2;
    color:#b5c0cc;
    font-size:16px;
    line-height:1.9;
}
.terms-card ul{
    padding-left:20px;
    margin-top:15px;
}
.terms-card li{
    margin-bottom:10px;
}
.terms-note{
    margin-top:18px;
    padding:18px;
    border-radius:18px;
    background:rgba(0,255,208,.06);
    border:1px solid rgba(0,255,208,.13);
    color:#dffff8 !important;
}

/* FOOTER */
.royal-footer{
    position:relative;
    overflow:hidden;
    padding:90px 0 35px;
    background:
        radial-gradient(circle at 15% 20%,rgba(0,255,200,.08),transparent 30%),
        radial-gradient(circle at 85% 0%,rgba(0,120,255,.08),transparent 35%),
        #02050a;
    border-top:1px solid rgba(255,255,255,.06);
}
.footer-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,255,200,.10);
    filter:blur(150px);
    left:-180px;
    bottom:-220px;
}
.footer-top{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:50px;
    align-items:center;
    margin-bottom:70px;
    padding-bottom:55px;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand h3{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:30px;
    margin-bottom:20px;
}
.footer-brand p,.footer-newsletter p,.contact-line{
    color:#aeb6bf;
    font-size:14px;
    line-height:1.9;
}
.footer-status{
    margin-top:24px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(0,255,136,.07);
    border:1px solid rgba(0,255,136,.14);
    color:#d5ffe8;
    font-size:13px;
    font-weight:700;
}
.footer-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.footer-newsletter{
    padding:34px;
    border-radius:28px;
    background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
    border:1px solid rgba(255,255,255,.06);
}
.footer-newsletter h4{
    font-family:"Orbitron",sans-serif;
    font-size:24px;
    margin-bottom:14px;
}
.footer-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.footer-actions a{
    padding:14px 22px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
}
.footer-actions a:first-child{background:linear-gradient(90deg,#00ffd0,#00a8ff);color:black}
.footer-actions a:last-child{border:1px solid rgba(255,255,255,.10);color:white}
.footer-links-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1.2fr;
    gap:40px;
    margin-bottom:60px;
}
.footer-links-grid h4{
    font-family:"Orbitron",sans-serif;
    color:#00ffd0;
    font-size:17px;
    margin-bottom:22px;
}
.footer-links-grid a{
    display:block;
    color:#a7afb8;
    font-size:14px;
    margin-bottom:14px;
    transition:.3s;
}
.footer-links-grid a:hover{color:#00ffd0;transform:translateX(4px)}
.payment-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.payment-badges span{
    padding:8px 12px;
    border-radius:10px;
    background:#091018;
    border:1px solid rgba(255,255,255,.07);
    color:#d4d4d4;
    font-size:12px;
    font-weight:800;
}
.footer-bottom{
    position:relative;
    z-index:2;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.footer-bottom p,.footer-bottom a{color:#7f8790;font-size:13px}
.footer-bottom div{display:flex;gap:20px;flex-wrap:wrap}
.footer-bottom a:hover{color:#00ffd0}

@media(max-width:1200px){
    .desktop-menu{display:none}
    .mobile-menu-btn{display:flex}
    .nav-actions{min-width:auto}
    .login-link,.client-panel-btn{display:none}
    .royal-logo{min-width:auto}
    .royal-logo strong{font-size:18px}
    .royal-logo span{font-size:10px}
    .nav-inner{height:74px}
    .footer-top,.footer-links-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1000px){
    .terms-wrapper{grid-template-columns:1fr}
    .terms-sidebar{position:relative;top:auto}
}
@media(max-width:768px){
    body{padding-top:74px}
    .header-topbar{display:none}
    .royal-header{background:rgba(1,5,10,.90)}
    .nav-inner{height:74px}
    .logo-mark{width:44px;height:44px;border-radius:15px}
    .royal-logo strong{font-size:16px}
    .royal-logo span{display:none}
    .mobile-drawer{width:92vw;padding:18px}
    .mobile-link{padding:15px}
    .mobile-link b{font-size:13px}
    .terms-hero{padding:80px 0 65px}
    .terms-hero h1{font-size:42px}
    .terms-hero p{font-size:16px}
    .terms-card{padding:28px}
    .terms-card h2{font-size:26px}
    .footer-top,.footer-links-grid{grid-template-columns:1fr}
    .footer-bottom{flex-direction:column;align-items:flex-start}
}