/* =========================================================
   BLOODY XITERS - Cyan Neon Theme
   ========================================================= */

/* ---------- Base ---------- */
/* Neon palette variables */
:root {
    --neon-cyan: #00f5ff;
    --neon-cyan-soft: #33f7ff;
    --neon-blue: #0066ff;
    --neon-blue-soft: #3399ff;
    --neon-green: #00ff88;
    --neon-green-soft: #4bffb7;
    --btn-gradient: linear-gradient(120deg, #00f5ff 0%, #007bff 50%, #00ff88 100%);
    --btn-text-color: #001016;
    --btn-shadow: 0 0 18px rgba(0, 245, 255, 0.7);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%);
}

body {
    height: 100%;
    scroll-behavior: smooth;
}

/* ---------- Custom Scrollbar ---------- */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(5, 5, 10, 0.8);
    border-left: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00f5ff, #00b3ff);
    border-radius: 10px;
    border: 2px solid rgba(5, 5, 10, 0.8);
    box-shadow: 
        0 0 6px rgba(0, 245, 255, 0.6),
        inset 0 0 6px rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33f7ff, #33c4ff);
    box-shadow: 
        0 0 9px rgba(0, 245, 255, 0.9),
        0 0 9px rgba(0, 245, 255, 0.5),
        inset 0 0 9px rgba(0, 245, 255, 0.5);
    transform: scaleX(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #66f9ff, #55ccff);
    box-shadow: 
        0 0 5px rgba(0, 245, 255, 1),
        inset 0 0 5px rgba(0, 245, 255, 0.7);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #00f5ff rgba(5, 5, 10, 0.8);
}

body {
    margin: 0;
    font-family: 'Orbitron', 'Share Tech Mono', monospace, sans-serif;
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%);
    color: #00f5ff;
    -webkit-font-smoothing: antialiased;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0, rgba(0, 245, 255, 0.18), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.16), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
    filter: blur(8px);
    animation: bgPulse 14s ease-in-out infinite alternate;
    z-index: -2;
}


@keyframes bgPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05) translateY(-10px); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1160px, 100% - 32px);
    margin-inline: auto;
}

main {
    padding-top: 70px; /* default space for fixed header */
    transition: padding-top 0.3s ease;
}

/* When promo banner is visible, push content further down */
body.promo-banner-visible main {
    padding-top: 170px; /* header (70) + banner height (~100) */
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Alerts ---------- */
.alert {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: min(500px, 90%);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    z-index: 1000;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Orbitron', monospace;
    pointer-events: auto;
}

.alert-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content div {
    margin-bottom: 4px;
}

.alert-content div:last-child {
    margin-bottom: 0;
}

.alert-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
    pointer-events: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.alert-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.alert-close:active {
    transform: scale(0.95);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

.alert::before {
    content: "";
    width: 4px;
    height: 100%;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.alert-error {
    background: rgba(0, 12, 20, 0.95);
    border: 2px solid #00f5ff;
    color: #e0faff;
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.5), 0 8px 19px rgba(0, 0, 0, 0.8);
}

.alert-error::before {
    background: linear-gradient(180deg, #00f5ff, #00b3ff);
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.8);
}

.alert-error .alert-icon {
    color: #00f5ff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
}

.alert-error strong {
    color: #00f5ff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
}

.alert-success {
    background: rgba(0, 20, 10, 0.95);
    border: 2px solid #00ff88;
    color: #e7fff7;
    box-shadow: 0 0 9px rgba(0, 255, 136, 0.5), 0 8px 19px rgba(0, 0, 0, 0.8);
}

.alert-success::before {
    background: linear-gradient(180deg, #00ff88, #4bffb7);
    box-shadow: 0 0 9px rgba(0, 255, 136, 0.8);
}

.alert-success .alert-icon {
    color: #00ff88;
    text-shadow: 0 0 6px rgba(0, 255, 136, 0.8);
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.9));
}

.alert-success strong {
    color: #00ff88;
    text-shadow: 0 0 6px rgba(0, 255, 136, 0.8);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 4, 8, 0.98) 0%, rgba(0, 5, 10, 0.98) 50%, rgba(0, 8, 13, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: linear-gradient(135deg, rgba(0, 4, 8, 0.99) 0%, rgba(0, 5, 10, 0.99) 50%, rgba(0, 8, 13, 0.99) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 245, 255, 0.2);
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    border: 3px solid #00f5ff;
    border-radius: 20px;
    margin: 10px auto;
    max-width: 95%;
    width: min(1400px, 95%);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.6), 0 0 18px rgba(0, 245, 255, 0.3);
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%);
}

/* ---------- Promo Banner (home offer) ---------- */
.promo-banner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 39;
    padding: 10px 0 0 0;
    background: linear-gradient(135deg, rgba(0, 4, 8, 0.98) 0%, rgba(0, 5, 10, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.promo-banner .container {
    max-width: 95%;
    width: min(1400px, 95%);
}

.promo-banner-inner {
    position: relative;
    border-radius: 22px;
    padding: 16px 24px;
    background: #0a0a0a;
    border: 2px solid transparent;
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.4),
        0 0 50px rgba(0, 102, 255, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 45%;
    width: min(550px, 45%);
    margin: 0 auto 0;
    overflow: hidden;
}

.promo-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #00f5ff 0%, #00f5ff 50%, #0066ff 50%, #0066ff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.promo-banner-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    background: #0a0a0a;
    z-index: -1;
}

.promo-snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: rgba(0, 245, 255, 0.5);
    font-size: 1.2rem;
    animation: snowflakeFloat 8s ease-in-out infinite;
    opacity: 0.7;
    filter: drop-shadow(0 0 4px rgba(0, 245, 255, 0.4));
}

.snowflake:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.snowflake:nth-child(2) { top: 20%; left: 15%; animation-delay: 1s; }
.snowflake:nth-child(3) { top: 30%; left: 25%; animation-delay: 2s; }
.snowflake:nth-child(4) { top: 15%; left: 70%; animation-delay: 0.5s; }
.snowflake:nth-child(5) { top: 25%; left: 80%; animation-delay: 1.5s; }
.snowflake:nth-child(6) { top: 35%; left: 90%; animation-delay: 2.5s; }
.snowflake:nth-child(7) { top: 50%; left: 50%; animation-delay: 1.2s; }
.snowflake:nth-child(8) { top: 60%; left: 60%; animation-delay: 2.2s; }

@keyframes snowflakeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
}

.promo-banner-content {
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.promo-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00f5ff;
    margin-bottom: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

.promo-title {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    line-height: 1.2;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
}

.promo-text {
    font-size: 0.85rem;
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.5;
    margin-bottom: 12px;
}

.promo-highlight {
    color: #00f5ff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.promo-btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    border: 1px solid #00f5ff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    color: #00f5ff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

.promo-btn-left {
    background: rgba(0, 20, 40, 0.8);
}

.promo-btn-left:hover {
    background: rgba(0, 30, 50, 0.9);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
    transform: translateY(-2px);
    border-color: #00f5ff;
}

.promo-btn-right {
    background: rgba(0, 15, 35, 0.8);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5), 0 0 8px rgba(0, 245, 255, 0.4);
}

.promo-btn-right:hover {
    background: rgba(0, 25, 45, 0.9);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.7), 0 0 12px rgba(0, 245, 255, 0.6);
    transform: translateY(-2px);
    border-color: #0066ff;
}

.promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background: #00f5ff;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

.promo-banner-close.icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: rgba(50, 50, 50, 0.8);
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.promo-banner-close.icon:hover {
    background: rgba(70, 70, 70, 0.9);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .promo-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 24px;
    }

    .promo-banner-close.icon {
        top: 10px;
        right: 12px;
    }

    .promo-title {
        font-size: 1.3rem;
    }

    .promo-text {
        font-size: 0.85rem;
    }

    .promo-actions {
        flex-direction: column;
        width: 100%;
    }

    .promo-btn {
        width: 100%;
        text-align: center;
    }

    .promo-dots {
        margin-top: 16px;
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-badge:hover {
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
    opacity: 0.8;
}

.logo-shield {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00f5ff 0%, #00b3ff 30%, #00ff88 60%, #00b3ff 90%, #00f5ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-family: 'Orbitron', monospace;
    display: inline-block;
    animation: logoTextGradient 4s ease-in-out infinite;
    will-change: background-position;
    position: relative;
    filter: drop-shadow(0 0 2px rgba(0, 245, 255, 0.3)) 
            drop-shadow(0 0 3px rgba(0, 179, 255, 0.2));
}

@keyframes logoTextGradient {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.logo-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #0066ff);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
}

.nav-links {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 20px;
    position: relative;
    color: #00f5ff;
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
}

.nav-link:hover {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.8);
}

.nav-link.active {
    background: rgba(0, 245, 255, 0.18);
    border: 1px solid rgba(0, 245, 255, 0.6);
    color: #ffffff;
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.6);
}

.nav-actions { display: flex; gap: 10px; }

.nav-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.86rem;
    font-weight: 600;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
}

.nav-btn.primary {
    background: var(--btn-gradient);
    border-color: transparent;
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
    text-shadow: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-btn.primary:hover::before {
    left: 100%;
}

.nav-btn.primary:hover {
    background: linear-gradient(90deg, #33f7ff, #0066ff);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.9), 0 0 24px rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
    border-color: transparent;
}

.nav-btn.outline {
    border: 2px solid #00f5ff;
    color: #00f5ff;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.4);
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
}

.nav-btn.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.nav-btn.outline:hover::before {
    left: 100%;
}

.nav-btn.outline:hover {
    background: rgba(0, 245, 255, 0.16);
    border-color: #00f5ff;
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.8), 0 0 21px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
}

/* ---------- Mobile Menu Toggle ---------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(5, 5, 10, 0.8);
    border: 2px solid #00f5ff;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.4);
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #00f5ff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 245, 255, 0.6);
}

.mobile-menu-toggle:hover {
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.7);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* ---------- Mobile Sidebar Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    border-right: 3px solid #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.6), 10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    pointer-events: auto;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid #00f5ff;
    box-shadow: 0 2px 4px rgba(0, 245, 255, 0.3);
}

.mobile-logo-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-shield {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px #00f5ff);
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-logo-main {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #00f5ff, #0066ff, #00f5ff, #00b3ff, #00f5ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
    font-family: 'Orbitron', monospace;
    display: inline-block;
    animation: logoTextShimmer 3s linear infinite, logoTextGlow 2s ease-in-out infinite, logoTextScale 2.5s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
}

.mobile-logo-sub {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #00f5ff;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.8);
    font-family: 'Orbitron', monospace;
}

.mobile-logo-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #0066ff);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
    margin-top: 2px;
}

.mobile-menu-close {
    background: transparent;
    border: 2px solid #00f5ff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.9);
    font-weight: 300;
    line-height: 1;
}

.mobile-menu-close:hover {
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
    border-color: #00f5ff;
    color: #00f5ff;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.mobile-nav-link {
    padding: 14px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-link:hover {
    background: rgba(0, 245, 255, 0.15);
    border-left-color: #00f5ff;
    padding-left: 24px;
    color: #00f5ff;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.9);
}

.mobile-nav-link.active {
    background: rgba(0, 245, 255, 0.25);
    border-left-color: #00f5ff;
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 1);
    box-shadow: inset 0 0 12px rgba(0, 245, 255, 0.3);
}

/* ---------- Responsive: Hide Desktop Nav on Mobile ---------- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-inner {
        padding: 0 15px;
    }

    .logo-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 0.85rem;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 30px rgba(0, 245, 255, 1), 0 0 36px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 52px rgba(147, 112, 255, 0.95);
}

/* soft neon button (pricing contact) */
.btn-soft {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
}

.btn-soft:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(255, 122, 170, 1);
}

/* ---------- Hero (New Design) ---------- */
.hero-section-new {
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 50px;
    position: relative;
    background: linear-gradient(135deg, #000408 0%, #00060a 45%, #000a0f 75%, #000d0a 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.16), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.14), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.12), transparent 65%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 5px rgba(0, 245, 255, 0.9))
        drop-shadow(0 0 24px rgba(0, 102, 255, 0.8))
        drop-shadow(0 0 36px rgba(0, 255, 136, 0.7));
    animation: heroLogoFloat 4s ease-in-out infinite alternate, heroLogoGlow 3s ease-in-out infinite alternate;
    will-change: transform, filter;
    z-index: 2;
    position: relative;
}

@keyframes heroLogoFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes heroLogoGlow {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 5px rgba(0, 245, 255, 0.9))
            drop-shadow(0 0 24px rgba(0, 102, 255, 0.8))
            drop-shadow(0 0 36px rgba(0, 255, 136, 0.7));
    }
    50% { 
        filter: 
            drop-shadow(0 0 18px rgba(0, 245, 255, 1))
            drop-shadow(0 0 18px rgba(0, 102, 255, 0.95))
            drop-shadow(0 0 42px rgba(0, 255, 136, 0.8));
    }
}

.hero-logo-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent 70%);
    opacity: 0;
    animation: heroLogoGlowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroLogoGlowPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-text-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title-line {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #00b3ff 25%, #00ff88 50%, #00b3ff 75%, #00f5ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-family: 'Orbitron', monospace;
    line-height: 1.1;
    position: relative;
    filter: drop-shadow(0 0 2px rgba(0, 245, 255, 0.4)) 
            drop-shadow(0 0 4px rgba(0, 179, 255, 0.3));
    animation: heroTitleGradient 4s ease-in-out infinite;
    will-change: background-position;
}

@keyframes heroTitleGradient {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.hero-subtitle-new {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    color: #a5f3fc;
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.7);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-description-new {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    max-width: 750px;
    margin: 0 auto 40px;
    color: #ffffff;
    line-height: 1.8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.95;
}

.hero-btns-new {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-icon {
    font-size: 1.1rem;
    font-weight: 900;
}

.hero-btn-text {
    position: relative;
    z-index: 1;
}

.hero-btn-primary {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
    border-color: rgba(0, 245, 255, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 18px rgba(0, 245, 255, 0.7),
        0 0 24px rgba(0, 245, 255, 0.5),
        0 0 36px rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.hero-btn-secondary {
    background: rgba(0, 245, 255, 0.1);
    color: #00f5ff;
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 
        0 4px 12px rgba(0, 245, 255, 0.3),
        inset 0 0 5px rgba(0, 245, 255, 0.1);
}

.hero-btn-secondary:hover {
    background: rgba(0, 245, 255, 0.2);
    color: #ffffff;
    border-color: rgba(0, 245, 255, 0.8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 18px rgba(0, 245, 255, 0.5),
        0 0 24px rgba(0, 245, 255, 0.3),
        inset 0 0 9px rgba(0, 245, 255, 0.15);
}

.hero-about-card {
    max-width: 850px;
    width: 100%;
    margin: 50px auto 0;
    padding: 35px 40px;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.18), rgba(0, 4, 11, 0.85));
    border: 1px solid rgba(0, 245, 255, 0.35);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(0, 245, 255, 0.25),
        inset 0 0 18px rgba(0, 245, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.8), transparent);
    opacity: 0.6;
}

.hero-about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-about-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}

.hero-about-title-new {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.08em;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.5), 0 0 5px rgba(0, 102, 255, 0.3);
}

.hero-about-desc-new {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.95;
    text-align: center;
}

.hero-about-info-new {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-info-item:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 9px rgba(0, 245, 255, 0.3);
}

.hero-info-label {
    font-size: 0.85rem;
    color: #00f5ff;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
}

.hero-info-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-dashboard {
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    box-shadow: var(--btn-shadow);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-dashboard:hover::before {
    left: 100%;
}

.btn-dashboard:hover {
    background: linear-gradient(90deg, #00f5ff, #0066ff);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.9), 0 0 24px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.btn-get-started {
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--btn-gradient);
    border: none;
    color: var(--btn-text-color);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    box-shadow: var(--btn-shadow);
    text-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-get-started:hover::before {
    left: 100%;
}

.btn-get-started:hover {
    background: var(--btn-gradient);
    border-color: transparent;
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.9), 0 0 21px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
}

/* ---------- Generic Sections ---------- */
.section-page {
    padding: 80px 0 70px;
}

.section-page-inner {
    width: min(980px, 100% - 32px);
    margin-inline: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 26px;
}

.section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.section-header p {
    font-size: 0.94rem;
    color: #fbd6e7;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card {
        min-width: 0;
        width: 100%;
    }
    
    .section-page {
        padding: 60px 0 50px;
    }
    
    .section-page-inner {
        width: calc(100% - 32px);
        padding: 0 16px;
    }
    
    /* Ensure content is visible on mobile even if reveal animation doesn't trigger */
    .section-page [data-reveal] {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .section-page .grid-3 {
        display: grid !important;
        visibility: visible !important;
    }
    
    .section-page .card {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.card {
    background: radial-gradient(circle at top left, rgba(0, 255, 136, 0.12), #000408);
    border-radius: 26px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(0, 245, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.25), rgba(0, 102, 255, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(0, 245, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.35);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.4));
}

.card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 12px rgba(0, 255, 170, 0.6);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.7));
    border-color: rgba(0, 245, 255, 0.8);
}

.card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 255, 136, 0.28), #00060a);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.95);
    border-color: rgba(0, 245, 255, 0.98);
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.card p {
    font-size: 0.92rem;
    color: #f0e0e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 18px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    background: #000408;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 170, 0.6);
    padding: 8px 10px;
    color: #ffe5f0;
    font-size: 0.9rem;
    margin-bottom: 8px;
    outline: none;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #ff6b9a;
    box-shadow: 0 0 0 1px rgba(255, 90, 130, 0.5);
}

.contact-textarea {
    min-height: 110px;
    resize: vertical;
}

/* ---------- Contact Hub Page ---------- */
.contact-hub-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    min-height: calc(100vh - 200px);
}

.contact-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-hub-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hub-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
    position: relative;
}

