/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }
* { scrollbar-width: thin; scrollbar-color: #2a2a2a #0a0a0a; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: #fff; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #1f1f1f;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand svg { width: 22px; height: 22px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}
.nav-links a.btn-primary {
    background: #fff;
    color: #000 !important;
    font-weight: 600;
    padding: 9px 20px;
}
.nav-links a.btn-primary:hover { background: #e0e0e0; }
.nav-links a.btn-primary::after { display: none; }

/* ===== ALERTS ===== */
.alert {
    padding: 14px 20px;
    margin: 76px auto 0;
    max-width: 1200px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.alert-danger  { background: #2d0000; border: 1px solid #ef4444; color: #ef4444; }
.alert-success { background: #052e16; border: 1px solid #22c55e; color: #22c55e; }
.alert-warning { background: #2d1c00; border: 1px solid #f59e0b; color: #f59e0b; }
.alert-info    { background: #0c1f40; border: 1px solid #3b82f6; color: #3b82f6; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
    text-decoration: none;
}
.btn-white  { background: #fff; color: #000; }
.btn-white:hover { background: #e0e0e0; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid #333; }
.btn-outline:hover { background: #1a1a1a; border-color: #555; }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.45;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,10,0.97) 0%,
        rgba(10,10,10,0.85) 40%,
        rgba(10,10,10,0.3) 70%,
        rgba(10,10,10,0.1) 100%
    );
}
.hero-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}
.hero-text { max-width: 600px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #aaa;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 13px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}
.hero-title {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-sub {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-btn-wrap {
    animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-feats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}
.hero-feat svg { color: #555; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 60px;
    color: #666;
    letter-spacing: -0.5px;
}
.section-title span { color: #fff; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feat-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}
.feat-card:hover { border-color: #333; transform: translateY(-4px); }
.feat-icon {
    width: 44px;
    height: 44px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-card h3 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }
.feat-card p  { color: #555; font-size: 14px; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    transition: border-color 0.3s;
}
.pricing-card:hover { border-color: #2a2a2a; }
.pricing-label {
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.pricing-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.pricing-sub { color: #555; margin-bottom: 28px; font-size: 15px; }
.pricing-list { list-style: none; margin-bottom: 36px; }
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #161616;
    color: #777;
    font-size: 14px;
}
.pricing-list li:last-child { border: none; }
.pricing-list li svg { color: #fff; flex-shrink: 0; width: 15px; height: 15px; }

/* Серверы */
.servers-info {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.server-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #888;
    transition: border-color 0.2s;
}
.server-badge:hover { border-color: #444; color: #ccc; }
.server-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}
.flag-fi {
    background: linear-gradient(
        to bottom,
        #fff 0%, #fff 40%,
        #003580 40%, #003580 60%,
        #fff 60%, #fff 100%
    );
    position: relative;
    overflow: hidden;
}
.flag-fi::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #003580;
}
.flag-de {
    background: linear-gradient(
        to bottom,
        #000 0%, #000 33%,
        #D00 33%, #D00 66%,
        #FFCE00 66%, #FFCE00 100%
    );
}
.server-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform: scale(1); }
    50% { opacity:0.5; transform: scale(0.8); }
}
.server-info-text { line-height: 1.3; }
.server-name { font-weight: 600; color: #ccc; font-size: 13px; }
.server-ping { font-size: 11px; color: #444; }

.price-circle {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.price-circle::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, #333, transparent, #222);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.price-num  { font-size: 72px; font-weight: 900; line-height: 1; }
.price-sym  { font-size: 28px; font-weight: 700; margin-left: 2px; align-self: flex-start; margin-top: 12px; }
.price-per  { font-size: 12px; color: #444; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 19px;
    left: calc(12.5% + 19px);
    right: calc(12.5% + 19px);
    height: 1px;
    background: linear-gradient(to right, #222, #333, #222);
}
.step { position: relative; padding: 0 16px; }
.step-num {
    width: 38px;
    height: 38px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.step h4 { font-size: 14px; margin-bottom: 6px; font-weight: 600; }
.step p   { color: #555; font-size: 13px; line-height: 1.6; }

/* ===== CTA ===== */
.cta-wrap { padding: 60px 0 100px; }
.cta-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 24px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.cta-img { width: 280px; height: 180px; flex-shrink: 0; overflow: hidden; position: relative; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.cta-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, #0f0f0f);
}
.cta-body { flex: 1; padding: 40px 48px; position: relative; }
.cta-body h2 { font-size: 30px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.cta-body p  { color: #555; font-size: 14px; }
.cta-btn { padding: 40px 48px; flex-shrink: 0; position: relative; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid #141414; padding: 28px 0; }
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 15px;
}
.footer-brand svg { width: 18px; height: 18px; color: #555; }
.footer-copy  { color: #333; font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #333; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #888; }
.footer-social { display: flex; gap: 10px; }
.soc-icon {
    width: 34px;
    height: 34px;
    border: 1px solid #1f1f1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.2s;
}
.soc-icon svg { width: 16px; height: 16px; }
.soc-icon:hover { color: #fff; border-color: #444; }

/* ===== AUTH ===== */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 44px 40px;
    animation: fadeInUp 0.5s ease;
}
.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}
.auth-logo svg { width: 36px; height: 36px; }
.auth-title { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub   { color: #444; text-align: center; font-size: 14px; margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: #aaa; }
.form-input {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: #333; }
.form-input::placeholder { color: #333; }
.form-hint { font-size: 11px; color: #333; margin-top: 2px; }
.auth-divider {
    text-align: center;
    color: #222;
    font-size: 13px;
    margin: 20px 0;
    position: relative;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 44%;
    height: 1px;
    background: #1a1a1a;
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-links { text-align: center; color: #444; font-size: 14px; }
.auth-links a { color: #888; font-weight: 600; transition: color 0.2s; }
.auth-links a:hover { color: #fff; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    margin-bottom: 18px;
}
.checkbox-label input { accent-color: #fff; }

/* ===== DASHBOARD ===== */
.dash-wrap { min-height: 100vh; padding: 88px 0 80px; }
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}
.dash-avatar {
    width: 52px;
    height: 52px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}
.dash-title { font-size: 24px; font-weight: 800; }
.dash-sub   { color: #444; font-size: 14px; }
.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    color: #22c55e;
}
.badge-inactive {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #ef4444;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.stat-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s;
}
.stat-card:hover { border-color: #2a2a2a; }
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; }
.ic-blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ic-green  { background: rgba(34,197,94,0.1);  color: #22c55e; }
.ic-yellow { background: rgba(245,158,11,0.1); color: #f59e0b; }
.ic-purple { background: rgba(168,85,247,0.1); color: #a855f7; }
.stat-label { font-size: 11px; color: #444; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-val   { font-size: 16px; font-weight: 700; }

/* VPN BLOCK */
.vpn-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.vpn-head {
    padding: 20px 28px;
    border-bottom: 1px solid #141414;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vpn-head svg { width: 18px; height: 18px; color: #555; }
.vpn-body { padding: 28px 32px; }
.vpn-desc { color: #555; font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.url-label { font-size: 11px; color: #333; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.url-box {
    display: flex;
    background: #080808;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.url-input {
    flex: 1;
    background: none;
    border: none;
    padding: 13px 16px;
    color: #666;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    min-width: 0;
}
.url-input:focus { outline: none; }
.copy-btn {
    padding: 13px 16px;
    background: #111;
    border: none;
    border-left: 1px solid #1a1a1a;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.copy-btn svg { width: 16px; height: 16px; }
.copy-btn:hover { color: #fff; background: #1a1a1a; }
.vpn-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.vpn-howto {
    background: #080808;
    border: 1px solid #141414;
    border-radius: 10px;
    padding: 20px 24px;
}
.vpn-howto h4 { font-size: 11px; color: #333; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.vpn-howto ol { padding-left: 18px; color: #444; font-size: 13px; line-height: 2.2; }
.vpn-howto strong { color: #888; }
.vpn-nosub { padding: 56px 32px; text-align: center; }
.nosub-icon { color: #222; margin-bottom: 20px; }
.nosub-icon svg { width: 48px; height: 48px; }
.nosub-price { font-size: 48px; font-weight: 900; margin: 16px 0 6px; }
.nosub-per { color: #444; font-size: 14px; margin-bottom: 28px; }

/* INFO */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px 32px;
}
.info-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #141414;
    font-weight: 700;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #0d0d0d;
    font-size: 14px;
    gap: 10px;
    flex-wrap: wrap;
}
.info-row:last-child { border: none; }
.info-key { color: #444; flex-shrink: 0; }
.info-val { font-weight: 600; text-align: right; }
.bal-val  { color: #22c55e; font-size: 16px; }
.badge-sm {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.bg  { background: rgba(34,197,94,0.1); color: #22c55e; }
.br  { background: rgba(239,68,68,0.1); color: #ef4444; }
.by  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.topup-hint { color: #444; font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

/* PAYMENT */
.pay-amounts { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.pay-amount-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    background: #080808;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pay-amount-btn span { font-size: 11px; color: #444; font-weight: 400; margin-top: 4px; }
.pay-amount-btn:hover { border-color: #333; background: #111; transform: translateY(-2px); }
.pay-amount-btn.popular { border-color: #333; background: #111; position: relative; }
.pay-amount-btn.popular::before {
    content: 'Выгодно';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}
.pay-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: #080808;
    border: 1px solid #141414;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.pay-method svg { width: 16px; height: 16px; }

/* ===== ADMIN ===== */
.admin-wrap { min-height: 100vh; padding: 88px 0 80px; }
.admin-head { margin-bottom: 36px; }
.admin-head h1 {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.admin-head h1 svg { width: 24px; height: 24px; color: #555; }
.admin-head p  { color: #444; }
.adm-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.adm-stat {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.adm-stat-num { font-size: 34px; font-weight: 800; }
.adm-stat-lbl { font-size: 12px; color: #444; margin-top: 4px; }
.tbl-card {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}
.tbl-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid #141414;
    gap: 20px;
    flex-wrap: wrap;
}
.tbl-head h2 { font-size: 16px; font-weight: 700; }
.search-box { width: 240px; }
.tbl-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th {
    padding: 12px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #080808;
    border-bottom: 1px solid #141414;
}
tbody td { padding: 14px 20px; border-bottom: 1px solid #0d0d0d; vertical-align: middle; }
tbody tr:last-child td { border: none; }
tbody tr:hover td { background: rgba(255,255,255,0.01); }
.u-id   { color: #333; font-size: 12px; }
.u-ava  {
    width: 32px;
    height: 32px;
    background: #161616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    border: 1px solid #222;
}
.u-cell { display: flex; align-items: center; gap: 10px; }
.u-name { font-weight: 600; }
.dot-g  { color: #22c55e; }
.dot-r  { color: #ef4444; }

/* EDIT USER */
.edit-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.edit-sidebar {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    position: sticky;
    top: 80px;
}
.edit-ava {
    width: 72px;
    height: 72px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 14px;
}
.edit-name  { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.edit-email { color: #333; font-size: 13px; margin-bottom: 16px; word-break: break-all; }
.edit-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 20px; }
.qinfo { border-top: 1px solid #141414; padding-top: 16px; margin-bottom: 16px; }
.qinfo-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.qinfo-row span { color: #333; }
.qactions { display: flex; flex-direction: column; gap: 8px; }
.edit-forms { display: flex; flex-direction: column; gap: 20px; }
.ecard {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px 32px;
}
.ecard h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #141414;
}
.ecard .form-group { margin-bottom: 16px; }
.curr-val { font-size: 13px; color: #444; margin-bottom: 14px; }
.danger-card { border-color: rgba(239,68,68,0.15); }
.danger-card h3 { color: #ef4444; border-color: rgba(239,68,68,0.1); }
.danger-card p  { color: #333; font-size: 13px; margin-bottom: 16px; }

/* ===== ERROR ===== */
.err-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.err-code {
    font-size: 120px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #1f1f1f;
    line-height: 1;
    margin-bottom: 16px;
}
.err-page h1 { font-size: 26px; margin-bottom: 10px; }
.err-page p  { color: #444; margin-bottom: 28px; }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #161616;
    border: 1px solid #2a2a2a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s;
    z-index: 9999;
    white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .adm-stats     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero .container { padding-top: 120px; }
    .features-grid   { grid-template-columns: 1fr; }
    .pricing-card    { flex-direction: column; padding: 36px 28px; gap: 28px; }
    .cta-card        { flex-direction: column; }
    .cta-img         { width: 100%; height: 140px; }
    .cta-body        { padding: 28px; }
    .cta-btn         { padding: 0 28px 28px; width: 100%; }
    .stats-grid      { grid-template-columns: 1fr 1fr; }
    .info-grid       { grid-template-columns: 1fr; }
    .edit-grid       { grid-template-columns: 1fr; }
    .edit-sidebar    { position: static; }
    .adm-stats       { grid-template-columns: 1fr 1fr; }
    .auth-card       { padding: 32px 24px; }
    .footer .container { flex-direction: column; align-items: flex-start; gap: 12px; }
    .navbar .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .stats-grid  { grid-template-columns: 1fr; }
    .adm-stats   { grid-template-columns: 1fr; }
    .steps-grid  { grid-template-columns: 1fr; }
    .vpn-btns    { flex-direction: column; }
    .vpn-body    { padding: 20px; }
    .container   { padding: 0 16px; }
    .pay-amounts { grid-template-columns: repeat(2,1fr); }
    .servers-info { flex-direction: column; }
}