.contact-hub-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-hub-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-hub-section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-hub-section-title p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-info-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1), 0 4px 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.contact-info-card-community {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.05);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.05);
    color: #00d9ff;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-main {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    word-break: break-all;
}

.contact-info-desc {
    font-size: 0.875rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.contact-community-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.5);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-community-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3), 0 0 15px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.contact-community-btn svg {
    width: 16px;
    height: 16px;
}

.contact-hub-right {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-form-header svg {
    color: #00d9ff;
    width: 20px;
    height: 20px;
}

.contact-form-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    background: rgba(5, 8, 16, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: rgba(0, 217, 255, 0.6);
    background: rgba(5, 8, 16, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1), 0 0 0 3px rgba(0, 255, 136, 0.05);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

.contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.5);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form-submit:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.contact-form-submit svg {
    width: 18px;
    height: 18px;
}

.contact-office-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-office-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.contact-office-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-office-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1), 0 4px 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.contact-office-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.05);
    color: #00d9ff;
}

.contact-office-icon svg {
    width: 24px;
    height: 24px;
}

.contact-office-content {
    flex: 1;
}

.contact-office-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-office-main {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-office-desc {
    font-size: 0.875rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* ---------- Privacy Policy Page ---------- */
.privacy-policy-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    min-height: calc(100vh - 200px);
}

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.privacy-policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-policy-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.privacy-policy-icon {
    width: 64px;
    height: 64px;
    color: #00d9ff;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
}

.privacy-policy-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 60px;
}

.privacy-policy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
    position: relative;
}

.privacy-policy-title-white {
    color: #ffffff;
}

.privacy-policy-title-accent {
    color: #ffffff;
}

.privacy-policy-updated {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-top: 8px;
}

.privacy-policy-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.privacy-policy-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1), 0 4px 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.privacy-policy-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.privacy-policy-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.05);
    color: #00d9ff;
}

.privacy-policy-card-icon svg {
    width: 24px;
    height: 24px;
}

.privacy-policy-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-policy-card-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.privacy-policy-card-content p {
    margin: 0 0 16px 0;
}

.privacy-policy-card-content p:last-child {
    margin-bottom: 0;
}

.privacy-policy-item {
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 2px solid rgba(0, 217, 255, 0.2);
}

.privacy-policy-item:last-child {
    margin-bottom: 0;
}

.privacy-policy-item-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-policy-item p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

.privacy-policy-link {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-policy-link:hover {
    color: #00ff88;
    border-bottom-color: rgba(0, 255, 136, 0.5);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.privacy-policy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
    font-style: italic;
}

/* ---------- Refund Policy Page ---------- */
.refund-policy-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    min-height: calc(100vh - 200px);
}

.refund-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.refund-policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.refund-policy-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.refund-policy-icon {
    width: 64px;
    height: 64px;
    color: #00d9ff;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
}

.refund-policy-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 60px;
}

.refund-policy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
    position: relative;
}

.refund-policy-title-white {
    color: #ffffff;
}

.refund-policy-title-accent {
    color: #00d9ff;
}

.refund-policy-subtitle {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-top: 8px;
}

.refund-policy-notice-card {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.refund-policy-notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.refund-policy-notice-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d9ff;
}

.refund-policy-notice-icon svg {
    width: 24px;
    height: 24px;
}

.refund-policy-notice-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d9ff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refund-policy-notice-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.refund-policy-notice-content strong {
    color: #ffffff;
    font-weight: 700;
}

.refund-policy-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.refund-policy-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1), 0 4px 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.refund-policy-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.refund-policy-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.05);
    color: #00d9ff;
}

.refund-policy-card-icon svg {
    width: 24px;
    height: 24px;
}

.refund-policy-icon-success {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    color: #00ff88;
}

.refund-policy-icon-error {
    border-color: rgba(255, 75, 108, 0.3);
    background: rgba(255, 75, 108, 0.05);
    color: #ff4b6c;
}

.refund-policy-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refund-policy-card-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.refund-policy-card-content p {
    margin: 0 0 16px 0;
}

.refund-policy-card-content p:last-child {
    margin-bottom: 0;
}

.refund-policy-card-content strong {
    color: #ffffff;
    font-weight: 700;
}

.refund-policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    padding-left: 24px;
}

.refund-policy-list li {
    position: relative;
    margin-bottom: 12px;
    color: #b0b0b0;
    line-height: 1.6;
    padding-left: 20px;
}

.refund-policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.refund-policy-list-error li::before {
    color: #ff4b6c;
}

.refund-policy-list li strong {
    color: #ffffff;
    font-weight: 700;
}

.refund-policy-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.refund-policy-timeline-box {
    background: rgba(5, 8, 16, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.refund-policy-timeline-box:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(5, 8, 16, 0.95);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.1);
}

.refund-policy-timeline-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00d9ff;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.refund-policy-timeline-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.refund-policy-conclusion {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.refund-policy-conclusion p {
    margin-bottom: 12px;
}

.refund-policy-conclusion p:last-child {
    margin-bottom: 0;
}

.refund-policy-conclusion strong {
    color: #ffffff;
    font-weight: 700;
}

/* ---------- Terms of Service Page ---------- */
.terms-of-service-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    min-height: calc(100vh - 200px);
}

.terms-of-service-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.terms-of-service-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.terms-of-service-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 60px;
}

.terms-of-service-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.terms-of-service-icon {
    width: 64px;
    height: 64px;
    color: #00d9ff;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
}

.terms-of-service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(0, 217, 255, 0.4),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
    position: relative;
}

.terms-of-service-title-white {
    color: #ffffff;
}

.terms-of-service-title-accent {
    color: #00d9ff;
}

.terms-of-service-updated {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-top: 8px;
}

.terms-of-service-card {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.terms-of-service-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1), 0 4px 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.terms-of-service-card-prohibited {
    border-color: rgba(255, 75, 108, 0.2);
}

.terms-of-service-card-prohibited:hover {
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 0 4px 20px rgba(255, 75, 108, 0.1);
}

.terms-of-service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.terms-of-service-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.05);
    color: #00d9ff;
}

.terms-of-service-card-icon svg {
    width: 24px;
    height: 24px;
}

.terms-of-service-icon-prohibited {
    border-color: rgba(255, 75, 108, 0.3);
    background: rgba(255, 75, 108, 0.05);
    color: #ff4b6c;
}

.terms-of-service-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-of-service-card-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.terms-of-service-card-content p {
    margin: 0 0 16px 0;
}

.terms-of-service-card-content p:last-child {
    margin-bottom: 0;
}

.terms-of-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 24px;
}

.terms-of-service-list li {
    position: relative;
    margin-bottom: 12px;
    color: #b0b0b0;
    line-height: 1.6;
    padding-left: 20px;
}

.terms-of-service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-size: 1.2rem;
    line-height: 1.4;
}

.terms-of-service-list-prohibited li::before {
    color: #ff4b6c;
}

.terms-of-service-contact-card {
    background: rgba(5, 8, 16, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.terms-of-service-contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-of-service-contact-content {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.terms-of-service-link {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.terms-of-service-link:hover {
    color: #00ff88;
    border-bottom-color: rgba(0, 255, 136, 0.5);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.terms-of-service-footer {
    text-align: left;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.7;
}

.terms-of-service-footer p {
    margin: 0;
}

/* Terms of Service Responsive */
@media (max-width: 768px) {
    .terms-of-service-section {
        padding: 40px 0 60px;
    }

    .terms-of-service-container {
        padding: 0 20px;
    }

    .terms-of-service-header-top {
        padding-right: 0;
        padding-bottom: 50px;
        flex-direction: column;
        gap: 15px;
    }

    .terms-of-service-language-toggle {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 20px;
        width: 100%;
    }

    .terms-of-service-title {
        font-size: 2.2rem;
    }

    .terms-of-service-card {
        padding: 24px;
    }

    .terms-of-service-card-title {
        font-size: 1.3rem;
    }

    .terms-of-service-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .terms-of-service-contact-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .terms-of-service-title {
        font-size: 1.8rem;
    }

    .terms-of-service-icon {
        width: 48px;
        height: 48px;
    }
}

/* Refund Policy Responsive */
@media (max-width: 768px) {
    .refund-policy-section {
        padding: 40px 0 60px;
    }

    .refund-policy-container {
        padding: 0 20px;
    }

    .refund-policy-header-top {
        padding-right: 0;
        padding-bottom: 50px;
        flex-direction: column;
        gap: 15px;
    }

    .refund-policy-language-toggle {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 20px;
        width: 100%;
    }

    .refund-policy-title {
        font-size: 2.2rem;
    }

    .refund-policy-card {
        padding: 24px;
    }

    .refund-policy-card-title {
        font-size: 1.3rem;
    }

    .refund-policy-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .refund-policy-timeline-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .refund-policy-title {
        font-size: 1.8rem;
    }

    .refund-policy-icon {
        width: 48px;
        height: 48px;
    }
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0 60px;
    }

    .privacy-policy-container {
        padding: 0 20px;
    }

    .privacy-policy-header-top {
        padding-right: 0;
        padding-bottom: 50px;
        flex-direction: column;
        gap: 15px;
    }

    .privacy-policy-language-toggle {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 20px;
        width: 100%;
    }

    .privacy-policy-title {
        font-size: 2.2rem;
    }

    .privacy-policy-card {
        padding: 24px;
    }

    .privacy-policy-card-title {
        font-size: 1.3rem;
    }

    .privacy-policy-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-title {
        font-size: 1.8rem;
    }

    .privacy-policy-icon {
        width: 48px;
        height: 48px;
    }
}

/* Contact Hub Responsive */
@media (max-width: 1024px) {
    .contact-hub-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .contact-hub-section {
        padding: 40px 0 60px;
    }

    .contact-hub-container {
        padding: 0 20px;
    }

    .contact-hub-title {
        font-size: 2.2rem;
    }

    .contact-hub-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-office-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hub-title {
        font-size: 1.8rem;
    }

    .contact-info-card,
    .contact-office-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon,
    .contact-office-icon {
        margin: 0 auto;
    }
}

/* FAQ small (FAQ page) */
.faq-item {
    background: rgba(0, 4, 8, 0.92);
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 245, 255, 0.5);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item strong { font-size: 0.96rem; }
.faq-item span   { font-size: 0.9rem; color: #e0f7ff; }

/* ---------- Auth ---------- */
.auth-section {
    padding: 80px 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-box {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.22), #000408);
    border-radius: 22px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(0, 245, 255, 0.6);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.95);
}

.form-box h2 { text-align: center; margin-bottom: 4px; }

.form-desc {
    text-align: center;
    font-size: 0.9rem;
    color: #e0f7ff;
    margin-bottom: 18px;
}

.input-field {
    width: 100%;
    background: rgba(0, 4, 8, 0.96);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.7);
    padding: 9px 11px;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 10px;
    outline: none;
}

.input-field:focus {
    border-color: #00f5ff;
    box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.6);
}

.form-extra {
    margin-top: 10px;
    font-size: 0.85rem;
    text-align: left;
}

.form-extra a { color: #00f5ff; }
.form-extra a:hover { text-decoration: underline; }

/* ---------- Auth Pages (Login/Register) - New Design ---------- */
.auth-section-new {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #0a0e1a;
}

.auth-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 0, rgba(0, 150, 255, 0.1), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(0, 255, 150, 0.08), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.4;
    pointer-events: none;
    filter: blur(8px);
    animation: bgPulse 14s ease-in-out infinite alternate;
    z-index: -2;
}

@keyframes bgPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

.auth-container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.auth-welcome-text {
    font-size: 1.1rem;
    color: #90ee90;
    text-align: center;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 10px;
}

.auth-logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 5px rgba(0, 245, 255, 0.9))
        drop-shadow(0 0 24px rgba(0, 102, 255, 0.7))
        drop-shadow(0 0 36px rgba(0, 255, 136, 0.5));
    animation: authLogoFloat 4s ease-in-out infinite alternate, authLogoGlow 3s ease-in-out infinite alternate;
    z-index: 2;
    position: relative;
}

@keyframes authLogoFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes authLogoGlow {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 5px rgba(0, 245, 255, 0.9))
            drop-shadow(0 0 24px rgba(0, 102, 255, 0.7))
            drop-shadow(0 0 36px rgba(0, 255, 136, 0.5));
    }
    50% { 
        filter: 
            drop-shadow(0 0 18px rgba(0, 245, 255, 1))
            drop-shadow(0 0 18px rgba(0, 102, 255, 0.9))
            drop-shadow(0 0 42px rgba(0, 255, 136, 0.7));
    }
}

.auth-logo-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent 70%);
    opacity: 0;
    animation: authLogoGlowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes authLogoGlowPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.auth-form-box {
    width: 100%;
    background: #1a1f2e;
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(0, 150, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.auth-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.6), transparent);
    opacity: 0.4;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.9;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-input-icon-svg {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    color: #b0b0b0;
    z-index: 1;
    pointer-events: none;
}

.auth-input {
    flex: 1;
    width: 100%;
    padding: 14px 16px 14px 40px;
    background: #1a1f2e;
    border: 1px solid rgba(176, 176, 176, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.auth-input[type="password"] {
    padding-right: 50px;
}

.auth-input-group:focus-within .auth-input-icon-svg {
    color: #00ff96;
}

.auth-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
}

.auth-password-toggle:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.1);
}

.auth-password-icon {
    font-size: 1.1rem;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.auth-password-toggle.active .auth-password-icon {
    color: #00ff96;
}

.auth-input::placeholder {
    color: rgba(176, 176, 176, 0.5);
}

.auth-input:focus {
    outline: none;
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 
        0 0 5px rgba(0, 150, 255, 0.3);
    background: #1a1f2e;
    color: #ffffff;
}

.auth-remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -8px 0 8px 0;
    padding-right: 0;
}

.auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.auth-checkbox-label:hover {
    opacity: 0.9;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(0, 4, 8, 0.9);
    border: 2px solid rgba(0, 245, 255, 0.55);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.auth-checkbox:checked {
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    border-color: rgba(0, 245, 255, 0.8);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
}

.auth-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.auth-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.3);
}

.auth-checkbox-text {
    font-size: 0.9rem;
    color: #00f5ff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.auth-checkbox-label:hover .auth-checkbox-text {
    color: #ffffff;
}

.light-mode .auth-checkbox {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 75, 108, 0.3);
}

.light-mode .auth-checkbox:checked {
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 0 0 6px rgba(255, 75, 108, 0.4);
}

.light-mode .auth-checkbox:focus {
    box-shadow: 0 0 0 3px rgba(255, 75, 108, 0.2);
}

.light-mode .auth-checkbox-text {
    color: #555555;
}

.light-mode .auth-checkbox-label:hover .auth-checkbox-text {
    color: #1a1a1a;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid #0096ff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    cursor: pointer;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn-arrow {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.auth-btn-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.auth-btn-primary {
    background: #1a1f2e;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
    border-color: #0096ff;
}

.auth-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 18px rgba(0, 150, 255, 0.5),
        0 0 24px rgba(0, 150, 255, 0.3);
    background: #1a1f2e;
    border-color: #00ff96;
}

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.auth-link {
    color: #0096ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.auth-link:hover {
    color: #00ff96;
    text-shadow: 0 0 6px rgba(0, 150, 255, 0.8);
}

.auth-divider {
    color: rgba(176, 176, 176, 0.5);
}

.auth-footer-text {
    color: #b0b0b0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-footer-text .auth-link {
    color: #0096ff;
    font-weight: 600;
}

.auth-footer-text .auth-link:hover {
    color: #00ff96;
    text-shadow: 0 0 6px rgba(0, 150, 255, 0.8);
}

.auth-legal {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.auth-legal-text {
    color: #b0b0b0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-legal-text .auth-link {
    color: #0096ff;
    font-weight: 500;
}

.auth-legal-text .auth-link:hover {
    color: #00ff96;
    text-shadow: 0 0 6px rgba(0, 150, 255, 0.8);
}

/* Light Mode Auth Styles */
.light-mode .auth-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.light-mode .auth-bg-pattern {
    background: 
        radial-gradient(circle at 20% 0, rgba(0, 245, 255, 0.06), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(0, 102, 255, 0.05), transparent 65%);
}

.light-mode .auth-logo {
    filter: 
        drop-shadow(0 0 9px rgba(0, 245, 255, 0.6))
        drop-shadow(0 0 18px rgba(0, 102, 255, 0.5))
        drop-shadow(0 0 45px rgba(0, 255, 136, 0.4));
}

.light-mode .auth-form-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.35);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.1),
        0 0 18px rgba(255, 75, 108, 0.2),
        inset 0 0 18px rgba(255, 75, 108, 0.03);
}

.light-mode .auth-title {
    color: #c41e3a;
    text-shadow: 
        0 0 5px rgba(196, 30, 58, 0.6),
        0 0 9px rgba(196, 30, 58, 0.4);
}

.light-mode .auth-subtitle {
    color: #666666;
    opacity: 1;
}

.light-mode .auth-input-icon {
    background: rgba(255, 75, 108, 0.1);
    border-color: rgba(255, 75, 108, 0.25);
}

.light-mode .auth-input-group:focus-within .auth-input-icon {
    background: rgba(255, 75, 108, 0.18);
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 0 0 5px rgba(255, 75, 108, 0.5);
}

.light-mode .auth-input {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 75, 108, 0.3);
    color: #1a1a1a;
}

.light-mode .auth-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.light-mode .auth-input:focus {
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 
        0 0 5px rgba(255, 75, 108, 0.3),
        inset 0 0 5px rgba(255, 75, 108, 0.05);
    background: rgba(255, 255, 255, 1);
    color: #1a1a1a;
}

.light-mode .auth-btn-primary {
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    color: #ffffff;
    box-shadow: 
        0 4px 12px rgba(255, 75, 108, 0.4),
        0 0 18px rgba(255, 75, 108, 0.25);
}

.light-mode .auth-btn-primary:hover {
    box-shadow: 
        0 8px 18px rgba(255, 75, 108, 0.6),
        0 0 24px rgba(255, 75, 108, 0.4),
        0 0 36px rgba(255, 75, 108, 0.3);
}

.light-mode .auth-link {
    color: #aa1a4d;
}

.light-mode .auth-link:hover {
    color: #8b153d;
    text-shadow: 0 0 5px rgba(170, 26, 77, 0.6);
}

.light-mode .auth-footer-text {
    color: #4a4a4a;
}

.light-mode .auth-footer-text .auth-link {
    color: #c41e3a;
}

.light-mode .auth-footer-text .auth-link:hover {
    color: #aa1a4d;
    text-shadow: 0 0 5px rgba(196, 30, 58, 0.6);
}

.light-mode .auth-password-toggle {
    background: rgba(255, 75, 108, 0.1);
    border-color: rgba(255, 75, 108, 0.25);
}

.light-mode .auth-password-toggle:hover {
    background: rgba(255, 75, 108, 0.2);
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 0 0 5px rgba(255, 75, 108, 0.4);
}

/* ---------- Neon sections (pricing / features / updates) ---------- */
.neo-section {
    padding-top: 40px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%);
}

.neo-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
    color: #ffffff;
}

.neo-section .section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #e0f7ff;
    margin-bottom: 30px;
}

/* ---------- BX Home - Gaiya-style Feature Cards ---------- */
.bx-features-section {
    position: relative;
}

.bx-features-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.bx-feature-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 22px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(0, 245, 255, 0.6);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-feature-card[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}

.bx-feature-card.reveal-visible {
    animation: featureCardFadeIn 0.6s ease-out forwards;
}

.bx-feature-card.reveal-visible:nth-child(1) { animation-delay: 0.1s; }
.bx-feature-card.reveal-visible:nth-child(2) { animation-delay: 0.2s; }
.bx-feature-card.reveal-visible:nth-child(3) { animation-delay: 0.3s; }
.bx-feature-card.reveal-visible:nth-child(4) { animation-delay: 0.4s; }
.bx-feature-card.reveal-visible:nth-child(5) { animation-delay: 0.5s; }
.bx-feature-card.reveal-visible:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bx-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bx-feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.28), #00060f);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9),
        0 0 36px rgba(0, 102, 255, 0.5);
}

.bx-feature-card:hover::before {
    opacity: 1;
    animation: cardGlowRotate 3s linear infinite;
}

@keyframes cardGlowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bx-feature-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, rgba(0, 245, 255, 0.8), rgba(0, 102, 255, 0.6));
    box-shadow:
        0 0 18px rgba(0, 245, 255, 0.9),
        0 0 32px rgba(0, 102, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.bx-feature-card:hover .bx-feature-icon-wrap {
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow:
        0 0 9px rgba(0, 245, 255, 1),
        0 0 27px rgba(0, 102, 255, 0.9),
        0 0 36px rgba(0, 245, 255, 0.6);
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow:
            0 0 9px rgba(0, 245, 255, 1),
            0 0 27px rgba(0, 102, 255, 0.9),
            0 0 36px rgba(0, 245, 255, 0.6);
    }
    50% {
        box-shadow:
            0 0 21px rgba(0, 245, 255, 1),
            0 0 55px rgba(0, 102, 255, 1),
            0 0 75px rgba(0, 245, 255, 0.8);
    }
}

.bx-feature-icon {
    font-size: 1.3rem;
}

.bx-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.bx-feature-card:hover .bx-feature-title {
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.8), 0 0 9px rgba(0, 102, 255, 0.5);
    transform: translateX(3px);
}

.bx-feature-desc {
    font-size: 0.9rem;
    color: #e0f7ff;
    line-height: 1.7;
}

/* ---------- BX Home - Stats Strip ---------- */
.bx-stats-section {
    padding-top: 10px;
}

.bx-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.bx-stat-card {
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.2), #000408);
    border-radius: 20px;
    padding: 18px 16px;
    border: 1px solid rgba(0, 245, 255, 0.7);
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
}

.bx-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
}

.bx-stat-label {
    margin-top: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e0f7ff;
}

/* ---------- BX Home - Testimonials ---------- */
.bx-testimonials-section {
    position: relative;
}

.bx-testimonials-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* ---------- BX Home - Feedback Gallery ---------- */
.bx-feedback-gallery-section {
    position: relative;
    padding-top: 20px;
}

.bx-feedback-gallery {
    margin-top: 32px;
}

.bx-feedback-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 60px;
}

.bx-feedback-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    will-change: scroll-position;
}

.bx-feedback-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.bx-feedback-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.2));
    border: 2px solid rgba(0, 245, 255, 0.6);
    color: #00f5ff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

.bx-feedback-carousel-btn:hover {
    background: radial-gradient(circle, rgba(0, 245, 255, 0.5), rgba(0, 102, 255, 0.4));
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.bx-feedback-carousel-prev {
    left: 10px;
}

.bx-feedback-carousel-next {
    right: 10px;
}

.bx-feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.bx-feedback-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border: 1px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex: 0 0 320px; /* Fixed width for carousel items */
    min-width: 0;
}

.bx-feedback-image-card:nth-child(1) { animation-delay: 0.1s; }
.bx-feedback-image-card:nth-child(2) { animation-delay: 0.2s; }
.bx-feedback-image-card:nth-child(3) { animation-delay: 0.3s; }
.bx-feedback-image-card:nth-child(4) { animation-delay: 0.4s; }
.bx-feedback-image-card:nth-child(5) { animation-delay: 0.5s; }
.bx-feedback-image-card:nth-child(6) { animation-delay: 0.6s; }
.bx-feedback-image-card:nth-child(7) { animation-delay: 0.7s; }
.bx-feedback-image-card:nth-child(8) { animation-delay: 0.8s; }
.bx-feedback-image-card:nth-child(9) { animation-delay: 0.9s; }
.bx-feedback-image-card:nth-child(10) { animation-delay: 1.0s; }
.bx-feedback-image-card:nth-child(11) { animation-delay: 1.1s; }
.bx-feedback-image-card:nth-child(12) { animation-delay: 1.2s; }


.bx-feedback-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000408;
}

.bx-feedback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bx-feedback-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 4, 8, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-feedback-image-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.8));
}

.bx-feedback-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.8);
    box-shadow: 
        0 18px 36px rgba(0, 0, 0, 0.95),
        0 0 24px rgba(0, 245, 255, 0.6);
}

.bx-feedback-image-card:hover .bx-feedback-image {
    transform: scale(1.1);
}

.bx-feedback-image-card:hover .bx-feedback-image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .bx-feedback-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .bx-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .bx-product-card {
        padding: 20px;
        min-height: auto;
    }
    
    .bx-products-section {
        padding: 0;
    }
    
    .bx-main-content {
        padding: 12px;
    }
}

/* Feedback Image Lightbox */
.bx-feedback-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}

.bx-feedback-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bx-feedback-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 245, 255, 0.3);
}

.bx-feedback-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(0, 245, 255, 0.2);
    border: 2px solid rgba(0, 245, 255, 0.5);
    color: #00f5ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.8);
}

.bx-feedback-lightbox-close:hover {
    background: rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}

.bx-testimonial-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.18), #000408);
    border-radius: 22px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(0, 245, 255, 0.7);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-testimonial-card[data-reveal] {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.bx-testimonial-card.reveal-visible {
    animation: testimonialCardFadeIn 0.6s ease-out forwards;
}

.bx-testimonial-card.reveal-visible:nth-child(1) { animation-delay: 0.1s; }
.bx-testimonial-card.reveal-visible:nth-child(2) { animation-delay: 0.2s; }
.bx-testimonial-card.reveal-visible:nth-child(3) { animation-delay: 0.3s; }
.bx-testimonial-card.reveal-visible:nth-child(4) { animation-delay: 0.4s; }
.bx-testimonial-card.reveal-visible:nth-child(5) { animation-delay: 0.5s; }
.bx-testimonial-card.reveal-visible:nth-child(6) { animation-delay: 0.6s; }

@keyframes testimonialCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bx-testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bx-testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.28), #00060f);
    border-color: rgba(0, 245, 255, 0.95);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9),
        0 0 36px rgba(0, 102, 255, 0.5);
}

.bx-testimonial-card:hover::before {
    opacity: 1;
    animation: cardGlowRotate 3s linear infinite;
}

.bx-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bx-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, rgba(0, 245, 255, 0.8), rgba(0, 102, 255, 0.6));
    color: #001016;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: avatarFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.05);
    }
}

.bx-testimonial-card:hover .bx-testimonial-avatar {
    transform: translateY(-6px) scale(1.15) rotate(5deg);
    box-shadow:
        0 0 5px rgba(0, 245, 255, 0.9),
        0 0 21px rgba(0, 102, 255, 0.7);
    animation: avatarPulse 1.5s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow:
            0 0 5px rgba(0, 245, 255, 0.9),
            0 0 21px rgba(0, 102, 255, 0.7);
    }
    50% {
        box-shadow:
            0 0 18px rgba(0, 245, 255, 1),
            0 0 27px rgba(0, 102, 255, 0.9);
    }
}

.bx-testimonial-meta {
    flex: 1;
}

.bx-testimonial-name {
    font-size: 0.98rem;
    margin: 0;
    color: #ffffff;
    transition: all 0.3s ease;
}

.bx-testimonial-card:hover .bx-testimonial-name {
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.8);
    transform: translateX(3px);
}

.bx-testimonial-role {
    font-size: 0.8rem;
    color: #e0f7ff;
}

.bx-testimonial-rating {
    font-size: 0.9rem;
    color: #fed7aa;
}

.bx-testimonial-text {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.7;
}

.bx-testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 0.75rem;
}

.bx-testimonial-date {
    color: #e0f7ff;
}

.bx-testimonial-tag {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bx-testimonial-card:hover .bx-testimonial-tag {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.4);
}

.bx-testimonial-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bx-testimonial-card:hover .bx-testimonial-tag::before {
    left: 100%;
}

.bx-testimonial-tag.success {
    border-color: rgba(34, 197, 94, 0.8);
    color: #bbf7d0;
}

.bx-testimonial-tag.verified {
    border-color: rgba(59, 130, 246, 0.8);
    color: #bfdbfe;
}

.bx-testimonial-tag.lifetime {
    border-color: rgba(250, 204, 21, 0.9);
    color: #fef9c3;
}

.bx-testimonial-tag.feedback {
    border-color: rgba(244, 114, 182, 0.9);
    color: #fbcfe8;
}

/* Features comparison cards */
.neo-features-compare { }

.neo-fc-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.neo-fc-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), #000408);
    border-radius: 24px;
    padding: 26px 22px 26px;
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(0, 245, 255, 0.55);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.neo-fc-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    text-align: center;
    color: #ffffff;
}

.neo-fc-tag {
    display: inline-flex;
    margin: 10px auto 18px;
    padding: 7px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0, 245, 255, 0.65);
    background: radial-gradient(circle at top, rgba(0, 245, 255, 0.8), rgba(0, 102, 255, 0.6));
    color: #001016;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.7);
    font-size: 0.9rem;
}

.neo-fc-list {
    list-style: none;
    margin-top: 6px;
}

.neo-fc-item {
    display: flex;
    align-items: center;
    font-size: 0.94rem;
    color: #ffe4f2;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.neo-fc-item:last-child { border-bottom: none; }

.neo-fc-icon {
    width: 18px;
    display: inline-flex;
    justify-content: center;
    margin-right: 10px;
    font-size: 1rem;
}

.neo-fc-icon.ok { color: #4bffb7; }
.neo-fc-icon.no { color: #ff566f; }

.neo-fc-cta { margin-top: 18px; text-align: center; }

/* Pricing section */
.neo-pricing { }

/* Category Selection Cards */
.neo-category-grid {
    max-width: 1400px;
    margin: 24px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.neo-pricing .container {
    max-width: 1400px;
    width: min(1400px, 100% - 32px);
}

.neo-category-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.18), #000408);
    border-radius: 28px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

/* Category images (External / Internal / Mousebot / Optimization) */
.neo-category-image-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 0 22px rgba(0, 245, 255, 0.65);
}

.neo-category-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;       /* crop to keep all cards same size */
    object-position: center; /* keep focus centered */
}

.neo-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.28), #00060f);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.95), 0 0 21px rgba(0, 245, 255, 0.7);
    border-color: rgba(0, 245, 255, 0.8);
}

.neo-category-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8), 0 0 5px rgba(0, 102, 255, 0.5);
    text-align: center;
}

.neo-category-card[data-category="optimization"] .neo-category-title {
    white-space: normal;
    font-size: 1.6rem;
}

.neo-category-badge {
    display: block;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(120deg, #00f5ff, #0066ff);
    color: #001016;
    box-shadow: 0 8px 12px rgba(0, 245, 255, 0.6);
    width: fit-content;
    text-align: center;
}

.neo-category-features {
    list-style: none;
    margin: 20px 0 auto;
    padding: 0;
    flex-grow: 1;
}

.neo-category-features li {
    font-size: 0.94rem;
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.neo-category-prices {
    margin-top: 18px;
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 245, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.neo-category-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ffffff;
}

.neo-category-price-label {
    opacity: 0.85;
}

.neo-category-price-value {
    font-weight: 600;
}

.neo-category-price-note {
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}

.neo-category-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    background: linear-gradient(120deg, #00f5ff, #0066ff);
    color: #001016;
    box-shadow: 0 12px 19px rgba(0, 245, 255, 0.7);
    margin-top: auto;
}

.neo-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 245, 255, 0.9);
}

.neo-packages-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.neo-pricing-back {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.neo-pricing-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 245, 255, 0.2);
    color: #00f5ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.18s ease, transform 0.18s ease;
    border: 1px solid rgba(0, 245, 255, 0.4);
    cursor: pointer;
    font-family: inherit;
}

.neo-pricing-back-btn:hover {
    background: rgba(0, 245, 255, 0.3);
    transform: translateX(-2px);
}

.neo-pricing-container-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.18), #000408);
    border-radius: 28px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    margin-bottom: 32px;
}

.neo-pricing-container-card:last-child {
    margin-bottom: 0;
}

.neo-pricing-container-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
    color: #ffffff;
}

.neo-pricing-container-subtitle {
    font-size: 0.95rem;
    color: #e0f7ff;
    margin-bottom: 24px;
}

.neo-price-grid {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 1024px) {
    .neo-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .neo-category-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .neo-category-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .neo-price-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Pricing cards (all same as previous highlight card) --- */
/* --- Pricing cards (normal) --- */
.neo-price-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 26px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(0, 245, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    display: flex;
    flex-direction: column;
}

/* highlight class දැනට extra එකක් නෑ – future use */
.neo-price-card.highlight { }



.neo-price-top {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.neo-price-main {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
}

.neo-price-unit {
    font-size: 0.9rem;
    color: #e0f7ff;
}

.neo-price-alt {
    font-size: 0.95rem;
    color: #e0f7ff;
    margin-bottom: 8px;
}

.neo-price-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.neo-price-features {
    list-style: none;
    font-size: 0.88rem;
    color: #ffffff;
    margin: 10px 0 18px;
}

.neo-price-features li { margin-bottom: 6px; }

.neo-check {
    color: #4bffb7;
    margin-right: 8px;
}

.neo-price-cta {
    text-align: center;
    margin-top: auto;
}

/* hover වෙද්දි popup + strong glow */
.neo-fc-card:hover,
.neo-price-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), #00060f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}


.neo-price-card.highlight:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.98),
        0 0 24px rgba(0, 245, 255, 0.9);
}

/* Updates + FAQ big */
.neo-updates-faq { }

.neo-updates-grid {
    max-width: 1050px;
    margin: 16px auto 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.neo-update-card {
    background: radial-gradient(circle at top left, rgba(255, 80, 130, 0.16), #000408);
    border-radius: 20px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 160, 195, 0.65);
    box-shadow: 0 16px 36px rgba(0,0,0,0.9);
}

.neo-update-title { font-size: 1rem; margin-bottom: 6px; }
.neo-update-desc  { font-size: 0.9rem; color: #ffe4f5; }

.faq-header-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.neo-faq-title {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
}

.faq-language-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.faq-toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
    height: 36px;
    background: rgba(20, 10, 15, 0.9);
    border-radius: 18px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.faq-toggle-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 9px rgba(0, 245, 255, 0.6),
        0 0 9px rgba(0, 102, 255, 0.4),
        inset 0 0 6px rgba(255, 255, 255, 0.2);
    z-index: 2;
    left: 3px;
}

.faq-toggle-track.active-si .faq-toggle-indicator {
    left: calc(100% - 33px);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.faq-toggle-label {
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0 8px;
}

.faq-toggle-label-en {
    color: #ffffff;
}

.faq-toggle-label-si {
    color: rgba(200, 200, 200, 0.6);
}

.faq-toggle-track.active-si .faq-toggle-label-en {
    color: rgba(200, 200, 200, 0.6);
}

.faq-toggle-track.active-si .faq-toggle-label-si {
    color: #ffffff;
}

.faq-toggle-track:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
}

.faq-toggle-label:hover {
    cursor: pointer;
}

/* Privacy Policy Language Toggle */
.privacy-policy-language-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.privacy-policy-toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
    height: 36px;
    background: rgba(20, 10, 15, 0.9);
    border-radius: 18px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.privacy-policy-toggle-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 9px rgba(0, 245, 255, 0.6),
        0 0 9px rgba(0, 102, 255, 0.4),
        inset 0 0 6px rgba(255, 255, 255, 0.2);
    z-index: 2;
    left: 3px;
}

.privacy-policy-toggle-track.active-si .privacy-policy-toggle-indicator {
    left: calc(100% - 33px);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.privacy-policy-toggle-label {
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0 8px;
}

.privacy-policy-toggle-label-en {
    color: #ffffff;
}

.privacy-policy-toggle-label-si {
    color: rgba(200, 200, 200, 0.6);
}

.privacy-policy-toggle-track.active-si .privacy-policy-toggle-label-en {
    color: rgba(200, 200, 200, 0.6);
}

.privacy-policy-toggle-track.active-si .privacy-policy-toggle-label-si {
    color: #ffffff;
}

.privacy-policy-toggle-track:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
}

.privacy-policy-toggle-label:hover {
    cursor: pointer;
}

/* Refund Policy Language Toggle */
.refund-policy-language-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.refund-policy-toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
    height: 36px;
    background: rgba(20, 10, 15, 0.9);
    border-radius: 18px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.refund-policy-toggle-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 9px rgba(0, 245, 255, 0.6),
        0 0 9px rgba(0, 102, 255, 0.4),
        inset 0 0 6px rgba(255, 255, 255, 0.2);
    z-index: 2;
    left: 3px;
}

.refund-policy-toggle-track.active-si .refund-policy-toggle-indicator {
    left: calc(100% - 33px);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.refund-policy-toggle-label {
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0 8px;
}

.refund-policy-toggle-label-en {
    color: #ffffff;
}

.refund-policy-toggle-label-si {
    color: rgba(200, 200, 200, 0.6);
}

.refund-policy-toggle-track.active-si .refund-policy-toggle-label-en {
    color: rgba(200, 200, 200, 0.6);
}

.refund-policy-toggle-track.active-si .refund-policy-toggle-label-si {
    color: #ffffff;
}

.refund-policy-toggle-track:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
}

.refund-policy-toggle-label:hover {
    cursor: pointer;
}

/* Terms of Service Language Toggle */
.terms-of-service-language-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.terms-of-service-toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    width: 120px;
    height: 36px;
    background: rgba(20, 10, 15, 0.9);
    border-radius: 18px;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.terms-of-service-toggle-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 9px rgba(0, 245, 255, 0.6),
        0 0 9px rgba(0, 102, 255, 0.4),
        inset 0 0 6px rgba(255, 255, 255, 0.2);
    z-index: 2;
    left: 3px;
}

.terms-of-service-toggle-track.active-si .terms-of-service-toggle-indicator {
    left: calc(100% - 33px);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.terms-of-service-toggle-label {
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 3;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0 8px;
}

.terms-of-service-toggle-label-en {
    color: #ffffff;
}

.terms-of-service-toggle-label-si {
    color: rgba(200, 200, 200, 0.6);
}

.terms-of-service-toggle-track.active-si .terms-of-service-toggle-label-en {
    color: rgba(200, 200, 200, 0.6);
}

.terms-of-service-toggle-track.active-si .terms-of-service-toggle-label-si {
    color: #ffffff;
}

.terms-of-service-toggle-track:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
}

.terms-of-service-toggle-label:hover {
    cursor: pointer;
}

.neo-faq-list { max-width: 1050px; margin: 0 auto; }

.neo-faq-item {
    background: #000408;
    border-radius: 16px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 245, 255, 0.8);
    overflow: hidden;
}

.neo-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
}

.neo-faq-question {
    font-size: 0.95rem;
    font-family: 'Orbitron', monospace;
    color: #ffffff;
}

.neo-faq-toggle {
    font-size: 1.1rem;
    color: #00f5ff;
    margin-left: 10px;
}

.neo-faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background: linear-gradient(180deg, #000408, #000808);
    transition: max-height 0.26s ease, padding-bottom 0.26s ease;
    font-size: 0.92rem;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.neo-faq-body p,
.neo-faq-body span,
.neo-faq-body div:not([style*="display: flex"]):not([style*="justify-content: center"]),
.neo-faq-body li,
.neo-faq-body ul,
.neo-faq-body ol {
    color: #ffffff !important;
    background: transparent !important;
}

.neo-faq-item.open .neo-faq-body {
    padding-bottom: 12px;
    max-height: 2000px;
}

.neo-faq-body img {
    display: block;
    margin: 0;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.6), 0 0 9px rgba(0, 102, 255, 0.4), 0 0 24px rgba(0, 245, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.3));
}

/* FAQ Image Container - Side by Side Layout */
.neo-faq-body > div[style*="display: flex"] {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 15px 0 !important;
}

.neo-faq-body > div[style*="display: flex"] img {
    width: 48% !important;
    max-width: 400px !important;
    min-width: 200px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
}

/* Alternative selector for images in flex containers */
.neo-faq-body img[src*="faq-esp-01"],
.neo-faq-body img[src*="faq-esp-02"] {
    width: 48% !important;
    max-width: 400px !important;
    min-width: 200px !important;
    margin: 0 !important;
}

/* Center ARM-32 image */
.neo-faq-body img[src*="faq-arm32"] {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
}

/* Center the container div for ARM-32 image */
.neo-faq-body > div[style*="justify-content: center"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* FAQ Download Button */
.faq-download-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 
        0 4px 9px rgba(0, 245, 255, 0.4),
        0 0 5px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 245, 255, 0.6),
        0 0 18px rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, #00f5ff, #0066ff);
}

.faq-download-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .neo-faq-body > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .neo-faq-body > div[style*="display: flex"] img,
    .neo-faq-body img[src*="faq-esp-01"],
    .neo-faq-body img[src*="faq-esp-02"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
    }
}

.neo-faq-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 245, 255, 0.8), 0 0 21px rgba(0, 102, 255, 0.6), 0 0 18px rgba(0, 245, 255, 0.4);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.5));
}

.neo-faq-body strong {
    color: #00f5ff;
    font-weight: 600;
}

.neo-faq-body div {
    margin-bottom: 8px;
}

/* ---------- How to Get Started ---------- */
.get-started-grid {
    max-width: 1050px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.get-started-grid .get-started-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.get-started-grid .get-started-card:nth-child(1) { animation-delay: 0.1s; }
.get-started-grid .get-started-card:nth-child(2) { animation-delay: 0.2s; }
.get-started-grid .get-started-card:nth-child(3) { animation-delay: 0.3s; }
.get-started-grid .get-started-card:nth-child(4) { animation-delay: 0.4s; }

.get-started-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 245, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    position: relative;
    overflow: hidden;
}

.get-started-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.get-started-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), #00060f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.get-started-card:hover::before {
    opacity: 1;
}

.get-started-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.9), rgba(0, 102, 255, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 9px rgba(0, 245, 255, 0.5);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.get-started-card:hover .get-started-badge {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 245, 255, 0.8);
}

.get-started-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0f;
    font-family: 'Orbitron', monospace;
    line-height: 1;
}

.get-started-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.get-started-card:nth-child(1) .get-started-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.get-started-card:nth-child(2) .get-started-icon {
    animation: iconFloat 3.5s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.get-started-card:nth-child(3) .get-started-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
}

.get-started-card:nth-child(4) .get-started-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconSwing 3s ease-in-out infinite;
}

.get-started-card:hover .get-started-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
    animation-play-state: paused;
}

.get-started-content {
    flex: 1;
}

.get-started-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.get-started-card:hover .get-started-title {
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8), 0 0 5px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.get-started-desc {
    font-size: 0.92rem;
    color: #e0f7ff;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.get-started-card:hover .get-started-desc {
    color: #ffffff;
    transform: translateY(-1px);
}

/* ---------- Updates & Support ---------- */
.updates-support-grid {
    max-width: 1050px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.updates-support-grid .updates-support-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.updates-support-grid .updates-support-card:nth-child(1) { animation-delay: 0.1s; }
.updates-support-grid .updates-support-card:nth-child(2) { animation-delay: 0.2s; }
.updates-support-grid .updates-support-card:nth-child(3) { animation-delay: 0.3s; }

.updates-support-card {
    background: radial-gradient(circle at top left, rgba(255, 80, 120, 0.16), #000408);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 145, 185, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    text-align: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.updates-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(255, 100, 150, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.updates-support-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(255, 100, 150, 0.35), #20000f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(255, 130, 175, 0.9);
    border-color: rgba(255, 190, 215, 0.98);
}

.updates-support-card:hover::before {
    opacity: 1;
}

.updates-support-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 6px rgba(255, 75, 108, 0.8));
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.updates-support-card:nth-child(1) .updates-support-icon {
    animation: iconBounce 2s ease-in-out infinite, iconFloat 2.5s ease-in-out infinite;
}

.updates-support-card:nth-child(2) .updates-support-icon {
    animation: iconBounce 2s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
}

.updates-support-card:nth-child(3) .updates-support-icon {
    animation: iconSwing 3s ease-in-out infinite, iconFloat 3s ease-in-out infinite;
}

.updates-support-card:hover .updates-support-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 5px rgba(255, 75, 108, 1));
    animation-play-state: paused;
}

.updates-support-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.updates-support-card:hover .updates-support-title {
    text-shadow: 0 0 6px rgba(255, 150, 180, 0.8);
    transform: translateY(-2px);
}

.updates-support-desc {
    font-size: 0.92rem;
    color: #f0e0e8;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.updates-support-card:hover .updates-support-desc {
    color: #ffffff;
    transform: translateY(-1px);
}

/* ---------- Connect With Us ---------- */
.connect-with-us-grid {
    max-width: 1050px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.connect-with-us-grid .connect-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.connect-with-us-grid .connect-card:nth-child(1) { animation-delay: 0.1s; }
.connect-with-us-grid .connect-card:nth-child(2) { animation-delay: 0.2s; }
.connect-with-us-grid .connect-card:nth-child(3) { animation-delay: 0.3s; }
.connect-with-us-grid .connect-card:nth-child(4) { animation-delay: 0.4s; }

.connect-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 16px;
    padding: 18px 14px;
    border: 1px solid rgba(0, 245, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    cursor: pointer;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.connect-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), #00060f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.connect-card:hover::before {
    opacity: 1;
}

.connect-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.connect-card:nth-child(1) .connect-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.connect-card:nth-child(2) .connect-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconBounce 2.2s ease-in-out infinite;
}

.connect-card:nth-child(3) .connect-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
}

.connect-card:nth-child(4) .connect-icon {
    animation: iconFloat 3.5s ease-in-out infinite, iconSwing 3s ease-in-out infinite;
}

.connect-card:hover .connect-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 1));
    animation-play-state: paused;
}

.connect-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.connect-card:hover .connect-text {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
    transform: translateY(-2px);
}

/* ---------- Dashboard ---------- */
/* (unchanged from previous version – red theme already)               */

.dashboard-section {
    padding: 20px 0 70px;
}

.bx-dashboard-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-dashboard-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.bx-dashboard-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    width: min(1400px, 100% - 20px);
    margin-inline: auto;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.95);
}

.bx-sidebar {
    background: linear-gradient(180deg, #000408 0%, #000408 50%, #000408 100%);
    border-right: 1px solid rgba(0, 245, 255, 0.15);
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.bx-sidebar-close {
    display: none;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.bx-sidebar-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 245, 255, 0.15);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: #00f5ff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.bx-sidebar-close-btn:hover {
    background: rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.5);
    transform: scale(1.1);
}

.bx-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 11;
    transition: all 0.3s ease;
    gap: 5px;
}

.bx-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background: #00f5ff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.7);
}

.bx-menu-toggle:hover {
    transform: scale(1.1);
}

.bx-menu-toggle:hover span {
    box-shadow: 0 0 6px rgba(0, 245, 255, 1);
}

.bx-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.bx-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bx-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile: Slide-in menu */
@media (max-width: 768px) {
    .bx-dashboard-layout {
        display: block;
        grid-template-columns: none;
    }
    
    .bx-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        border-right: 2px solid rgba(0, 245, 255, 0.5);
        z-index: 999;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            0 0 24px rgba(0, 245, 255, 0.4),
            10px 0 50px rgba(0, 0, 0, 0.9);
    }
    
    .bx-sidebar.active {
        left: 0;
    }
    
    .bx-sidebar-close {
        display: flex;
    }
    
    .bx-menu-toggle {
        display: flex;
    }
    
    .bx-main {
        width: 100%;
    }
    
    .bx-back-btn {
        display: none;
    }
    
    .light-mode .bx-sidebar {
        border-right-color: rgba(255, 75, 108, 0.4);
        box-shadow: 
            0 0 24px rgba(255, 75, 108, 0.3),
            10px 0 50px rgba(0, 0, 0, 0.15);
    }
}

.bx-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 245, 255, 0.3) 20%,
        rgba(0, 102, 255, 0.3) 50%,
        rgba(0, 245, 255, 0.3) 80%,
        transparent 100%);
    opacity: 0.6;
    animation: sidebarGlow 3s ease-in-out infinite;
}

@keyframes sidebarGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.bx-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bx-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    animation: headerPulse 4s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bx-logo-container {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    z-index: 1;
}

.bx-sidebar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8)) 
            drop-shadow(0 0 9px rgba(0, 102, 255, 0.6));
    animation: logoFloatSidebar 3s ease-in-out infinite alternate;
    z-index: 2;
    position: relative;
}

@keyframes logoFloatSidebar {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.bx-logo-glow {
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bx-logo-container:hover .bx-logo-glow {
    opacity: 1;
    animation: logoGlowPulse 1.5s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.bx-brand-text { 
    display: flex; 
    flex-direction: column; 
    gap: 3px;
    z-index: 1;
    position: relative;
}

.bx-brand-title {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00f5ff 0%, #00b3ff 30%, #00ff88 60%, #00b3ff 90%, #00f5ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    animation: logoTextGradient 4s ease-in-out infinite;
    filter: drop-shadow(0 0 1px rgba(0, 245, 255, 0.3)) 
            drop-shadow(0 0 2px rgba(0, 179, 255, 0.2));
}

.bx-brand-sub {
    font-size: 0.75rem;
    color: #00f5ff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.4);
}

.bx-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.bx-nav-group { 
    margin-top: 4px; 
}

.bx-nav-title {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00f5ff;
    margin-bottom: 14px;
    padding: 8px 12px;
    letter-spacing: 0.12em;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.5);
    font-family: 'Orbitron', monospace;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 255, 0.15);
}

.bx-nav-title-icon {
    font-size: 0.9rem;
    filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.8));
    animation: iconSparkle 2s ease-in-out infinite;
}

@keyframes iconSparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.bx-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.87rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    text-decoration: none;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 245, 255, 0.12);
    background: rgba(0, 245, 255, 0.06);
    backdrop-filter: blur(6px);
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
    overflow: hidden;
}

.bx-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00f5ff, #0066ff);
    border-radius: 12px 0 0 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.8);
}

.bx-nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bx-nav-link:hover::after {
    transform: translateX(100%);
}

.bx-nav-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 245, 255, 0.4));
    z-index: 1;
    position: relative;
}

.bx-nav-text {
    flex: 1;
    z-index: 1;
    position: relative;
}

.bx-nav-link:hover {
    background: rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.35);
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 
        0 6px 16px rgba(0, 245, 255, 0.35),
        0 0 5px rgba(0, 245, 255, 0.2),
        inset 0 0 9px rgba(0, 245, 255, 0.12);
    text-shadow: 0 0 14px rgba(0, 245, 255, 0.7);
}

.bx-nav-link:hover .bx-nav-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}

.bx-nav-link:hover::before {
    opacity: 1;
}

.bx-nav-link.active {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.35), rgba(0, 102, 255, 0.3));
    color: #ffffff;
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 
        0 8px 28px rgba(0, 245, 255, 0.5),
        0 0 21px rgba(0, 102, 255, 0.4),
        inset 0 0 9px rgba(255, 255, 255, 0.12),
        inset -2px 0 15px rgba(0, 245, 255, 0.3);
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 5px rgba(0, 245, 255, 0.4);
    font-weight: 600;
    transform: translateX(4px);
}

.bx-nav-link.active::before {
    opacity: 1;
    width: 5px;
    background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.8));
    box-shadow: 
        0 0 9px rgba(255, 255, 255, 0.9),
        0 0 9px rgba(0, 245, 255, 0.6);
}

.bx-nav-link.active .bx-nav-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.25); }
}

.bx-nav-link.danger { 
    color: #00f5ff;
    border-color: rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.08);
}

.bx-nav-link.danger:hover {
    background: rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.45);
    color: #ffffff;
    box-shadow: 
        0 6px 16px rgba(0, 245, 255, 0.4),
        inset 0 0 9px rgba(0, 245, 255, 0.18);
}

.bx-nav-footer {
    margin-top: auto;
    padding-top: 12px;
}

.bx-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 245, 255, 0.3),
        rgba(0, 102, 255, 0.3),
        rgba(0, 245, 255, 0.3),
        transparent);
    margin-bottom: 12px;
    position: relative;
}

.bx-nav-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -2px;
    width: 4px;
    height: 4px;
    background: rgba(0, 245, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

.bx-main {
    background: radial-gradient(circle at top, #000408, #000408 65%);
    display: flex;
    flex-direction: column;
}

.bx-topbar {
    height: 54px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bx-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bx-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(0, 245, 255, 0.2);
    font-size: 0.9rem;
}

.bx-top-title { font-size: 0.95rem; font-weight: 500; }

.bx-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bx-search-wrap input {
    background: rgba(0, 4, 8, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(0, 245, 255, 0.55);
    padding: 6px 10px;
    font-size: 0.86rem;
    color: #ffffff;
    width: 170px;
}

.bx-notify-dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00f5ff, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #001016;
    box-shadow: 0 10px 26px rgba(0, 245, 255, 0.95);
}

.bx-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 18px 24px 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Welcome Banner */
.bx-welcome-banner {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.bx-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

.bx-welcome-content {
    position: relative;
    z-index: 1;
}

.bx-welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.bx-welcome-name {
    color: #00f5ff;
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.8);
}

.bx-welcome-subtitle {
    font-size: 0.85rem;
    color: #e0f7ff;
    margin: 0;
    opacity: 0.9;
}

.bx-welcome-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bx-welcome-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 9px rgba(0, 245, 255, 0.8))
        drop-shadow(0 0 18px rgba(0, 102, 255, 0.6))
        drop-shadow(0 0 45px rgba(0, 255, 136, 0.4));
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.bx-welcome-banner:hover .bx-welcome-logo {
    filter: 
        drop-shadow(0 0 5px rgba(0, 245, 255, 1))
        drop-shadow(0 0 24px rgba(0, 102, 255, 0.8))
        drop-shadow(0 0 36px rgba(0, 255, 136, 0.6));
    transform: scale(1.1);
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(2deg); 
    }
}

@keyframes logoGlow {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 9px rgba(0, 245, 255, 0.8))
            drop-shadow(0 0 18px rgba(0, 102, 255, 0.6))
            drop-shadow(0 0 45px rgba(0, 255, 136, 0.4));
    }
    50% { 
        filter: 
            drop-shadow(0 0 5px rgba(0, 245, 255, 1))
            drop-shadow(0 0 24px rgba(0, 102, 255, 0.8))
            drop-shadow(0 0 36px rgba(0, 255, 136, 0.6));
    }
}

/* Stats Grid */
.bx-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.bx-stat-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 245, 255, 0.65);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bx-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 245, 255, 0.5),
        inset 0 0 5px rgba(0, 245, 255, 0.1);
}

.bx-stat-card:hover::before {
    opacity: 1;
}

.bx-stat-card-primary {
    border-color: rgba(0, 245, 255, 0.7);
}

.bx-stat-card-success {
    border-color: rgba(0, 255, 170, 0.65);
}

.bx-stat-card-success:hover {
    border-color: rgba(0, 255, 170, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 21px rgba(0, 255, 170, 0.6),
        0 0 18px rgba(0, 255, 170, 0.4);
}

.bx-stat-card-warning {
    border-color: rgba(0, 102, 255, 0.65);
}

.bx-stat-card-warning:hover {
    border-color: rgba(0, 102, 255, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 21px rgba(0, 102, 255, 0.6),
        0 0 18px rgba(0, 102, 255, 0.4);
}

.bx-stat-card-info {
    border-color: rgba(0, 255, 136, 0.65);
}

.bx-stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.6));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bx-stat-card:hover .bx-stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
}

.bx-stat-content {
    flex: 1;
    min-width: 0;
}

.bx-stat-label {
    font-size: 0.7rem;
    color: #e0f7ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.bx-stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    word-break: break-word;
}

.bx-stat-value-small {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    word-break: break-word;
    opacity: 0.9;
}

.bx-stat-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bx-stat-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

.bx-stat-badge.verified {
    background: rgba(0, 255, 170, 0.2);
    color: #bafff0;
    border: 1px solid rgba(0, 255, 170, 0.4);
}

.bx-stat-badge.success {
    background: rgba(0, 255, 170, 0.2);
    color: #bafff0;
    border: 1px solid rgba(0, 255, 170, 0.4);
}

.bx-stat-badge.warning {
    background: rgba(0, 102, 255, 0.18);
    color: #dbeafe;
    border: 1px solid rgba(0, 102, 255, 0.5);
}

.bx-stat-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-stat-card:hover .bx-stat-glow {
    opacity: 1;
}

/* Products Section */
.bx-products-section {
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.bx-section-header {
    margin-bottom: 24px;
    width: 100%;
}

.bx-section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bx-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e0faff;
    margin: 0;
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.6);
}

.bx-section-subtitle {
    font-size: 0.9rem;
    color: #a5f3fc;
    margin: 0;
    opacity: 0.8;
}

.bx-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.bx-product-card {
    background: radial-gradient(circle at top left, rgba(0, 255, 136, 0.14), #020617);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 245, 255, 0.65);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 220px;
    width: 100%;
    max-width: 100%;
}

.bx-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-product-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 
        0 24px 36px rgba(0, 0, 0, 0.95),
        0 0 24px rgba(0, 245, 255, 0.7),
        inset 0 0 18px rgba(0, 255, 136, 0.16);
}

.bx-product-card:hover::before {
    opacity: 1;
}

.bx-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bx-product-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.6));
    transition: transform 0.3s ease;
}

.bx-product-card:hover .bx-product-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
}

.bx-product-badge {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.2));
    border: 1px solid rgba(0, 245, 255, 0.5);
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e0f7ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bx-product-body {
    flex: 1;
}

.bx-product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.bx-product-version {
    font-size: 0.8rem;
    color: #e0f7ff;
    opacity: 0.8;
}

.bx-product-actions {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.bx-product-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bx-product-btn-primary {
    background: var(--btn-gradient);
    border-color: rgba(0, 245, 255, 0.6);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
}

.bx-product-btn-primary:hover {
    background: var(--btn-gradient);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.95);
    transform: translateY(-2px);
}

.bx-product-btn-secondary {
    background: rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.4);
    color: #00f5ff;
}

.bx-product-btn-secondary:hover {
    background: rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.bx-product-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-product-card:hover .bx-product-glow {
    opacity: 1;
}

.bx-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.1), #000408);
    border: 1px dashed rgba(0, 245, 255, 0.3);
    border-radius: 20px;
}

.bx-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.bx-empty-state h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.bx-empty-state p {
    font-size: 0.9rem;
    color: #e0f7ff;
    margin: 0;
    opacity: 0.7;
}

.bx-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.bx-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 18px;
    padding: 14px 14px 14px;
    border: 1px solid rgba(0, 245, 255, 0.65);
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bx-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 245, 255, 0.5),
        inset 0 0 5px rgba(0, 245, 255, 0.1);
}

.bx-card:hover::before {
    opacity: 1;
}

.bx-card-animated {
    animation: fadeInUp 0.6s ease-out backwards;
}

/* HWID Bound Card - Green Shadow (only on hover) */
.bx-card-hwid-bound {
    border-color: rgba(0, 255, 170, 0.65);
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.9);
}

.bx-card-hwid-bound:hover {
    border-color: rgba(0, 255, 170, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 21px rgba(0, 255, 170, 0.6),
        0 0 18px rgba(0, 255, 170, 0.4),
        inset 0 0 5px rgba(0, 255, 170, 0.1);
}

.bx-card-hwid-bound::before {
    opacity: 0;
    background: radial-gradient(circle at top left, rgba(0, 255, 170, 0.25), transparent);
    transition: opacity 0.3s ease;
}

.bx-card-hwid-bound:hover::before {
    opacity: 1;
}

/* HWID Not Bound Card - Red Shadow */
.bx-card-hwid-not-bound {
    border-color: rgba(255, 80, 120, 0.65);
    box-shadow: 
        0 12px 19px rgba(0, 0, 0, 0.9),
        0 0 9px rgba(255, 80, 120, 0.4),
        0 0 24px rgba(255, 80, 120, 0.2);
}

.bx-card-hwid-not-bound:hover {
    border-color: rgba(255, 80, 120, 0.9);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.95),
        0 0 21px rgba(255, 80, 120, 0.6),
        0 0 18px rgba(255, 80, 120, 0.4),
        inset 0 0 5px rgba(255, 80, 120, 0.1);
}

.bx-card-hwid-not-bound::before {
    background: radial-gradient(circle at top left, rgba(255, 80, 120, 0.25), transparent);
}

.bx-cards-row .bx-card:nth-child(1) { animation-delay: 0.1s; }
.bx-cards-row .bx-card:nth-child(2) { animation-delay: 0.2s; }
.bx-cards-row .bx-card:nth-child(3) { animation-delay: 0.3s; }
.bx-cards-row .bx-card:nth-child(4) { animation-delay: 0.4s; }

.bx-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 120, 180, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.bx-card:hover .bx-card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(255, 150, 200, 0.9));
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bx-card-content {
    flex: 1;
}

.bx-card-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
}

.bx-card-download .bx-card-content {
    flex: 1;
}

.bx-card-label {
    font-size: 0.82rem;
    color: #ffcde1;
    margin-bottom: 4px;
}

.bx-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.bx-card-meta {
    font-size: 0.8rem;
    color: #ffddea;
}

.bx-status {
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.75rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bx-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bx-status:hover::before {
    left: 100%;
}

.bx-status.good {
    background: rgba(0, 255, 170, 0.18);
    color: #bafff0;
    box-shadow: 0 0 6px rgba(0, 255, 170, 0.3);
    animation: statusPulseGood 2s ease-in-out infinite;
}

.bx-status.good:hover {
    background: rgba(0, 255, 170, 0.3);
    box-shadow: 0 0 9px rgba(0, 255, 170, 0.5);
    transform: scale(1.05);
}

.bx-status.bad {
    background: rgba(255, 80, 120, 0.2);
    color: #ffe4ec;
    box-shadow: 0 0 6px rgba(255, 80, 120, 0.3);
    animation: statusPulseBad 2s ease-in-out infinite;
}

.bx-status.bad:hover {
    background: rgba(255, 80, 120, 0.3);
    box-shadow: 0 0 9px rgba(255, 80, 120, 0.5);
    transform: scale(1.05);
}

@keyframes statusPulseGood {
    0%, 100% { box-shadow: 0 0 6px rgba(0, 255, 170, 0.3); }
    50% { box-shadow: 0 0 9px rgba(0, 255, 170, 0.5); }
}

@keyframes statusPulseBad {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 80, 120, 0.3); }
    50% { box-shadow: 0 0 9px rgba(255, 80, 120, 0.5); }
}

.bx-panel {
    background: rgba(0, 4, 8, 0.96);
    border-radius: 18px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(0, 245, 255, 0.6);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.95);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bx-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bx-panel:hover::before {
    opacity: 1;
}

.bx-panel:hover {
    border-color: rgba(0, 245, 255, 0.8);
    box-shadow: 
        0 18px 45px rgba(0, 0, 0, 0.98),
        0 0 9px rgba(0, 245, 255, 0.3);
}

.bx-panel-header h2 { 
    font-size: 1rem; 
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.bx-panel-header h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.8), transparent);
    transition: width 0.4s ease;
}

.bx-panel:hover .bx-panel-header h2::after {
    width: 100%;
}

.bx-table-wrap { overflow-x: auto; }

.bx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    table-layout: auto;
}

/* Ensure proper column distribution for subscriptions table */
.bx-panel .bx-table {
    table-layout: fixed;
}

.bx-panel .bx-table th:nth-child(1),
.bx-panel .bx-table td:nth-child(1) {
    width: 25%;
}

.bx-panel .bx-table th:nth-child(2),
.bx-panel .bx-table td:nth-child(2) {
    width: 25%;
}

.bx-panel .bx-table th:nth-child(3),
.bx-panel .bx-table td:nth-child(3) {
    width: 25%;
}

.bx-panel .bx-table th:nth-child(4),
.bx-panel .bx-table td:nth-child(4) {
    width: 25%;
}

.bx-table th,
.bx-table td {
    padding: 8px 7px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    transition: background-color 0.2s ease;
}

.bx-table tbody tr {
    transition: all 0.3s ease;
}

.bx-table tbody tr:hover {
    background: rgba(0, 245, 255, 0.08);
    transform: translateX(3px);
    box-shadow: inset 4px 0 0 rgba(0, 245, 255, 0.5);
}

.bx-table th {
    text-align: left;
    font-weight: 500;
    color: #e0f7ff;
}

/* Subscriptions table column alignment */
.bx-table th:nth-child(1),
.bx-table td:nth-child(1) {
    text-align: left;
    width: auto;
}

.bx-table th:nth-child(2),
.bx-table td:nth-child(2) {
    text-align: center;
    width: auto;
}

.bx-table th:nth-child(3),
.bx-table td:nth-child(3) {
    text-align: right;
    width: auto;
    padding-right: 8px;
}

.bx-table th:nth-child(4),
.bx-table td:nth-child(4) {
    text-align: right;
    width: auto;
    padding-right: 12px;
}

.bx-table-empty {
    text-align: center;
    color: #00f5ff;
    font-style: italic;
}

.bx-table-link {
    color: #00f5ff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.bx-table-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bx-table-link:hover::before {
    left: 100%;
}

.bx-table-link:hover {
    color: #ffffff;
    background: rgba(0, 245, 255, 0.2);
    transform: translateX(3px);
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.5);
}

.bx-table-link-download:hover {
    background: rgba(0, 255, 170, 0.15);
    box-shadow: 0 0 9px rgba(0, 255, 170, 0.4);
}

.bx-table-link-tutorial:hover {
    background: rgba(255, 200, 0, 0.15);
    box-shadow: 0 0 9px rgba(255, 200, 0, 0.4);
}

.bx-panel-text {
    font-size: 0.86rem;
    color: #e0f7ff;
    margin-bottom: 8px;
}

.bx-redeem-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.bx-redeem-row input {
    flex: 1;
    background: #000408;
    border-radius: 999px;
    border: 1px solid rgba(0, 245, 255, 0.6);
    padding: 7px 9px;
    font-size: 0.86rem;
    color: #ffffff;
}

.bx-panel-warning {
    font-size: 0.8rem;
    color: #00f5ff;
    margin-top: 4px;
}

/* Form Styles */
.bx-form-container {
    padding: 20px 0;
}

.bx-form {
    max-width: 700px;
}

.bx-form-group {
    margin-bottom: 20px;
}

.bx-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e0f7ff;
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
}

.bx-required {
    color: #00f5ff;
    margin-left: 3px;
}

.bx-form-input,
.bx-form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 4, 8, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.6);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.bx-form-input:focus,
.bx-form-textarea:focus {
    outline: none;
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.2), 0 0 9px rgba(0, 245, 255, 0.3);
    background: rgba(0, 4, 8, 0.9);
}

.bx-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.bx-form-file {
    width: 100%;
    padding: 10px;
    background: rgba(0, 4, 8, 0.8);
    border: 1px dashed rgba(0, 245, 255, 0.6);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bx-form-file:hover {
    border-color: rgba(0, 245, 255, 0.8);
    background: rgba(0, 4, 8, 0.9);
}

.bx-form-file:focus {
    outline: none;
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.2);
}

.bx-form-help {
    font-size: 0.8rem;
    color: #00f5ff;
    margin-top: 6px;
    font-style: italic;
}

.bx-image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.bx-image-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.4);
    background: rgba(0, 4, 8, 0.6);
}

.bx-image-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.bx-image-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 245, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bx-image-preview-remove:hover {
    background: rgba(0, 245, 255, 1);
    transform: scale(1.1);
}

.bx-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 245, 255, 0.3);
}

.bx-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bx-btn-primary {
    background: var(--btn-gradient);
    color: var(--btn-text-color);
    box-shadow: var(--btn-shadow);
}

.bx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 22px rgba(0, 245, 255, 0.9),
        0 0 32px rgba(0, 255, 136, 0.7);
    background: var(--btn-gradient);
}

.bx-btn-primary:active {
    transform: translateY(0);
}

.bx-btn-secondary {
    background: rgba(0, 245, 255, 0.15);
    color: #00f5ff;
    border: 1px solid rgba(0, 245, 255, 0.4);
}

.bx-btn-secondary:hover {
    background: rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.6);
    color: #ffffff;
}

.bx-btn-danger {
    background: rgba(255, 80, 120, 0.2);
    border: 1px solid rgba(255, 100, 140, 0.6);
    color: #ffe4ec;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(255, 80, 120, 0.3);
}

.bx-btn-danger:hover {
    background: rgba(255, 80, 120, 0.35);
    border-color: rgba(255, 120, 160, 0.8);
    box-shadow: 0 0 9px rgba(255, 80, 120, 0.5);
    transform: translateY(-2px);
}

.bx-btn-reset {
    width: 100%;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.4), rgba(255, 0, 0, 0.35));
    border: 1px solid rgba(220, 20, 60, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 9px rgba(220, 20, 60, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
    font-family: 'Orbitron', 'Share Tech Mono', monospace;
}

.bx-btn-reset:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.6), rgba(255, 0, 0, 0.55));
    border-color: rgba(255, 0, 0, 1);
    box-shadow: 0 0 9px rgba(220, 20, 60, 0.8), 0 0 24px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.bx-btn-reset:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* Modal Styles */
.bx-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bx-modal-content {
    background: radial-gradient(circle at top left, rgba(255, 100, 140, 0.16), #000408);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 150, 190, 0.65);
    box-shadow: 
        0 20px 36px rgba(0, 0, 0, 0.95),
        0 0 24px rgba(255, 80, 120, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    position: relative;
}

.bx-modal-content.bx-modal-red {
    border-color: rgba(220, 20, 60, 0.9);
    box-shadow: 
        0 20px 36px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(220, 20, 60, 0.7),
        0 0 80px rgba(255, 0, 0, 0.5),
        0 0 120px rgba(255, 0, 0, 0.2);
    background: radial-gradient(circle at top left, rgba(220, 20, 60, 0.2), #1a0000);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bx-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 150, 190, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bx-modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #ff4444;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 0, 0, 0.8), 0 0 5px rgba(220, 20, 60, 0.6);
}

.bx-modal-close {
    background: none;
    border: none;
    color: #ffcde1;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.bx-modal-close:hover {
    background: rgba(220, 20, 60, 0.3);
    color: #ff4444;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
    transform: rotate(90deg);
}

.bx-modal-body {
    padding: 24px;
    color: #ffe4ec;
}

.bx-modal-body p {
    color: #ffe4ec;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1rem;
}

.bx-modal-body p strong {
    color: #ff4444;
    font-weight: 800;
    font-size: 1.05em;
}

.bx-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Loading Spinner */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.light-mode .spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
}

.bx-flex-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 16px;
}

.bx-hwid-col textarea {
    width: 100%;
    background: #14000c;
    border-radius: 12px;
    border: 1px solid rgba(255, 150, 190, 0.6);
    padding: 8px 10px;
    min-height: 90px;
    font-size: 0.86rem;
    color: #ffe4f0;
    resize: vertical;
}

.bx-hwid-btn { margin-top: 8px; width: 100%; }

.bx-panel-success {
    font-size: 0.8rem;
    color: #b9ffe4;
    margin-top: 4px;
}

/* ---------- Download Button Styles ---------- */
.bx-download-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.2));
    border: 1px solid rgba(0, 245, 255, 0.7);
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.5);
}

.bx-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.bx-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bx-download-btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.bx-download-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 245, 255, 1);
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(0, 102, 255, 0.3));
    box-shadow: 
        0 8px 15px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(0, 245, 255, 0.6);
}

.bx-download-btn:hover span {
    transform: scale(1.05);
}

.bx-download-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 9px rgba(0, 0, 0, 0.6),
        0 0 5px rgba(0, 245, 255, 0.4);
}

/* ---------- Panel Animation ---------- */
.bx-panel {
    animation: fadeInUp 0.5s ease-out backwards;
    animation-delay: 0.3s;
}

.bx-panel-header {
    animation: fadeIn 0.4s ease-out backwards;
    animation-delay: 0.4s;
}

/* ---------- Terms of Service Section ---------- */
.bx-terms-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%) !important;
    overflow: hidden;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: termsSectionFadeIn 0.8s ease-out;
}

@keyframes termsSectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bx-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bx-terms-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 245, 255, 0.02) 2px, rgba(0, 245, 255, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 245, 255, 0.02) 2px, rgba(0, 245, 255, 0.02) 4px);
    opacity: 0.3;
    pointer-events: none;
    animation: termsParticles 20s linear infinite;
}

@keyframes termsParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.bx-terms-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    position: relative;
    z-index: 1;
    animation: termsTitleSlideIn 0.8s ease-out 0.2s both, termsTitleGlow 3s ease-in-out infinite 1s;
}

@keyframes termsTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes termsTitleGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 245, 255, 0.9), 0 0 14px rgba(0, 102, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 10px rgba(0, 245, 255, 1), 0 0 20px rgba(0, 102, 255, 0.8), 0 0 30px rgba(0, 245, 255, 0.4);
    }
}

.bx-terms-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 4, 8, 0.95);
    border: 1px solid rgba(0, 245, 255, 0.5);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.3),
        0 0 40px rgba(0, 102, 255, 0.15),
        inset 0 0 20px rgba(0, 245, 255, 0.08);
    position: relative;
    z-index: 1;
    animation: termsBoxFadeIn 0.8s ease-out 0.4s both, termsBoxBorderGlow 4s ease-in-out infinite 1.2s;
}

@keyframes termsBoxFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes termsBoxBorderGlow {
    0%, 100% {
        border-color: rgba(0, 245, 255, 0.5);
        box-shadow: 
            0 0 20px rgba(0, 245, 255, 0.3),
            0 0 40px rgba(0, 102, 255, 0.15),
            inset 0 0 20px rgba(0, 245, 255, 0.08);
    }
    50% {
        border-color: rgba(0, 245, 255, 0.8);
        box-shadow: 
            0 0 30px rgba(0, 245, 255, 0.5),
            0 0 60px rgba(0, 102, 255, 0.3),
            inset 0 0 30px rgba(0, 245, 255, 0.15);
    }
}

.bx-terms-intro {
    font-size: 0.95rem;
    color: #e0f7ff;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    text-align: center;
    opacity: 0.9;
}

.bx-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bx-terms-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: termsItemFadeIn 0.6s ease-out both;
    opacity: 0;
}

.bx-terms-item:nth-child(1) { animation-delay: 0.6s; }
.bx-terms-item:nth-child(2) { animation-delay: 0.7s; }
.bx-terms-item:nth-child(3) { animation-delay: 0.8s; }
.bx-terms-item:nth-child(4) { animation-delay: 0.9s; }
.bx-terms-item:nth-child(5) { animation-delay: 1.0s; }

@keyframes termsItemFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.bx-terms-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(0, 245, 255, 0.15);
    border: 1px solid rgba(0, 245, 255, 0.5);
    color: #00f5ff;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.4);
    flex-shrink: 0;
    animation: termsCheckPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.bx-terms-item:hover .bx-terms-check {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.8);
}

@keyframes termsCheckPulse {
    0%, 100% {
        box-shadow: 0 0 6px rgba(0, 245, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 245, 255, 0.7);
        transform: scale(1.05);
    }
}

.bx-terms-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

@media (max-width: 768px) {
    .bx-terms-box {
        padding: 24px 20px;
    }
    
    .bx-terms-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
    
    .bx-terms-intro {
        font-size: 0.9rem;
    }
    
    .bx-terms-text {
        font-size: 0.85rem;
    }
}

/* ---------- Connect With Us Section ---------- */
.bx-connect-section {
    padding: 50px 0 60px;
    position: relative;
    animation: termsSectionFadeIn 0.8s ease-out 0.3s both;
}

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

.connect-with-us-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.connect-with-us-grid .connect-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.connect-with-us-grid .connect-card:nth-child(1) { animation-delay: 0.5s; }
.connect-with-us-grid .connect-card:nth-child(2) { animation-delay: 0.6s; }
.connect-with-us-grid .connect-card:nth-child(3) { animation-delay: 0.7s; }
.connect-with-us-grid .connect-card:nth-child(4) { animation-delay: 0.8s; }

.connect-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.16), #000408);
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid rgba(0, 245, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    cursor: pointer;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.connect-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), #00060f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.connect-card:hover::before {
    opacity: 1;
}

.connect-icon {
    width: 28px;
    height: 28px;
    color: #00f5ff;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-card:nth-child(1) .connect-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.connect-card:nth-child(2) .connect-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconBounce 2.2s ease-in-out infinite;
}

.connect-card:nth-child(3) .connect-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
}

.connect-card:nth-child(4) .connect-icon {
    animation: iconFloat 3.5s ease-in-out infinite, iconSwing 3s ease-in-out infinite;
}

.connect-card:hover .connect-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 1));
    animation-play-state: paused;
    color: #ffffff;
}

.connect-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.connect-card:hover .connect-text {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@media (max-width: 900px) {
    .connect-with-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .connect-with-us-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .connect-card {
        padding: 18px 14px;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 60px 0 30px;
    background: #050810;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    margin-top: 60px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-footer .footer-inner {
    width: 100%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.footer-brand-heading {
    color: #00f5ff;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.footer-description {
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 280px;
}

.footer-icons {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    align-items: center;
}

.footer-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 245, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.9;
    filter: drop-shadow(0 0 3px rgba(0, 245, 255, 0.2));
}

.footer-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(0, 245, 255, 0.6);
    background: rgba(0, 245, 255, 0.1);
    filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.4));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li {
    margin: 0;
    position: relative;
    padding-left: 16px;
}

.footer-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.7;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    opacity: 0.85;
    line-height: 1.5;
    font-weight: 400;
}

.footer-link:hover {
    color: #00f5ff;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
    }

    .site-footer .container {
        padding: 0 20px;
    }

    .footer-columns {
        gap: 35px;
        margin-bottom: 40px;
        padding-bottom: 35px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand-heading {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
        padding-bottom: 30px;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .footer-brand-heading {
        font-size: 1.05rem;
        margin-bottom: 14px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-icons {
        gap: 14px;
    }

    .footer-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-section { padding-top: 80px; }
    .two-col,
    .bx-dashboard-layout,
    .bx-flex-cols {
        grid-template-columns: minmax(0, 1fr);
    }
    .bx-dashboard-layout { border-radius: 0; }
    .updates-support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .connect-with-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 780px) {
    .neo-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }
    .hero-section {
        padding: 60px 15px 40px;
    }
    .hero-inner {
        margin-bottom: 40px;
    }
    .hero-title { 
        letter-spacing: 0.1em;
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
    }
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .hero-about-box {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .hero-about-title {
        font-size: 1.3rem;
    }
    .hero-about-desc {
        font-size: 0.9rem;
    }
    .hero-about-item {
        font-size: 0.85rem;
    }
    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .get-started-card {
        padding: 20px;
    }
    .get-started-badge {
        width: 50px;
        height: 50px;
    }
    .get-started-number {
        font-size: 1.2rem;
    }
    .get-started-icon {
        font-size: 1rem;
    }
    .updates-support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .updates-support-card {
        padding: 28px 20px;
    }
    .updates-support-icon {
        font-size: 2.5rem;
    }
    .connect-with-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .connect-card {
        padding: 10px 16px;
        gap: 8px;
    }
    .connect-icon {
        font-size: 1.2rem;
    }
    .connect-text {
        font-size: 0.85rem;
    }
    .site-footer .footer-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .site-footer .footer-inner span {
        text-align: center;
        width: 100%;
    }
}

/* ---------- About Us Page ---------- */
.about-section {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #000408 0%, #00050a 50%, #00080d 100%);
    min-height: calc(100vh - 90px);
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.about-sidebar {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    height: fit-content;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.about-sidebar:hover {
    transform: translateY(-8px) scale(1.02);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.28), #00060f);
    box-shadow:
        0 24px 36px rgba(0, 0, 0, 0.95),
        0 0 21px rgba(0, 245, 255, 0.7);
    border-color: rgba(0, 245, 255, 0.8);
}

.about-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
}

.about-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.about-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 245, 255, 0.6);
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
    transition: all 0.3s ease;
}

.about-avatar:hover .about-avatar-img {
    transform: scale(1.05);
    border-color: rgba(0, 245, 255, 0.9);
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.8);
}

.about-avatar-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 245, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid #0a0a0f;
    box-shadow: 0 0 6px rgba(0, 245, 255, 0.6);
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-avatar:hover .about-avatar-badge {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.9);
    background: rgba(0, 245, 255, 1);
}

.about-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.about-sidebar:hover .about-name {
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.8), 0 0 9px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.about-crown {
    font-size: 1.2rem;
    margin-left: 5px;
    display: inline-block;
    animation: iconFloat 2.5s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-skills {
    font-size: 0.95rem;
    color: #00f5ff;
    margin-bottom: 5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.about-sidebar:hover .about-skills {
    color: #ffffff;
    transform: translateY(-1px);
}

.about-role {
    font-size: 0.9rem;
    color: #00f5ff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.about-sidebar:hover .about-role {
    color: #ffffff;
    transform: translateY(-1px);
}

.about-devil {
    margin-left: 5px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2.5s ease-in-out infinite;
}

.about-info-section,
.about-socials-section {
    margin-bottom: 30px;
}

.about-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
}

.about-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: default;
}

.about-info-item:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: translateX(5px);
}

.about-info-item:hover .about-info-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}

.about-info-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-block;
}

.about-info-item:nth-child(1) .about-info-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-info-item:nth-child(2) .about-info-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-info-item:nth-child(3) .about-info-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
}

.about-info-item:nth-child(4) .about-info-icon {
    animation: iconFloat 3.5s ease-in-out infinite, iconSwing 3s ease-in-out infinite;
}

.about-info-label {
    font-weight: 600;
    color: #00f5ff;
    min-width: 80px;
}

.about-info-value {
    color: #ffffff;
    opacity: 0.9;
}

/* ---------- About Social Buttons ---------- */
.about-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.about-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    border: 1px solid rgba(0, 245, 255, 0.4);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), rgba(0, 4, 8, 0.4));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.about-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
    z-index: 0;
}

.about-social-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.about-social-btn:hover::before {
    opacity: 1;
}

.about-social-btn:hover::after {
    left: 100%;
}

.about-social-btn:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), rgba(0, 6, 15, 0.5));
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.about-social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.about-social-btn:nth-child(1) .about-social-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-social-btn:nth-child(2) .about-social-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-social-btn:nth-child(3) .about-social-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
}

.about-social-btn:hover .about-social-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
    animation-play-state: paused;
}

.about-social-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.about-social-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    text-shadow: 
        0 0 6px rgba(0, 245, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-social-btn:hover .about-social-text {
    text-shadow: 
        0 0 9px rgba(0, 245, 255, 0.9),
        0 2px 6px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.about-social-discord .about-social-icon svg {
    fill: #ffffff;
}

.about-social-whatsapp .about-social-icon svg {
    fill: #ffffff;
}

.about-social-guns .about-social-icon svg {
    fill: #ffffff;
}

/* ---------- Social Buttons Below Cards ---------- */
.about-card-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

.about-skill-card {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-skill-tags {
    flex: 1;
    min-height: 0;
}

.about-socials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-social-link {
    color: #ffb3d7;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.about-social-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.about-content {
    width: 100%;
}

.about-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.about-skill-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.6s ease-out backwards;
    height: 100%;
}

.about-skills-grid .about-skill-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(3) { animation-delay: 0.3s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(4) { animation-delay: 0.4s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(5) { animation-delay: 0.5s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(6) { animation-delay: 0.6s; }
.about-skills-grid .about-skill-card-wrapper:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Continuous Icon Animations ---------- */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
    }
}

@keyframes iconSwing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

/* ---------- Logo Text Animations ---------- */
@keyframes logoTextShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes logoTextGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6)) 
                drop-shadow(0 0 5px rgba(0, 102, 255, 0.4))
                drop-shadow(0 0 16px rgba(0, 255, 136, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.9)) 
                drop-shadow(0 0 18px rgba(0, 102, 255, 0.7))
                drop-shadow(0 0 24px rgba(0, 255, 136, 0.5))
                drop-shadow(0 0 18px rgba(0, 245, 255, 0.3));
    }
}

@keyframes logoTextScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.about-skill-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.about-skill-card:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), #00060f);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.98),
        0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.about-skill-card:hover::before {
    opacity: 1;
}

.about-skill-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.about-skill-card:nth-child(1) .about-skill-icon {
    animation: iconFloat 3s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-skill-card:nth-child(2) .about-skill-icon {
    animation: iconFloat 2.8s ease-in-out infinite, iconBounce 2.2s ease-in-out infinite;
}

.about-skill-card:nth-child(3) .about-skill-icon {
    animation: iconFloat 3.2s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
}

.about-skill-card:nth-child(4) .about-skill-icon {
    animation: iconFloat 3.5s ease-in-out infinite, iconSwing 3s ease-in-out infinite;
}

.about-skill-card:nth-child(5) .about-skill-icon {
    animation: iconFloat 2.9s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-skill-card:nth-child(6) .about-skill-icon {
    animation: iconFloat 3.3s ease-in-out infinite, iconBounce 2.3s ease-in-out infinite;
}

.about-skill-card:hover .about-skill-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
    animation-play-state: paused;
}

.about-skill-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-skill-card:hover .about-skill-title {
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8), 0 0 5px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.about-skill-subtitle {
    font-size: 0.85rem;
    color: #00f5ff;
    margin-bottom: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-skill-card:hover .about-skill-subtitle {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-1px);
}

.about-skill-card:not(:has(.about-skill-subtitle)) .about-skill-title {
    margin-bottom: 22px;
}

.about-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}

.about-skill-tag {
    background: rgba(0, 245, 255, 0.15) !important;
    border: 1px solid rgba(0, 245, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    color: #00f5ff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    cursor: default;
    display: inline-block !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    min-height: 28px !important;
    height: 28px !important;
    box-sizing: border-box !important;
    vertical-align: middle;
    margin: 0 !important;
}

.about-skill-tag span {
    display: inline-block;
    animation: iconFloat 2.5s ease-in-out infinite;
}

.about-skill-tag:nth-child(odd) span {
    animation: iconFloat 2.5s ease-in-out infinite, iconBounce 2s ease-in-out infinite;
}

.about-skill-tag:nth-child(even) span {
    animation: iconFloat 3s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
}

.about-skill-tag:hover {
    background: rgba(0, 245, 255, 0.35);
    border-color: rgba(0, 245, 255, 0.8);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.4);
}

@media (max-width: 1200px) {
    .about-layout {
        grid-template-columns: 280px 1fr;
        gap: 25px;
    }
    .about-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about-sidebar {
        order: 2;
    }
    .about-content {
        order: 1;
    }
    .about-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-skills-grid {
        grid-template-columns: 1fr;
    }
    .about-section {
        padding: 80px 15px 60px;
    }
    .about-social-buttons {
        gap: 10px;
    }
    .about-social-btn {
        padding: 12px 16px;
    }
    .about-social-icon {
        width: 28px;
        height: 28px;
    }
    .about-social-icon svg {
        width: 20px;
        height: 20px;
    }
    .about-social-text {
        font-size: 0.9rem;
    }
}

/* ---------- Contact Method Modal ---------- */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.contact-modal-content {
    position: relative;
    background: linear-gradient(135deg, #000408 0%, #0a0a0f 100%);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8), 0 0 21px rgba(0, 245, 255, 0.3);
    animation: slideUp 0.3s ease-out;
    z-index: 10001;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.contact-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.4);
    flex-shrink: 0;
}

.contact-modal-profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-modal-title {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    margin: 0;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.6);
}

.contact-modal-close {
    background: none;
    border: none;
    color: #00f5ff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.6);
}

.contact-modal-close:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: scale(1.1);
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.9);
}

.contact-modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.contact-modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
}

.contact-option-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-option-discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: #ffffff;
}

.contact-option-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-option-icon svg {
    width: 24px;
    height: 24px;
}

.contact-option-whatsapp .contact-option-icon svg {
    fill: #ffffff;
}

.contact-option-discord .contact-option-icon svg {
    fill: #ffffff;
}

.contact-option-text {
    flex: 1;
}

.contact-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Orbitron', monospace;
}

.contact-option-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.contact-option-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.8;
    transition: transform 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.contact-option:hover .contact-option-arrow {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .contact-modal-content {
        padding: 24px 20px;
    }
    
    .contact-modal-title {
        font-size: 1.3rem;
    }
    
    .contact-option {
        padding: 14px 16px;
    }
    
    .contact-option-icon {
        width: 36px;
        height: 36px;
    }
}

/* ---------- Theme Toggle Button ---------- */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 2px 12px rgba(255, 75, 108, 0.6),
        0 0 18px rgba(255, 75, 108, 0.4),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.theme-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.theme-toggle-btn:hover::before {
    width: 60px;
    height: 60px;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 30px rgba(255, 75, 108, 0.8),
        0 0 24px rgba(255, 75, 108, 0.6),
        inset 0 0 9px rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

.theme-icon {
    font-size: 1.1rem;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon-light {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.light-mode .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

.light-mode .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ---------- Light Mode Styles ---------- */
.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent-primary: #00b3ff;
    --accent-secondary: #00f5ff;
    --border-color: rgba(0, 179, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.light-mode body {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
    color: var(--text-primary);
}

.light-mode body::before {
    opacity: 0.3;
    background:
        radial-gradient(circle at 20% 0, rgba(255, 75, 108, 0.08), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(255, 147, 70, 0.06), transparent 65%);
}

.light-mode .site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid var(--border-color);
}

.light-mode .nav-inner {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-primary);
    box-shadow: 0 0 5px var(--shadow-color), 0 0 18px rgba(255, 75, 108, 0.2);
}

.light-mode .logo-text {
    background: linear-gradient(90deg, #ff4b6c, #ff9346, #ff4b6c, #ff6b8a, #ff4b6c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255, 75, 108, 0.4));
}

.light-mode .logo-shield {
    filter: 
        drop-shadow(0 0 6px rgba(255, 75, 108, 0.8))
        drop-shadow(0 0 9px rgba(255, 147, 70, 0.6))
        brightness(0.9)
        contrast(1.2);
}

.light-mode .mobile-logo-shield {
    filter: 
        drop-shadow(0 0 5px rgba(255, 75, 108, 0.8))
        drop-shadow(0 0 18px rgba(255, 147, 70, 0.6))
        brightness(0.9)
        contrast(1.2);
}

.light-mode .nav-link {
    color: var(--text-primary);
}

.light-mode .nav-link:hover {
    color: var(--accent-primary);
}

.light-mode .nav-link.active {
    background: rgba(255, 75, 108, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.light-mode .card,
.light-mode .get-started-card,
.light-mode .updates-support-card,
.light-mode .connect-card,
.light-mode .neo-category-card,
.light-mode .neo-price-card,
.light-mode .about-skill-card,
.light-mode .bx-card,
.light-mode .bx-panel {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    color: var(--text-primary);
}

.light-mode .card:hover,
.light-mode .get-started-card:hover,
.light-mode .updates-support-card:hover,
.light-mode .connect-card:hover {
    box-shadow: 0 8px 18px var(--shadow-color), 0 0 5px rgba(255, 75, 108, 0.3);
    border-color: var(--accent-primary);
}

.light-mode .btn-primary {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    box-shadow: 0 4px 9px rgba(255, 75, 108, 0.4);
}

.light-mode .btn-primary:hover {
    box-shadow: 0 6px 15px rgba(255, 75, 108, 0.6);
}

.light-mode .section-title,
.light-mode h1,
.light-mode h2,
.light-mode h3 {
    color: var(--text-primary);
}

.light-mode p,
.light-mode .card p,
.light-mode .get-started-desc,
.light-mode .updates-support-desc {
    color: var(--text-secondary);
}

.light-mode .site-footer {
    background: #ffffff;
    border-top-color: var(--border-color);
    color: var(--text-secondary);
}

.light-mode .footer-inner {
    color: var(--text-primary);
}

.light-mode .footer-inner span {
    color: var(--text-primary);
}

/* ---------- Light Mode Connect Cards ---------- */
.light-mode .connect-text {
    color: var(--text-primary);
    font-weight: 700;
}

.light-mode .connect-card:hover .connect-text {
    color: var(--accent-primary);
    text-shadow: 0 0 5px rgba(255, 75, 108, 0.4);
}

/* ---------- Light Mode Category & Price Cards ---------- */
.light-mode .neo-category-features li {
    color: var(--text-primary);
}

.light-mode .neo-price-features li {
    color: var(--text-primary);
}

.light-mode .neo-category-title {
    color: var(--text-primary);
}

.light-mode .neo-price-name {
    color: var(--text-primary);
}

.light-mode .neo-price-main {
    color: var(--text-primary);
}

.light-mode .neo-price-unit {
    color: var(--text-secondary);
}

.light-mode .neo-price-alt {
    color: var(--text-secondary);
}

.light-mode .neo-price-features {
    color: var(--text-primary);
}

.light-mode .neo-price-features li {
    color: var(--text-primary);
}

.light-mode .neo-category-badge {
    color: #ffffff;
}

.light-mode .neo-check {
    color: var(--accent-primary);
}

/* ---------- Light Mode Card Text ---------- */
.light-mode .feature-icon {
    background: radial-gradient(circle, rgba(255, 100, 150, 0.25), rgba(255, 80, 120, 0.15));
    border-color: rgba(255, 145, 185, 0.4);
    box-shadow: 0 4px 12px rgba(255, 75, 108, 0.4);
    filter: drop-shadow(0 0 5px rgba(255, 100, 150, 0.5));
}

.light-mode .card:hover .feature-icon {
    box-shadow: 0 6px 12px rgba(255, 100, 150, 0.6);
    filter: drop-shadow(0 0 5px rgba(255, 120, 170, 0.7));
    border-color: rgba(255, 190, 215, 0.6);
}

.light-mode .card h3 {
    color: var(--text-primary);
}

.light-mode .get-started-title {
    color: var(--text-primary);
}

.light-mode .updates-support-title {
    color: var(--text-primary);
}

.light-mode .updates-support-desc {
    color: var(--text-secondary);
}

.light-mode .get-started-content p {
    color: var(--text-secondary);
}

.light-mode .about-info-label {
    color: var(--text-primary);
    font-weight: 600;
}

.light-mode .about-info-value {
    color: var(--text-secondary);
}

.light-mode .about-skill-title {
    color: var(--text-primary);
}

.light-mode .about-skill-subtitle {
    color: var(--text-secondary);
}

.light-mode .about-skill-tag {
    color: var(--text-primary) !important;
    background: rgba(255, 75, 108, 0.1) !important;
    border-color: rgba(255, 75, 108, 0.3) !important;
}

.light-mode .about-skill-tag:hover {
    background: rgba(255, 75, 108, 0.2) !important;
    color: var(--accent-primary) !important;
}

/* ---------- Light Mode Auth Cards (Login/Register) ---------- */
.light-mode .auth-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
}

.light-mode .form-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.3);
    box-shadow: 
        0 20px 36px rgba(0, 0, 0, 0.08),
        0 0 18px rgba(255, 75, 108, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.light-mode .form-box h2 {
    color: var(--text-primary);
    text-shadow: none;
}

.light-mode .form-desc {
    color: var(--text-secondary);
}

.light-mode .input-field {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 75, 108, 0.3);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.light-mode .input-field::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.light-mode .input-field:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 3px rgba(255, 75, 108, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

.light-mode .form-extra {
    color: var(--text-secondary);
}

.light-mode .form-extra a {
    color: var(--accent-primary);
    font-weight: 600;
}

.light-mode .form-extra a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* ---------- Light Mode Profile Information Card ---------- */
.light-mode .about-sidebar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.2);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 5px rgba(255, 75, 108, 0.1);
}

.light-mode .about-profile {
    border-bottom-color: rgba(255, 75, 108, 0.2);
}

.light-mode .about-name {
    color: var(--text-primary);
    text-shadow: none;
}

.light-mode .about-skills {
    color: var(--text-secondary);
}

.light-mode .about-role {
    color: var(--text-secondary);
}

.light-mode .about-section-title {
    color: var(--text-primary);
}

.light-mode .about-info-section {
    background: transparent;
}

.light-mode .about-info-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 75, 108, 0.15);
    color: var(--text-primary);
}

.light-mode .about-info-item:hover {
    background: rgba(255, 75, 108, 0.08);
    border-color: rgba(255, 75, 108, 0.3);
    transform: translateX(5px);
}

.light-mode .about-info-label {
    color: var(--text-primary);
    font-weight: 700;
}

.light-mode .about-info-value {
    color: var(--text-primary);
    font-weight: 500;
    opacity: 1;
}

.light-mode .about-avatar-img {
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .about-avatar-badge {
    border-color: #ffffff;
    box-shadow: 0 0 9px rgba(255, 75, 108, 0.5);
}

/* ---------- Light Mode Dashboard Styles ---------- */
.light-mode .dashboard-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
}

.light-mode .bx-dashboard-layout {
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.1), 0 0 18px rgba(255, 75, 108, 0.15);
}

.light-mode .bx-dashboard-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.light-mode .bx-sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
    border-right-color: rgba(255, 75, 108, 0.25);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
}

.light-mode .bx-sidebar-close-btn {
    background: rgba(255, 75, 108, 0.1);
    border-color: rgba(255, 75, 108, 0.3);
    color: #aa1a4d;
}

.light-mode .bx-sidebar-close-btn:hover {
    background: rgba(255, 75, 108, 0.2);
    border-color: rgba(255, 75, 108, 0.5);
    color: #8b153d;
    box-shadow: 0 0 9px rgba(255, 75, 108, 0.4);
}

.light-mode .bx-menu-toggle span {
    background: #ff4b6c;
    box-shadow: 0 0 6px rgba(255, 75, 108, 0.6);
}

.light-mode .bx-menu-toggle:hover span {
    box-shadow: 0 0 6px rgba(255, 75, 108, 0.9);
}

.light-mode .bx-sidebar::before {
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 75, 108, 0.15) 20%,
        rgba(255, 147, 70, 0.15) 50%,
        rgba(255, 75, 108, 0.15) 80%,
        transparent 100%);
}

.light-mode .bx-sidebar-header {
    background: rgba(255, 75, 108, 0.06);
    border-color: rgba(255, 120, 160, 0.25);
}

.light-mode .bx-logo-container {
    background: rgba(255, 75, 108, 0.08);
    border-color: rgba(255, 147, 70, 0.25);
}

.light-mode .bx-sidebar-logo {
    filter: drop-shadow(0 0 6px rgba(255, 147, 70, 0.5)) 
            drop-shadow(0 0 5px rgba(255, 75, 108, 0.4));
}

.light-mode .bx-brand-title {
    color: #1a1a2e;
    font-weight: 700;
    text-shadow: 
        0 0 5px rgba(255, 75, 108, 0.3),
        0 0 9px rgba(255, 147, 70, 0.2);
}

.light-mode .bx-brand-sub {
    color: #4a5568;
    text-shadow: 0 0 6px rgba(255, 180, 211, 0.3);
}

.light-mode .bx-nav-title {
    color: #4a5568;
    font-weight: 700;
    background: rgba(255, 75, 108, 0.04);
    border-color: rgba(255, 120, 160, 0.2);
    text-shadow: 0 0 5px rgba(255, 180, 211, 0.3);
}

.light-mode .bx-nav-link {
    color: #1a1a2e;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 75, 108, 0.2);
    text-shadow: none;
}

.light-mode .bx-nav-link::before {
    background: linear-gradient(180deg, rgba(255, 75, 108, 0.5), rgba(255, 147, 70, 0.5));
}

.light-mode .bx-nav-link:hover {
    background: rgba(255, 75, 108, 0.12);
    border-color: rgba(255, 75, 108, 0.4);
    color: #ff4b6c;
    box-shadow: 
        0 6px 16px rgba(255, 75, 108, 0.25),
        0 0 5px rgba(255, 75, 108, 0.15),
        inset 0 0 9px rgba(255, 75, 108, 0.06);
}

.light-mode .bx-nav-link:hover .bx-nav-icon {
    filter: drop-shadow(0 0 6px rgba(255, 75, 108, 0.6));
}

.light-mode .bx-nav-link.active {
    background: linear-gradient(135deg, rgba(255, 75, 108, 0.22), rgba(255, 147, 70, 0.18));
    color: #ff4b6c;
    font-weight: 600;
    border-color: rgba(255, 75, 108, 0.5);
    box-shadow: 
        0 8px 28px rgba(255, 75, 120, 0.3),
        0 0 18px rgba(255, 147, 70, 0.2),
        inset 0 0 9px rgba(255, 255, 255, 0.4),
        inset -2px 0 15px rgba(255, 75, 108, 0.2);
    text-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .bx-nav-link.active::before {
    background: linear-gradient(180deg, rgba(255, 75, 108, 0.9), rgba(255, 147, 70, 0.9));
    box-shadow: 
        0 0 5px rgba(255, 75, 108, 0.7),
        0 0 5px rgba(255, 147, 70, 0.5);
}

.light-mode .bx-nav-link.active .bx-nav-icon {
    filter: drop-shadow(0 0 5px rgba(255, 75, 108, 0.7));
}

.light-mode .bx-nav-link.danger {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.25);
}

.light-mode .bx-nav-link.danger:hover {
    background: rgba(220, 53, 69, 0.18);
    border-color: rgba(220, 53, 69, 0.45);
    color: #c82333;
    box-shadow: 
        0 6px 16px rgba(220, 53, 69, 0.25),
        inset 0 0 9px rgba(220, 53, 69, 0.12);
}

.light-mode .bx-nav-divider {
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 120, 160, 0.25),
        rgba(255, 147, 70, 0.25),
        rgba(255, 120, 160, 0.25),
        transparent);
}

.light-mode .bx-nav-divider::before {
    background: rgba(255, 147, 70, 0.6);
    box-shadow: 0 0 6px rgba(255, 147, 70, 0.4);
}

.light-mode .bx-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.light-mode .bx-topbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 75, 108, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.light-mode .bx-top-title {
    color: var(--text-primary);
    font-weight: 600;
}

.light-mode .bx-back-btn {
    background: rgba(255, 75, 108, 0.15);
    color: var(--accent-primary);
}

.light-mode .bx-back-btn:hover {
    background: rgba(255, 75, 108, 0.25);
}

.light-mode .bx-search-wrap input {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 75, 108, 0.3);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.light-mode .bx-search-wrap input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.light-mode .bx-search-wrap input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 75, 108, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.light-mode .bx-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 9px rgba(255, 75, 108, 0.1);
}

.light-mode .bx-card:hover {
    border-color: rgba(255, 75, 108, 0.5);
    box-shadow: 
        0 8px 18px rgba(0, 0, 0, 0.12),
        0 0 9px rgba(255, 75, 108, 0.2);
}

.light-mode .bx-card-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.light-mode .bx-card-value {
    color: var(--text-primary);
    font-weight: 700;
}

.light-mode .bx-card-meta {
    color: var(--text-secondary);
}

.light-mode .bx-status.good {
    background: rgba(0, 200, 140, 0.25);
    color: #006b4f;
    border: 1px solid rgba(0, 200, 140, 0.4);
    font-weight: 600;
    box-shadow: 0 0 6px rgba(0, 200, 140, 0.35);
}

.light-mode .bx-status.good:hover {
    background: rgba(0, 200, 140, 0.35);
    color: #004d38;
    box-shadow: 0 0 9px rgba(0, 200, 140, 0.5);
}

.light-mode .bx-status.bad {
    background: rgba(255, 80, 120, 0.25);
    color: #aa1a4d;
    border: 1px solid rgba(255, 80, 120, 0.4);
    font-weight: 600;
    box-shadow: 0 0 6px rgba(255, 80, 120, 0.35);
}

.light-mode .bx-status.bad:hover {
    background: rgba(255, 80, 120, 0.35);
    color: #8b153d;
    box-shadow: 0 0 9px rgba(255, 80, 120, 0.5);
}

.light-mode .bx-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.3);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08), 0 0 5px rgba(255, 75, 108, 0.1);
}

.light-mode .bx-panel-header h2 {
    color: var(--text-primary);
    font-weight: 700;
}

.light-mode .bx-table th {
    color: var(--text-primary);
    font-weight: 600;
    border-bottom-color: rgba(255, 75, 108, 0.2);
}

.light-mode .bx-table td {
    color: var(--text-primary);
    border-bottom-color: rgba(255, 75, 108, 0.15);
}

.light-mode .bx-table tbody tr:hover {
    background: rgba(255, 75, 108, 0.08);
    box-shadow: inset 4px 0 0 rgba(255, 75, 108, 0.4);
}

.light-mode .bx-table-empty {
    color: var(--text-secondary);
}

.light-mode .bx-table-link {
    color: var(--accent-primary);
    font-weight: 600;
}

.light-mode .bx-table-link:hover {
    color: var(--accent-secondary);
    background: rgba(255, 75, 108, 0.15);
    box-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .bx-download-btn {
    background: linear-gradient(135deg, rgba(255, 75, 108, 0.9), rgba(255, 147, 70, 0.9));
    border-color: rgba(255, 75, 108, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 9px rgba(255, 75, 108, 0.4);
}

.light-mode .bx-download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 100, 150, 1), rgba(255, 160, 90, 1));
    box-shadow: 
        0 8px 15px rgba(255, 75, 108, 0.6),
        0 0 18px rgba(255, 75, 108, 0.4);
}

/* ---------- Light Mode Buy Tab Back Button ---------- */
.light-mode .neo-pricing-back-btn {
    background: rgba(255, 75, 108, 0.15);
    color: var(--accent-primary);
    border-color: rgba(255, 75, 108, 0.4);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 75, 108, 0.2);
}

.light-mode .neo-pricing-back-btn:hover {
    background: rgba(255, 75, 108, 0.25);
    color: var(--accent-secondary);
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 0 4px 12px rgba(255, 75, 108, 0.3);
    transform: translateX(-2px);
}

/* ---------- Light Mode FAQ Section ---------- */
.light-mode .neo-updates-faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.light-mode .neo-faq-title {
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .faq-toggle-track {
    background: rgba(250, 240, 245, 0.9);
    border-color: rgba(255, 75, 108, 0.4);
}

.light-mode .faq-toggle-indicator {
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    box-shadow: 
        0 0 9px rgba(255, 75, 108, 0.5),
        0 0 9px rgba(255, 147, 70, 0.3),
        inset 0 0 6px rgba(255, 255, 255, 0.3);
}

.light-mode .faq-toggle-label-en {
    color: var(--text-primary);
}

.light-mode .faq-toggle-label-si {
    color: rgba(100, 100, 100, 0.7);
}

.light-mode .faq-toggle-track.active-si .faq-toggle-label-en {
    color: rgba(100, 100, 100, 0.7);
}

.light-mode .faq-toggle-track.active-si .faq-toggle-label-si {
    color: var(--text-primary);
}

.light-mode .faq-toggle-track:hover {
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 0 0 6px rgba(255, 75, 108, 0.25);
}

.light-mode .neo-faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 9px rgba(255, 75, 108, 0.1);
}

.light-mode .neo-faq-item:hover {
    border-color: rgba(255, 75, 108, 0.5);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12), 0 0 5px rgba(255, 75, 108, 0.15);
}

.light-mode .neo-faq-header {
    background: transparent;
}

.light-mode .neo-faq-question {
    color: var(--text-primary);
    font-weight: 600;
}

.light-mode .neo-faq-toggle {
    color: var(--accent-primary);
}

.light-mode .neo-faq-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    color: var(--text-secondary);
}

.light-mode .neo-faq-item.open .neo-faq-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
}

.light-mode .neo-faq-body img {
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.2), 0 0 5px rgba(0, 102, 255, 0.15);
}

.light-mode .neo-faq-body img:hover {
    box-shadow: 0 6px 12px rgba(0, 245, 255, 0.4), 0 0 18px rgba(0, 102, 255, 0.3);
}

.light-mode .neo-faq-body strong {
    color: var(--accent-primary);
}

.light-mode .faq-download-btn {
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    box-shadow: 
        0 4px 9px rgba(255, 75, 108, 0.3),
        0 0 5px rgba(255, 147, 70, 0.2);
    border: 1px solid rgba(255, 75, 108, 0.3);
}

.light-mode .faq-download-btn:hover {
    box-shadow: 
        0 6px 12px rgba(255, 75, 108, 0.5),
        0 0 18px rgba(255, 147, 70, 0.4);
    background: linear-gradient(135deg, #ff5b7c, #ffa356);
}

/* ---------- Light Mode Pricing Section Titles ---------- */
.light-mode .neo-pricing-container-title {
    color: var(--text-primary);
}

.light-mode .neo-pricing-container-subtitle {
    color: var(--text-secondary);
}

/* ---------- Light Mode Mobile Menu ---------- */
.light-mode .mobile-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-right-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1), 10px 0 40px rgba(0, 0, 0, 0.15);
}

.light-mode .mobile-menu-header {
    border-bottom-color: rgba(0, 245, 255, 0.4);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 245, 255, 0.2);
}

.light-mode .mobile-logo-sub {
    color: #00f5ff;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.4);
}

.light-mode .mobile-menu-close {
    border-color: #00f5ff;
    color: var(--text-primary);
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
    text-shadow: none;
}

.light-mode .mobile-menu-close:hover {
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
    border-color: #00f5ff;
    color: #00f5ff;
}

.light-mode .mobile-nav-link {
    color: var(--text-primary);
    border-left-color: transparent;
}

.light-mode .mobile-nav-link:hover {
    background: rgba(0, 245, 255, 0.1);
    border-left-color: #00f5ff;
    color: #00f5ff;
    text-shadow: none;
}

.light-mode .mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.2), rgba(0, 102, 255, 0.15));
    border-left-color: #00f5ff;
    color: #00f5ff;
    text-shadow: none;
    box-shadow: inset 0 0 9px rgba(0, 245, 255, 0.15);
}

.light-mode .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.light-mode .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 75, 108, 0.3);
}

.light-mode .mobile-menu-toggle span {
    background: var(--accent-primary);
}

.light-mode .mobile-menu-toggle:hover {
    background: rgba(255, 75, 108, 0.15);
    border-color: rgba(255, 75, 108, 0.5);
}

/* ---------- Light Mode Contact Modal ---------- */
.light-mode .contact-modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.light-mode .contact-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 21px rgba(0, 245, 255, 0.2);
}

.light-mode .contact-modal-title {
    color: var(--text-primary);
    font-weight: 700;
}

.light-mode .contact-modal-description {
    color: var(--text-secondary);
    opacity: 1;
}

.light-mode .contact-modal-icon {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 9px rgba(0, 245, 255, 0.2);
}

.light-mode .contact-modal-close {
    color: var(--accent-primary);
}

.light-mode .contact-modal-close:hover {
    background: rgba(0, 245, 255, 0.15);
    color: #0066ff;
}

.light-mode ::-webkit-scrollbar-track {
    background: rgba(245, 245, 247, 0.8);
    border-left-color: rgba(255, 75, 108, 0.3);
}

.light-mode ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4b6c, #ff9346);
    box-shadow: 
        0 0 6px rgba(255, 75, 108, 0.5),
        inset 0 0 6px rgba(255, 75, 108, 0.2);
}

.light-mode * {
    scrollbar-color: #ff4b6c rgba(245, 245, 247, 0.8);
}

/* ---------- Light Mode Home Page Styles ---------- */
.light-mode .hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
}

.light-mode .hero-bg-veil {
    background: radial-gradient(circle at top left, rgba(255, 75, 108, 0.08), transparent 60%);
    opacity: 0.5;
}

.light-mode .hero-subtitle {
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .hero-description {
    color: var(--text-secondary);
    opacity: 0.9;
}

.light-mode .hero-about-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.3);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 75, 108, 0.15);
}

.light-mode .hero-about-title {
    color: var(--text-primary);
}

.light-mode .hero-about-desc {
    color: var(--text-secondary);
}

.light-mode .hero-about-item {
    color: var(--text-secondary);
}

.light-mode .hero-about-item strong {
    color: var(--accent-primary);
}

/* Light Mode - New Hero Section */
.light-mode .hero-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.light-mode .hero-bg-pattern {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 75, 108, 0.06), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 147, 70, 0.05), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 75, 108, 0.04), transparent 60%);
}

.light-mode .hero-main-logo {
    filter: 
        drop-shadow(0 0 9px rgba(255, 75, 108, 0.6))
        drop-shadow(0 0 18px rgba(255, 147, 70, 0.5))
        drop-shadow(0 0 45px rgba(255, 75, 108, 0.4));
}

.light-mode .hero-title-line {
    color: #c41e3a;
    text-shadow:
        0 0 9px rgba(196, 30, 58, 0.6),
        0 0 18px rgba(196, 30, 58, 0.4),
        0 0 27px rgba(196, 30, 58, 0.3);
}

.light-mode .hero-subtitle-new {
    color: #aa1a4d;
    text-shadow: 0 0 6px rgba(170, 26, 77, 0.4);
}

.light-mode .hero-description-new {
    color: #2d2d2d;
    opacity: 0.9;
}

.light-mode .hero-btn-primary {
    background: linear-gradient(135deg, #ff4b6c, #ff9346);
    color: #ffffff;
    box-shadow: 
        0 4px 12px rgba(255, 75, 108, 0.4),
        0 0 18px rgba(255, 75, 108, 0.25);
}

.light-mode .hero-btn-primary:hover {
    box-shadow: 
        0 8px 18px rgba(255, 75, 108, 0.6),
        0 0 24px rgba(255, 75, 108, 0.4),
        0 0 36px rgba(255, 75, 108, 0.3);
}

.light-mode .hero-btn-secondary {
    background: rgba(255, 75, 108, 0.12);
    color: #aa1a4d;
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 
        0 4px 12px rgba(255, 75, 108, 0.25),
        inset 0 0 5px rgba(255, 75, 108, 0.08);
}

.light-mode .hero-btn-secondary:hover {
    background: rgba(255, 75, 108, 0.2);
    color: #8b153d;
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 
        0 8px 18px rgba(255, 75, 108, 0.4),
        0 0 24px rgba(255, 75, 108, 0.25),
        inset 0 0 9px rgba(255, 75, 108, 0.12);
}

.light-mode .hero-about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-color: rgba(255, 75, 108, 0.35);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 18px rgba(255, 75, 108, 0.2),
        inset 0 0 18px rgba(255, 75, 108, 0.03);
}

.light-mode .hero-about-title-new {
    color: #1a1a1a;
    text-shadow: 0 0 5px rgba(255, 75, 108, 0.3);
}

.light-mode .hero-about-desc-new {
    color: #4a4a4a;
    opacity: 1;
}

.light-mode .hero-info-item {
    background: rgba(255, 75, 108, 0.08);
    border-color: rgba(255, 75, 108, 0.25);
}

.light-mode .hero-info-item:hover {
    background: rgba(255, 75, 108, 0.12);
    border-color: rgba(255, 75, 108, 0.4);
    box-shadow: 0 4px 9px rgba(255, 75, 108, 0.2);
}

.light-mode .hero-info-label {
    color: #666666;
}

.light-mode .hero-info-value {
    color: #1a1a1a;
}

.light-mode .neo-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.light-mode .section-title {
    color: var(--text-primary);
}

.light-mode .about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f7 100%);
}

@media (max-width: 768px) {
    .theme-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
    
    .theme-icon {
        font-size: 0.95rem;
    }
    
    .faq-header-wrapper {
        position: relative;
    }
    
    .faq-language-toggle {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 20px;
    }
    
    .faq-toggle-track {
        margin: 0 auto;
    }
    
    .neo-faq-title {
        margin-bottom: 8px;
    }
}

/* ---------- Light Mode Form Styles ---------- */
.light-mode .bx-form-label {
    color: var(--text-primary);
}

.light-mode .bx-form-input,
.light-mode .bx-form-textarea {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 75, 108, 0.3);
    color: var(--text-primary);
}

.light-mode .bx-form-input:focus,
.light-mode .bx-form-textarea:focus {
    border-color: rgba(255, 75, 108, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 75, 108, 0.15), 0 0 9px rgba(255, 120, 180, 0.2);
    background: rgba(255, 255, 255, 1);
}

.light-mode .bx-form-file {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 245, 255, 0.3);
    color: var(--text-primary);
}

.light-mode .bx-form-file:hover {
    border-color: rgba(0, 245, 255, 0.5);
    background: rgba(255, 255, 255, 1);
}

.light-mode .bx-form-help {
    color: var(--text-secondary);
}

.light-mode .bx-image-preview-item {
    border-color: rgba(0, 245, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.light-mode .bx-btn-secondary {
    background: rgba(255, 75, 108, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 75, 108, 0.3);
}

.light-mode .bx-btn-secondary:hover {
    background: rgba(255, 75, 108, 0.2);
    border-color: rgba(255, 75, 108, 0.5);
}

/* Light Mode - HWID Reset Button */
.light-mode .bx-btn-reset {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.7), rgba(255, 0, 0, 0.65));
    border: 2px solid rgba(220, 20, 60, 0.9);
    color: #ffffff;
    box-shadow: 
        0 0 5px rgba(220, 20, 60, 0.6),
        0 4px 12px rgba(255, 0, 0, 0.4);
    font-weight: 700;
}

.light-mode .bx-btn-reset:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.85), rgba(255, 0, 0, 0.8));
    border-color: rgba(255, 0, 0, 1);
    box-shadow: 
        0 0 18px rgba(220, 20, 60, 0.8),
        0 6px 18px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.light-mode .bx-btn-reset:disabled {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.3), rgba(220, 220, 220, 0.25));
    border-color: rgba(180, 180, 180, 0.5);
    color: #999999;
    box-shadow: none;
}

/* Light Mode - Modal Styles */
.light-mode .bx-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.light-mode .bx-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.95));
    border: 2px solid rgba(255, 100, 140, 0.6);
    box-shadow: 
        0 20px 36px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(255, 80, 120, 0.4),
        0 0 36px rgba(255, 75, 108, 0.2);
}

.light-mode .bx-modal-content.bx-modal-red {
    border-color: rgba(220, 20, 60, 0.9);
    box-shadow: 
        0 20px 36px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(220, 20, 60, 0.7),
        0 0 80px rgba(255, 0, 0, 0.5),
        0 0 120px rgba(255, 0, 0, 0.2),
        inset 0 0 5px rgba(220, 20, 60, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 240, 240, 0.98));
}

.light-mode .bx-modal-header {
    border-bottom: 2px solid rgba(255, 150, 190, 0.4);
    background: linear-gradient(135deg, rgba(255, 248, 250, 0.5), rgba(255, 240, 245, 0.3));
}

.light-mode .bx-modal-header h2 {
    color: #c41e3a;
    text-shadow: 0 0 6px rgba(220, 20, 60, 0.6), 0 0 5px rgba(255, 0, 0, 0.4);
    font-weight: 800;
}

.light-mode .bx-modal-close {
    color: #c41e3a;
    background: rgba(220, 20, 60, 0.15);
}

.light-mode .bx-modal-close:hover {
    background: rgba(220, 20, 60, 0.3);
    color: #a01a2e;
    box-shadow: 0 0 6px rgba(220, 20, 60, 0.5);
}

.light-mode .bx-modal-body {
    color: #000000;
}

.light-mode .bx-modal-body p {
    color: #0a0a0a;
    font-weight: 600;
    line-height: 1.6;
    font-size: 1rem;
}

.light-mode .bx-modal-body p strong {
    color: #a01a2e;
    font-weight: 900;
    font-size: 1.1em;
}

/* Light Mode - Danger Button */
.light-mode .bx-btn-danger {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.95), rgba(255, 0, 0, 0.9));
    border: 2px solid rgba(220, 20, 60, 1);
    color: #ffffff;
    box-shadow: 
        0 0 5px rgba(220, 20, 60, 0.7),
        0 4px 12px rgba(255, 0, 0, 0.5);
    font-weight: 700;
}

.light-mode .bx-btn-danger:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 1), rgba(255, 0, 0, 0.95));
    border-color: rgba(255, 0, 0, 1);
    box-shadow: 
        0 0 18px rgba(220, 20, 60, 0.9),
        0 6px 18px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Light Mode - New Dashboard Styles */
.light-mode .bx-welcome-banner {
    background: linear-gradient(135deg, rgba(255, 248, 250, 0.95), rgba(255, 240, 245, 0.9));
    border-color: rgba(255, 100, 140, 0.5);
    box-shadow: 0 8px 19px rgba(0, 0, 0, 0.15);
}

.light-mode .bx-welcome-title {
    color: #2d2d2d;
    text-shadow: none;
}

.light-mode .bx-welcome-name {
    color: #c41e3a;
}

.light-mode .bx-welcome-subtitle {
    color: #555555;
}

.light-mode .bx-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 252, 0.9));
    border-color: rgba(255, 100, 140, 0.4);
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
}

.light-mode .bx-stat-label {
    color: #666666;
}

.light-mode .bx-stat-value,
.light-mode .bx-stat-value-small {
    color: #1a1a1a;
}

.light-mode .bx-stat-badge {
    font-weight: 600;
}

.light-mode .bx-stat-badge.verified {
    background: rgba(0, 200, 140, 0.25);
    color: #006b4f;
    border: 1px solid rgba(0, 200, 140, 0.5);
    font-weight: 700;
}

.light-mode .bx-stat-badge.success {
    background: rgba(0, 200, 140, 0.25);
    color: #006b4f;
    border: 1px solid rgba(0, 200, 140, 0.5);
    font-weight: 700;
}

.light-mode .bx-stat-badge.warning {
    background: rgba(255, 80, 120, 0.25);
    color: #aa1a4d;
    border: 1px solid rgba(255, 80, 120, 0.5);
    font-weight: 700;
}

.light-mode .bx-product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 252, 0.9));
    border-color: rgba(255, 100, 140, 0.4);
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
}

.light-mode .bx-product-name {
    color: #1a1a1a;
}

.light-mode .bx-product-version {
    color: #666666;
}

.light-mode .bx-product-badge {
    background: linear-gradient(135deg, rgba(255, 75, 108, 0.25), rgba(255, 147, 70, 0.2));
    border: 1px solid rgba(255, 100, 140, 0.6);
    color: #aa1a4d;
    font-weight: 700;
    text-shadow: none;
}

.light-mode .bx-product-btn-primary {
    background: linear-gradient(135deg, rgba(255, 75, 108, 0.9), rgba(255, 147, 70, 0.85));
    border-color: rgba(255, 100, 140, 0.7);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(255, 75, 108, 0.4), 0 0 9px rgba(255, 75, 108, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.light-mode .bx-product-btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 90, 130, 1), rgba(255, 160, 90, 0.95));
    border-color: rgba(255, 140, 180, 0.9);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 75, 108, 0.6), 0 0 9px rgba(255, 75, 108, 0.4);
}

.light-mode .bx-product-btn-secondary {
    background: rgba(255, 150, 190, 0.3);
    border-color: rgba(255, 150, 190, 0.6);
    color: #aa1a4d;
    font-weight: 700;
    text-shadow: none;
}

.light-mode .bx-product-btn-secondary:hover {
    background: rgba(255, 150, 190, 0.45);
    border-color: rgba(255, 150, 190, 0.8);
    color: #8b153d;
    box-shadow: 0 4px 9px rgba(255, 150, 190, 0.4);
}

.light-mode .bx-section-title {
    color: #1a1a1a;
    text-shadow: none;
}

.light-mode .bx-section-subtitle {
    color: #666666;
}

.light-mode .bx-welcome-logo {
    filter: 
        drop-shadow(0 0 9px rgba(255, 75, 108, 0.7))
        drop-shadow(0 0 18px rgba(220, 20, 60, 0.5))
        drop-shadow(0 0 45px rgba(255, 75, 108, 0.3));
}

.light-mode .bx-welcome-banner:hover .bx-welcome-logo {
    filter: 
        drop-shadow(0 0 5px rgba(255, 75, 108, 0.9))
        drop-shadow(0 0 24px rgba(220, 20, 60, 0.7))
        drop-shadow(0 0 36px rgba(255, 75, 108, 0.5));
}