/* ===================================
   CYBER THEME - Auto LastWar
   Modern futuristic design with 3D effects
   =================================== */

:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
    
    /* Cyber colors */
    --cyber-primary: #00d9ff;
    --cyber-secondary: #ff006e;
    --cyber-accent: #8338ec;
    --cyber-dark: #0a0e27;
    --cyber-darker: #050816;
    --cyber-glow: rgba(0, 217, 255, 0.4);
}

/* ========== BODY & BACKGROUND ========== */
body {
    font-family: 'Inter', sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    color: #e5e7eb;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    font-size: 0.95rem;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255, 0, 110, 0.15), transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(131, 56, 236, 0.15), transparent 40%);
    z-index: -1;
    animation: bgPulse 15s ease infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

html {
    scroll-behavior: smooth;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 0.9rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.35rem; }
}
.text-muted{
    color: var(--text-light) !important;
}
/* ========== NAVBAR - CYBER GLASS ========== */
.navbar {
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 217, 255, 0.1);
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00d9ff 20%, 
        #8338ec 50%, 
        #ff006e 80%, 
        transparent 100%);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.navbar-brand {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 8px 16px 8px 15px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.08) 0%,
        rgba(131, 56, 236, 0.08) 50%,
        rgba(255, 0, 110, 0.08) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%,
        #00d9ff 20%,
        #8338ec 50%,
        #ff006e 80%,
        transparent 100%);
    animation: lineMove 2s ease-in-out infinite;
}

@keyframes lineMove {
    0%, 100% { transform: translateY(-20px); opacity: 0.3; }
    50% { transform: translateY(20px); opacity: 1; }
}

.logo-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.logo-container:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out infinite;
}

.logo-container:hover {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.15) 0%,
        rgba(131, 56, 236, 0.15) 50%,
        rgba(255, 0, 110, 0.15) 100%);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.5),
                inset 0 0 30px rgba(0, 217, 255, 0.1);
    transform: translateY(-3px) scale(1.03);
}

/* Hexagon background */
.logo-hexagon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hex-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(131, 56, 236, 0.2));
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: hexRotate 8s linear infinite;
    border: 1px solid rgba(0, 217, 255, 0.4);
    z-index: 1;
}

@keyframes hexRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo icon - centered inside hexagon */
.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.logo-icon i {
    font-size: 1.4rem;
    color: #00d9ff;
    filter: drop-shadow(0 0 15px #00d9ff);
    animation: iconPulseNav 2s infinite, iconRotateY 4s ease-in-out infinite;
}

@keyframes iconPulseNav {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes iconRotateY {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

/* Logo text */
.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.logo-auto {
    background: linear-gradient(135deg, #00d9ff, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        1px 1px 0 rgba(0, 217, 255, 0.3),
        2px 2px 0 rgba(0, 217, 255, 0.2),
        3px 3px 0 rgba(0, 217, 255, 0.1),
        0 0 20px rgba(0, 217, 255, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-divider {
    color: #8338ec;
    font-weight: 300;
    opacity: 0.6;
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.logo-lastwar {
    background: linear-gradient(135deg, #8338ec, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        1px 1px 0 rgba(131, 56, 236, 0.3),
        2px 2px 0 rgba(131, 56, 236, 0.2),
        3px 3px 0 rgba(255, 0, 110, 0.1),
        0 0 20px rgba(255, 0, 110, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Logo glow effect */
.logo-glow-effect {
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.3) 25%,
        rgba(131, 56, 236, 0.3) 50%,
        rgba(255, 0, 110, 0.3) 75%,
        transparent 100%);
    border-radius: 50px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s;
    z-index: -1;
}

.logo-container:hover .logo-glow-effect {
    opacity: 1;
    animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-link {
    font-weight: 600;
    color: #a0aec0 !important;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem !important;
    border-radius: 12px;
    margin: 0 0.25rem;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d9ff, #8338ec);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00d9ff !important;
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: #00d9ff !important;
    background: rgba(0, 217, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Dropdown menu cyber style */
.dropdown-menu {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: 0.75rem 0;
}

.dropdown-item {
    color: #a0aec0;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    transform: translateX(5px);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Navbar toggler for mobile */
.navbar-toggler {
    border-color: rgba(0, 217, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 217, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar collapse alignment */
.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

/* Mobile navbar adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link.btn-login-nav,
    .navbar-nav .nav-link.btn-register-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin: 0.25rem 0;
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .navbar-nav .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}

/* ========== BUTTONS ========== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn:active {
    transform: translateY(1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Login button */
.btn-login {
    background: linear-gradient(135deg, #00d9ff 0%, #0ea5e9 100%);
    border-color: #00d9ff;
    color: #0a0e27;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-login:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 217, 255, 0.6);
    border-color: #0ea5e9;
}

.btn-login:hover::before {
    left: 0;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-login {
    animation: pulse 2s infinite;
}

/* Navbar buttons - Login */
.btn-login-nav {
    background: linear-gradient(135deg, #00d9ff 0%, #0ea5e9 100%) !important;
    color: #0a0e27 !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    border: 2px solid #00d9ff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-login-nav:hover {
    color: white !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5) !important;
    border-color: #0ea5e9 !important;
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav:active {
    transform: translateY(-1px);
}

@keyframes pulse-nav {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.7);
    }
}

.btn-login-nav {
    animation: pulse-nav 2s infinite;
}

/* Navbar buttons - Register */
.btn-register-nav {
    background: transparent !important;
    color: #00d9ff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    border: 2px solid #00d9ff !important;
    transition: all 0.3s ease !important;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.btn-register-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d9ff 0%, #0ea5e9 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-register-nav:hover {
    color: #0a0e27 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3) !important;
    border-color: #00d9ff !important;
}

.btn-register-nav:hover::before {
    left: 0;
}

.btn-register-nav:active {
    transform: translateY(-1px);
}

@keyframes pulse-register {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 217, 255, 0);
    }
}

.btn-register-nav {
    animation: pulse-register 2.5s infinite;
}

/* ========== CARDS ========== */
.card {
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.3);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.card-text {
    color: #cbd5f0;
    line-height: 1.6;
}

/* ========== FORMS ========== */
.form-control {
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ========== ALERTS ========== */
.alert {
    border: none;
    border-radius: 12px;
    font-weight: 500;
}

/* ========== FOOTER CYBER ========== */
.footer-cyber {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(25px);
    color: #a0aec0;
    padding: 50px 0 25px;
    margin-top: 5rem;
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00d9ff 20%, 
        #8338ec 50%, 
        #ff006e 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: borderGlow 3s linear infinite;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.footer-logo-icon i {
    font-size: 1.5rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px var(--cyber-primary));
    animation: iconPulse 3s infinite;
}

.footer-title {
    color: var(--cyber-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.footer-description {
    color: #8892b0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '▸';
    color: var(--cyber-primary);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-links a:hover {
    color: var(--cyber-primary);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8892b0;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--cyber-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

.footer-contact li a {
    color: #8892b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li a:hover {
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-contact li a i {
    color: var(--cyber-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--cyber-primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-3px);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: #fff;
    transform: scale(1.2);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 217, 255, 0.3) 20%, 
        rgba(131, 56, 236, 0.3) 50%, 
        rgba(255, 0, 110, 0.3) 80%, 
        transparent 100%);
    margin: 30px 0 20px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    color: #8892b0;
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright .text-cyan {
    color: var(--cyber-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-cyber {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-cyber {
        padding: 35px 0 20px;
    }
    
    .footer-logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-icon i {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-cyber {
        padding: 30px 0 15px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-icon i {
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
}

/* ========== FEATURE CARDS (Old style for other pages) ========== */
.feature-card {
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.feature-card h5 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========== BADGES ========== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.badge-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.badge-lg {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.badge-primary {background: linear-gradient(310deg, #5e72e4 0%, #825ee4 100%); color: white;}
.badge-secondary {background: linear-gradient(310deg, #8898aa 0%, #6c757d 100%); color: white;}
.badge-success {background: linear-gradient(310deg, #2dce89 0%, #2dcecc 100%); color: white;}
.badge-info {background: linear-gradient(310deg, #11cdef 0%, #1171ef 100%); color: white;}
.badge-warning {background: linear-gradient(310deg, #fb6340 0%, #fbb140 100%); color: white;}
.badge-danger {background: linear-gradient(310deg, #f5365c 0%, #f56036 100%); color: white;}
.badge-light {background: linear-gradient(310deg, #f8f9fa 0%, #e9ecef 100%); color: #495057;}
.badge-dark {background: linear-gradient(310deg, #212529 0%, #343a40 100%); color: white;}

.bg-gradient-primary {background: linear-gradient(310deg, #5e72e4 0%, #825ee4 100%); color: white;}
.bg-gradient-secondary {background: linear-gradient(310deg, #8898aa 0%, #6c757d 100%); color: white;}
.bg-gradient-success {background: linear-gradient(310deg, #2dce89 0%, #2dcecc 100%); color: white;}
.bg-gradient-info {background: linear-gradient(310deg, #11cdef 0%, #1171ef 100%); color: white;}
.bg-gradient-warning {background: linear-gradient(310deg, #fb6340 0%, #fbb140 100%); color: white;}
.bg-gradient-danger {background: linear-gradient(310deg, #f5365c 0%, #f56036 100%); color: white;}
.bg-gradient-light {background: linear-gradient(310deg, #f8f9fa 0%, #e9ecef 100%); color: #495057;}
.bg-gradient-dark {background: linear-gradient(310deg, #212529 0%, #343a40 100%); color: white;}

/* ========== PACKAGE CARDS ========== */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border: 3px solid var(--warning-color);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "Phổ biến nhất";
    position: absolute;
    top: 0;
    right: 9px;
    background: var(--warning-color);
    color: white;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg) translate(30%, -50%);
}

/* ========== TABLES ========== */
.table-responsive {
    border-radius: 0.5rem;
}

.table th,
.table td {
    vertical-align: middle;
    border-top: 1px solid #e9ecef;
}

.table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* DataTables */
/* ========== DATATABLES CYBER THEME ========== */
.cyber-datatables .dataTables_wrapper {
    color: #e5e7eb;
}

.cyber-datatables .dataTables_length,
.cyber-datatables .dataTables_filter {
    margin-bottom: 20px;
}

.cyber-datatables .dataTables_length label,
.cyber-datatables .dataTables_filter label {
    color: #cbd5f0;
    font-weight: 600;
    font-size: 0.9rem;
}

.cyber-datatables .dataTables_length select,
.cyber-datatables .dataTables_filter input {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid rgba(0, 217, 255, 0.4) !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.cyber-datatables .dataTables_length select:focus,
.cyber-datatables .dataTables_filter input:focus {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: var(--cyber-primary) !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3) !important;
    outline: none !important;
}

.cyber-datatables .dataTables_info {
    color: #cbd5f0 !important;
    font-size: 0.9rem;
    padding-top: 15px;
}

.cyber-datatables .dataTables_paginate {
    padding-top: 15px;
}

.cyber-datatables .dataTables_paginate .paginate_button {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid rgba(0, 217, 255, 0.4) !important;
    color: #cbd5f0 !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    margin: 0 4px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.cyber-datatables .dataTables_paginate .paginate_button.current,
.cyber-datatables .dataTables_paginate .paginate_button.current:hover {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent)) !important;
    border-color: var(--cyber-primary) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4) !important;
}

.cyber-datatables .dataTables_paginate .paginate_button:hover {
    background: rgba(0, 217, 255, 0.2) !important;
    border-color: var(--cyber-primary) !important;
    color: var(--cyber-primary) !important;
    transform: translateY(-2px);
}

.cyber-datatables .dataTables_paginate .paginate_button.disabled,
.cyber-datatables .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #6c757d !important;
}

.cyber-datatables .dataTables_wrapper .dataTables_processing {
    background: rgba(10, 14, 39, 0.95) !important;
    border: 2px solid rgba(0, 217, 255, 0.3) !important;
    border-radius: 15px !important;
    color: var(--cyber-primary) !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px);
}

/* ========== ACCESSIBILITY ========== */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========== LOADING ANIMATION ========== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== LAYOUT FIXES ========== */
.card-body .row {
    margin: 0;
}

.card-body .row>[class*="col-"] {
    padding: 0.75rem;
}

.card .card {
    height: 100%;
    margin: 0;
}

.row.equal-height>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.row.equal-height>[class*="col-"]>.card {
    flex: 1;
}

.app-interface-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.app-interface-section h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.app-interface-section p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.app-interface-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-interface-card img {
    transition: all 0.3s ease;
}

.app-interface-card:hover img {
    transform: scale(1.02);
}

/* ========== HOME PAGE CYBER STYLES ========== */

/* Animated Background */
.cyber-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--cyber-darker) 0%, var(--cyber-dark) 50%, #1a1a3e 100%);
    overflow: hidden;
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyber-primary), transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyber-secondary), transparent 70%);
    bottom: -300px;
    right: -250px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyber-accent), transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, -30px) scale(0.9); }
    75% { transform: translate(-40px, 20px) scale(1.05); }
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyber-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyber-primary);
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: -2s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; top: 40%; animation-delay: -5s; animation-duration: 15s; }
.particle:nth-child(3) { left: 50%; top: 10%; animation-delay: -8s; animation-duration: 18s; }
.particle:nth-child(4) { left: 75%; top: 30%; animation-delay: -3s; animation-duration: 14s; }
.particle:nth-child(5) { left: 85%; top: 60%; animation-delay: -10s; animation-duration: 16s; }
.particle:nth-child(6) { left: 15%; top: 70%; animation-delay: -6s; animation-duration: 13s; }
.particle:nth-child(7) { left: 40%; top: 80%; animation-delay: -4s; animation-duration: 17s; }
.particle:nth-child(8) { left: 60%; top: 50%; animation-delay: -9s; animation-duration: 19s; }
.particle:nth-child(9) { left: 30%; top: 15%; animation-delay: -7s; animation-duration: 11s; }
.particle:nth-child(10) { left: 70%; top: 75%; animation-delay: -1s; animation-duration: 20s; }
.particle:nth-child(11) { left: 5%; top: 45%; animation-delay: -11s; animation-duration: 14s; }
.particle:nth-child(12) { left: 90%; top: 25%; animation-delay: -13s; animation-duration: 16s; }
.particle:nth-child(13) { left: 20%; top: 65%; animation-delay: -8s; animation-duration: 15s; }
.particle:nth-child(14) { left: 55%; top: 35%; animation-delay: -4s; animation-duration: 18s; }
.particle:nth-child(15) { left: 80%; top: 55%; animation-delay: -12s; animation-duration: 13s; }
.particle:nth-child(16) { left: 35%; top: 85%; animation-delay: -6s; animation-duration: 17s; }
.particle:nth-child(17) { left: 65%; top: 5%; animation-delay: -14s; animation-duration: 19s; }
.particle:nth-child(18) { left: 45%; top: 95%; animation-delay: -3s; animation-duration: 12s; }
.particle:nth-child(19) { left: 95%; top: 40%; animation-delay: -9s; animation-duration: 16s; }
.particle:nth-child(20) { left: 12%; top: 55%; animation-delay: -5s; animation-duration: 14s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

/* Hero 3D Section */
.hero-3d {
    padding: 10px 0 10px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
}

/* Cyber Badge */
.badge-glow {
    display: inline-block;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    border-radius: 50px;
    color: var(--cyber-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3),
                inset 0 0 20px rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Animated Gradient Title */
.hero-title-3d {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    transform-style: preserve-3d;
}

.gradient-text {
    font-weight: 900;
    display: inline-block;

    /* Gradient sáng hơn */
    background: linear-gradient(
        135deg,
        #6affff,
        #9d84ff,
        #ff6ab4,
        #6affff
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;

    /* 3D sáng & nổi */
    text-shadow:
        0px 1px 1px rgba(255,255,255,0.9),   /* highlight sáng trên */
        0px 2px 2px rgba(255,255,255,0.7),
        0px 3px 2px rgba(0,0,0,0.15),
        0px 4px 3px rgba(0,0,0,0.20),
        0px 6px 6px rgba(0,0,0,0.25),
        0px 10px 18px rgba(0,0,0,0.35),

        /* Glow neon mạnh */
        0 0 18px rgba(110,255,255,0.9),
        0 0 35px rgba(130,90,255,0.7),
        0 0 55px rgba(255,90,160,0.5);

    /* Nổi hơn */
    transform: perspective(600px) translateZ(55px);
}

/* Animation gradient */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.hero-subtitle-tech {
    font-size: 1.2rem;
    color: #cbd5f0;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.icon-glow {
    font-size: 2rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 20px var(--cyber-primary));
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--cyber-primary)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 40px var(--cyber-primary)); }
}

/* 3D Buttons */
.btn-3d {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.btn-3d:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-3d:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-3d-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 
        0 8px 25px rgba(0, 217, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-3d-primary:hover {
    box-shadow: 
        0 12px 35px rgba(0, 217, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
    background: linear-gradient(135deg, #00e5ff, var(--cyber-accent));
}

.btn-3d-primary:active {
    box-shadow: 
        0 4px 15px rgba(0, 217, 255, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-3d-secondary {
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-secondary));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
}

.btn-3d-secondary:hover {
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.6);
    color: #fff;
}

.btn-3d-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--cyber-primary);
    border: 2px solid var(--cyber-primary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.btn-3d-outline:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
    color: var(--cyber-primary);
}

.btn-3d-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.btn-3d-warning:hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.6);
    color: #fff;
}

.btn-3d-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.btn-3d-danger:hover {
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.6);
    color: #fff;
}

.btn-3d-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.btn-3d-success:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.6);
    color: #fff;
}

.btn-content {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 50px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s;
    z-index: 0;
}

.btn-3d:hover .btn-glow {
    opacity: 0.8;
}

.btn-3d-lg {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.btn-3d.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.btn-3d.btn-sm i {
    font-size: 0.85rem;
}

/* Stats 3D Cards */
.stats-3d {
    position: relative;
    z-index: 1;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--cyber-primary);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--cyber-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px var(--cyber-primary));
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--cyber-primary);
    margin-left: 5px;
}

.stat-label {
    color: #8892b0;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--cyber-primary), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover .stat-glow {
    opacity: 0.15;
}

/* 3D Card Tilt Effect */
.card-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Features 3D */
.features-3d {
    position: relative;
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8892b0;
    font-weight: 300;
}

.feature-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.feature-card-3d:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cyber-primary);
    box-shadow: 0 40px 100px rgba(0, 217, 255, 0.4);
}

.feature-icon-3d {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 30px var(--cyber-primary));
    animation: iconRotate 10s infinite linear;
}

@keyframes iconRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.icon-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--cyber-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.feature-desc {
    color: #8892b0;
    font-size: 1rem;
    line-height: 1.6;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* App Preview */
.app-preview-3d {
    position: relative;
    z-index: 1;
}

.app-preview-container {
    position: relative;
    perspective: 1500px;
}

.preview-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.preview-frame:hover {
    transform: rotateY(5deg) rotateX(2deg) translateZ(50px);
}

.app-screenshot {
    display: block;
    width: 100%;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.preview-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, var(--cyber-primary), transparent 60%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Video 3D */
.video-section-3d {
    position: relative;
    z-index: 1;
}

.video-container-3d {
    position: relative;
    perspective: 1200px;
}

.video-container-3d .ratio {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(131, 56, 236, 0.3);
    box-shadow: 0 30px 80px rgba(131, 56, 236, 0.4);
    transition: all 0.5s ease;
}

.video-container-3d:hover .ratio {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(131, 56, 236, 0.6);
}

.video-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle, var(--cyber-accent), transparent 60%);
    opacity: 0.2;
    filter: blur(80px);
    z-index: -1;
}

/* CTA 3D Section */
.cta-3d {
    position: relative;
    z-index: 1;
}

.cta-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 40px 120px rgba(0, 217, 255, 0.3),
                inset 0 0 60px rgba(0, 217, 255, 0.05);
    overflow: hidden;
}

.hologram-effect {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 217, 255, 0.03) 0px,
        rgba(0, 217, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: hologramScan 3s linear infinite;
    pointer-events: none;
}

@keyframes hologramScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title-3d { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .stat-number { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-3d { padding: 80px 0 60px; }
    .hero-title-3d { font-size: 2.2rem; }
    .hero-subtitle-tech { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }
    .btn-3d { padding: 14px 28px; font-size: 0.95rem; }
    .btn-3d-lg { padding: 16px 32px; font-size: 1rem; }
    .btn-lg { padding: 0.7rem 1.3rem; font-size: 0.95rem; }
    .card-body { padding: 1.5rem; }
    .feature-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .feature-icon-3d { width: 80px; height: 80px; font-size: 2.5rem; }
    .btn { margin: 0.25rem; }
    .package-card.featured { transform: none; }
    .stat-card { padding: 30px 15px; }
    .stat-number { font-size: 2.2rem; }
    
    /* Logo responsive */
    .logo-container { padding: 6px 12px; gap: 8px; }
    .logo-hexagon { width: 32px; height: 32px; }
    .logo-icon i { font-size: 1.1rem; }
    .logo-text { font-size: 1rem; gap: 6px; }
    .logo-divider { font-size: 0.9rem; }
    .stat-icon { font-size: 2.2rem; }
    .stat-suffix { font-size: 1.5rem; }
    .glass-card { padding: 20px; }
    .cta-card-3d { padding: 50px 25px; }
    .cta-title { font-size: 1.8rem; }
    .cta-subtitle { font-size: 1rem; }
}

@media (max-width: 576px) {
    .hero-title-3d { font-size: 1.9rem; }
    .hero-subtitle-tech { font-size: 0.95rem; }
    .cyber-badge { padding: 10px 18px; font-size: 0.75rem; }
    .section-title { font-size: 1.6rem; }
    .btn-3d-lg { padding: 14px 24px; font-size: 0.9rem; }
    .stat-card { padding: 25px 10px; }
    .stat-number { font-size: 2rem; }
    .feature-card-3d { padding: 35px 20px; }
    .info-item { font-size: 0.9rem; }
    .info-item i { font-size: 1.5rem; }
}

section {
    margin-bottom: 10px;
}

/* ========== ANIMATED COUNTER ========== */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== DOWNLOAD PAGE STYLES ========== */

/* Download Hero */
.download-hero {
    position: relative;
    z-index: 1;
    padding: 15px 0;
}

.cyber-badge-lg {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    border-radius: 50px;
    color: var(--cyber-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3),
                inset 0 0 20px rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: badgePulse 2s infinite;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    z-index: 1;
}

.pricing-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-3d:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cyber-primary);
    box-shadow: 0 40px 100px rgba(0, 217, 255, 0.4);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #fff;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.pricing-badge-vip {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}

.pricing-badge-premium {
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-secondary));
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    color: #cbd5f0;
    font-weight: 600;
}

.price-period {
    font-size: 1rem;
    color: #cbd5f0;
    display: block;
    margin-top: 5px;
}

.pricing-alt {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
}

.price-amount-alt {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyber-primary);
}

.pricing-desc {
    color: #cbd5f0;
    font-size: 1rem;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: #e5e7eb;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--cyber-primary);
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: #6c757d;
}

/* Featured Card */
.pricing-featured {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.pricing-ribbon {
    position: absolute;
    top: 30px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.featured-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, var(--cyber-primary), transparent 60%);
    opacity: 0.2;
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 3s infinite;
}

/* Premium Card */
.pricing-premium {
    border-color: rgba(255, 0, 110, 0.3);
}

.pricing-premium:hover {
    box-shadow: 0 40px 100px rgba(255, 0, 110, 0.4);
}

.premium-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.1) 0%, transparent 40%);
    animation: particlesMove 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesMove {
    0%, 100% { opacity: 0.3; transform: translate(0, 0); }
    50% { opacity: 0.6; transform: translate(10px, -10px); }
}

/* Instructions */
.instructions-section {
    position: relative;
    z-index: 1;
}

.glass-card-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 3.5rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 30px var(--cyber-primary));
    animation: iconFloat 3s infinite ease-in-out;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(131, 56, 236, 0.5);
}

.text-cyan {
    color: var(--cyber-primary);
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-list li {
    padding: 12px 0;
    color: #cbd5f0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instruction-list li:last-child {
    border-bottom: none;
}

/* Comparison Section */
.comparison-section {
    position: relative;
    z-index: 1;
}

.comparison-card-3d {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.comparison-table thead th {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    font-weight: 700;
    padding: 20px 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.comparison-table thead th:first-child {
    border-radius: 15px 0 0 15px;
}

.comparison-table thead th:last-child {
    border-radius: 0 15px 15px 0;
}

.comparison-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 217, 255, 0.08);
    transform: translateX(5px);
}

.comparison-table tbody tr.highlight-row {
    background: rgba(0, 217, 255, 0.05);
}

.comparison-table tbody tr.highlight-row:hover {
    background: rgba(0, 217, 255, 0.12);
}

.comparison-table tbody td {
    padding: 18px 15px;
    color: #cbd5f0;
    font-weight: 500;
    border: none;
    font-size: 1.05rem;
}

.comparison-table tbody td:first-child {
    color: #f0f4ff;
    font-weight: 600;
}

.comparison-table tbody td i.fa-check {
    color: #10b981;
    font-size: 1.3rem;
}

.comparison-table tbody td i.fa-times {
    color: #ef4444;
    font-size: 1.3rem;
    opacity: 0.5;
}

.comparison-table tbody td.text-success {
    color: #10b981 !important;
    font-weight: 600;
}

.comparison-table tbody td.text-warning {
    color: #f59e0b !important;
    font-weight: 600;
}

/* ========== PROMO BANNER ========== */
.promo-banner-section {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.promo-banner-3d {
    position: relative;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(25px);
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 35px;
    padding: 45px;
    box-shadow: 
        0 0 60px rgba(0, 217, 255, 0.8),
        0 40px 120px rgba(131, 56, 236, 0.6),
        inset 0 0 80px rgba(0, 217, 255, 0.1);
    overflow: hidden;
    animation: promoPulse 2s ease-in-out infinite;
}

.promo-banner-3d::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, 
        #00d9ff 0%,
        #8338ec 25%,
        #ff006e 50%,
        #8338ec 75%,
        #00d9ff 100%);
    background-size: 200% 100%;
    border-radius: 35px;
    z-index: -1;
    animation: borderRainbow 3s linear infinite;
}

@keyframes borderRainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes promoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(0, 217, 255, 0.8),
            0 40px 120px rgba(131, 56, 236, 0.6),
            inset 0 0 100px rgba(0, 217, 255, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 0 100px rgba(0, 217, 255, 1),
            0 50px 150px rgba(255, 0, 110, 0.8),
            inset 0 0 120px rgba(131, 56, 236, 0.3);
    }
}

.promo-sparkles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: #00d9ff;
    font-size: 1.5rem;
    opacity: 0;
    animation: sparkleFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 217, 255, 1);
}

.sparkle-1 { left: 10%; top: 15%; animation-delay: 0s; }
.sparkle-2 { left: 25%; top: 80%; animation-delay: 0.3s; color: #8338ec; text-shadow: 0 0 20px rgba(131, 56, 236, 1); }
.sparkle-3 { left: 70%; top: 20%; animation-delay: 0.6s; color: #ff006e; text-shadow: 0 0 20px rgba(255, 0, 110, 1); }
.sparkle-4 { left: 85%; top: 70%; animation-delay: 0.9s; }
.sparkle-5 { left: 50%; top: 10%; animation-delay: 1.2s; color: #8338ec; text-shadow: 0 0 20px rgba(131, 56, 236, 1); }
.sparkle-6 { left: 15%; top: 60%; animation-delay: 1.5s; color: #ff006e; text-shadow: 0 0 20px rgba(255, 0, 110, 1); }
.sparkle-7 { left: 90%; top: 40%; animation-delay: 1.8s; }
.sparkle-8 { left: 40%; top: 85%; animation-delay: 2.1s; color: #ff006e; text-shadow: 0 0 20px rgba(255, 0, 110, 1); }
.sparkle-9 { left: 60%; top: 50%; animation-delay: 2.4s; color: #8338ec; text-shadow: 0 0 20px rgba(131, 56, 236, 1); }
.sparkle-10 { left: 30%; top: 30%; animation-delay: 2.7s; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5) rotate(0deg); }
    10% { opacity: 1; transform: translateY(-5px) scale(1) rotate(180deg); }
    90% { opacity: 1; transform: translateY(-10px) scale(1.2) rotate(360deg); }
}

.promo-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 85% 80%, rgba(255, 0, 110, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(0, 217, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.2) 0%, transparent 20%);
    animation: particlesFloat 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% { 
        opacity: 0.6; 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    33% {
        opacity: 1;
        transform: translate(15px, -15px) scale(1.15) rotate(120deg);
    }
    66% {
        opacity: 0.8;
        transform: translate(-10px, 10px) scale(0.95) rotate(240deg);
    }
}

.promo-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff006e, #8338ec, #00d9ff);
    background-size: 200% 200%;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.8),
        0 0 80px rgba(255, 0, 110, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: iconBounce 1.5s ease-in-out infinite, iconGradient 3s ease infinite;
    position: relative;
}

.promo-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.6), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

.promo-icon-wrapper i {
    font-size: 2.8rem;
    color: #fff;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    animation: iconSpin 3s linear infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes iconGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
    animation: titlePulse 2s ease-in-out infinite;
}

.promo-title .gradient-text {
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.8))
            drop-shadow(0 0 80px rgba(255, 0, 110, 0.6));
    text-shadow: 
        0 0 20px rgba(0, 217, 255, 0.8),
        0 0 40px rgba(131, 56, 236, 0.6),
        0 0 60px rgba(255, 0, 110, 0.4);
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-subtitle {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff006e;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 30px rgba(255, 0, 110, 1),
        0 0 60px rgba(255, 0, 110, 0.8),
        0 0 90px rgba(255, 0, 110, 0.6),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    animation: textGlow 1.5s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        color: #ff006e;
        text-shadow: 
            0 0 30px rgba(255, 0, 110, 1),
            0 0 60px rgba(255, 0, 110, 0.8),
            2px 2px 0 rgba(0, 0, 0, 0.5);
    }
    50% { 
        color: #ff4d94;
        text-shadow: 
            0 0 50px rgba(255, 0, 110, 1),
            0 0 100px rgba(255, 0, 110, 1),
            0 0 150px rgba(255, 0, 110, 0.8),
            2px 2px 0 rgba(0, 0, 0, 0.5);
    }
}

.promo-countdown-label {
    font-size: 0.9rem;
    color: #cbd5f0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.6);
    border-radius: 15px;
    padding: 15px 10px;
    min-width: 70px;
    text-align: center;
    box-shadow: 
        0 0 25px rgba(0, 217, 255, 0.5),
        inset 0 0 20px rgba(0, 217, 255, 0.15);
    animation: countdownGlow 2s ease-in-out infinite;
}

@keyframes countdownGlow {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(0, 217, 255, 0.5),
            inset 0 0 20px rgba(0, 217, 255, 0.15);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 45px rgba(0, 217, 255, 0.9),
            inset 0 0 30px rgba(0, 217, 255, 0.25);
        transform: scale(1.05);
    }
}

.countdown-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(0, 217, 255, 1),
        0 0 40px rgba(0, 217, 255, 0.8),
        0 2px 5px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.countdown-divider {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 1);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { 
        opacity: 1; 
        text-shadow: 0 0 20px rgba(0, 217, 255, 1);
    }
    50%, 100% { 
        opacity: 0.3; 
        text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    }
}

.promo-action {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff, #fff, #00d9ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 217, 255, 1);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
    animation: textPulse 1s ease-in-out infinite, textShine 2s linear infinite;
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Price with discount */
.price-original {
    display: block;
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 5px;
    opacity: 0.6;
}

.price-original-alt {
    display: inline-block;
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 10px;
    opacity: 0.6;
}

/* ========== ABOUT PAGE STYLES ========== */

.about-section {
    position: relative;
    z-index: 1;
}

.about-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
}

.about-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--cyber-primary);
    box-shadow: 0 30px 80px rgba(0, 217, 255, 0.4);
}

.about-step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
    animation: badgePulse 2s infinite;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.about-icon i {
    font-size: 2.5rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 20px var(--cyber-primary));
}

.about-card-3d:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
}

.about-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    padding: 12px 0;
    color: #cbd5f0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li .collapse-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.about-list li .collapse-trigger:hover {
    transform: translateX(5px) scale(1.2);
    filter: drop-shadow(0 0 10px var(--cyber-primary));
}

.about-list li .collapse-trigger[aria-expanded="true"] {
    transform: rotate(90deg);
    color: #ff006e !important;
}

.about-list li span {
    flex: 1;
}

.about-collapse {
    margin: 15px 0 15px 30px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.about-image-wrapper:hover {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 15px 60px rgba(0, 217, 255, 0.5);
    transform: scale(1.02);
}

.about-guide-img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* Image Zoomable Styles */
.image-zoomable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-zoomable:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

/* Image Zoom Modal Styles */
.image-zoom-container {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(20, 25, 50, 0.95) 100%);
    border-radius: 15px;
    overflow: hidden;
}

.image-zoom-container img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
    border: 2px solid rgba(0, 217, 255, 0.2);
}

/* Image Zoom Close Button */
.image-zoom-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 110, 0.8),
        0 0 40px rgba(131, 56, 236, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.image-zoom-close-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff006e, #8338ec, #00d9ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlowClose 2s ease-in-out infinite;
}

@keyframes borderGlowClose {
    0%, 100% {
        opacity: 0.5;
        filter: blur(8px);
    }
    50% {
        opacity: 1;
        filter: blur(12px);
    }
}

.image-zoom-close-btn:hover {
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 1),
        0 0 60px rgba(131, 56, 236, 0.8),
        0 6px 25px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

.image-zoom-close-btn:hover::before {
    opacity: 1;
}

.image-zoom-close-btn:active {
    transform: scale(1.05) rotate(90deg);
}

.image-zoom-close-btn i {
    transition: transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.image-zoom-close-btn:hover i {
    transform: rotate(180deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}

#imageZoomModal .modal-content {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(20, 25, 50, 0.98) 100%);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 20px 80px rgba(0, 217, 255, 0.4);
}

#imageZoomModal .modal-header {
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.05);
}

#imageZoomModal .modal-body {
    background: transparent;
}

@media (max-width: 768px) {
    .image-zoom-container {
        padding: 10px;
    }
    
    .image-zoom-container img {
        max-height: 70vh !important;
    }
    
    .image-zoom-close-btn {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-width: 2px;
    }
}

.text-light-gray {
    color: #cbd5f0;
}

/* Requirements Card */
.about-requirements {
    text-align: center;
    padding: 50px 40px;
}

.about-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(0, 217, 255, 0.1);
    border: 3px solid var(--cyber-primary);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.about-icon-large i {
    font-size: 4rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 30px var(--cyber-primary));
    animation: iconFloat 3s infinite ease-in-out;
}

.requirements-content {
    text-align: left;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--cyber-primary);
    border-radius: 15px;
}

.requirement-item i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Video Cards */
.video-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(131, 56, 236, 0.3);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 30px 80px rgba(131, 56, 236, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
}

.video-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 100px rgba(131, 56, 236, 0.6);
    border-color: rgba(131, 56, 236, 0.6);
}

.video-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.video-card-3d .ratio {
    border-radius: 15px;
    overflow: hidden;
}

/* Zalo CTA */
.zalo-cta-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 193, 7, 0.4);
    border-radius: 35px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 30px 100px rgba(255, 193, 7, 0.3);
    overflow: hidden;
}

.zalo-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0088cc, #0066aa);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 136, 204, 0.6);
    animation: iconBounce 2s infinite;
}

.zalo-icon-wrapper i {
    font-size: 3.5rem;
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.zalo-title {
    font-size: 2.5rem;
    font-weight: 900;
}

.zalo-subtitle {
    font-size: 1.2rem;
    color: #cbd5f0;
    margin: 0;
}

.zalo-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.15) 0%, transparent 30%);
    animation: particlesMove 6s ease-in-out infinite;
    pointer-events: none;
}

/* Modal Cyber Style */
.modal-cyber {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.modal-cyber .modal-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
}

.modal-cyber .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-cyber .modal-body {
    padding: 30px;
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0088cc, #0066aa);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 136, 204, 0.6);
}

.modal-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.input-group-cyber {
    border-radius: 15px;
    overflow: hidden;
}

.form-control-cyber {
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: #cbd5f0;
    padding: 12px 16px;
    width: 100%;
    font-weight: 500;
}

.form-control-cyber:focus {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--cyber-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-outline-cyan {
    background: transparent;
    border: 2px solid var(--cyber-primary);
    color: var(--cyber-primary);
    padding: 12px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-cyan:hover {
    background: var(--cyber-primary);
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.btn-close-white:hover {
    opacity: 1;
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-info-section {
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-primary);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 15px var(--cyber-primary));
    animation: iconPulse 3s infinite;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1.1rem;
    color: #cbd5f0;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-contact-small {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    color: var(--cyber-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact-small:hover {
    background: var(--cyber-primary);
    color: #0a0e27;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
    position: relative;
    z-index: 1;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 35px;
    padding: 50px 45px;
    box-shadow: 
        0 0 60px rgba(0, 217, 255, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        #00d9ff 0%,
        #8338ec 50%,
        #ff006e 100%);
    background-size: 200% 200%;
    border-radius: 35px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-primary), transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 200px; opacity: 1; }
}

.form-label-cyber {
    color: #fff;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label-cyber i {
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px var(--cyber-primary));
}

.form-control-cyber {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 15px;
    color: #fff;
    padding: 11px 15px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 0;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 0 rgba(0, 217, 255, 0);
}

.form-control-cyber::placeholder {
    color: #6c757d;
    font-style: italic;
}

.form-control-cyber:focus {
    background: rgba(0, 217, 255, 0.12);
    border-color: var(--cyber-primary);
    box-shadow: 
        0 0 25px rgba(0, 217, 255, 0.4),
        inset 0 2px 10px rgba(0, 217, 255, 0.15),
        0 0 0 3px rgba(0, 217, 255, 0.1);
    outline: none;
    color: #fff;
    transform: translateY(-2px);
}

.form-control-cyber select,
select.form-control-cyber,
.form-select-cyber {
    background: rgba(0, 0, 0, 0.7) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d9ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding: 11px 15px;
    padding-right: 45px;
    appearance: none;
    cursor: pointer;
    color: #fff !important;
    border: 2px solid rgba(0, 217, 255, 0.4) !important;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-control-cyber select:focus,
select.form-control-cyber:focus,
.form-select-cyber:focus {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: var(--cyber-primary) !important;
    color: #fff !important;
    box-shadow: 
        0 0 25px rgba(0, 217, 255, 0.4),
        inset 0 2px 10px rgba(0, 217, 255, 0.15),
        0 0 0 3px rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.form-control-cyber select option,
select.form-control-cyber option {
    background: #1a1a2e !important;
    color: #fff !important;
    padding: 12px 16px;
}

.form-control-cyber select option:hover,
select.form-control-cyber option:hover {
    background: rgba(0, 217, 255, 0.2) !important;
}

.form-control-cyber select option:checked,
select.form-control-cyber option:checked {
    background: rgba(0, 217, 255, 0.3) !important;
    color: var(--cyber-primary) !important;
}

.form-control-cyber textarea,
textarea.form-control-cyber {
    resize: vertical;
    min-height: 100px;
}

.form-control-cyber.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.invalid-feedback {
    color: #fca5a5;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 10px;
    display: block;
}

.form-text-cyber {
    color: #f8f9fa;
    font-size: 0.75rem;
    margin-top: 5px;
    margin-bottom: 20px;
    display: block;
    padding: 8px 14px;
    background: rgba(131, 56, 236, 0.05);
    border-left: 3px solid var(--cyber-primary);
    border-radius: 8px;
    line-height: 1.5;
}

.form-text-cyber i {
        color: var(--cyber-primary);
}

/* Submit button loading state */
#submitBtn .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 2px;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn:disabled .btn-glow {
    opacity: 0.3;
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 900;
}

.accordion-cyber {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-item-cyber {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-cyber:hover {
    border-color: var(--cyber-primary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.accordion-header-cyber {
    margin: 0;
}

.accordion-button-cyber {
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button-cyber:not(.collapsed) {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyber-primary);
}

.accordion-button-cyber:not(.collapsed) i {
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px var(--cyber-primary));
}

.accordion-button-cyber::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    transition: transform 0.3s ease;
    color: var(--cyber-primary);
}

.accordion-button-cyber:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-button-cyber i {
    color: #8892b0;
    transition: all 0.3s ease;
}

.accordion-body-cyber {
    padding: 20px 25px 25px;
    color: #cbd5f0;
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-info-card { padding: 25px 20px; }
    .contact-icon { width: 60px; height: 60px; }
    .contact-icon i { font-size: 1.8rem; }
    .contact-title { font-size: 1.1rem; }
    .contact-value { font-size: 1rem; }
    .contact-form-card { padding: 35px 25px; }
    .form-header { font-size: 1.6rem; padding-bottom: 20px; margin-bottom: 25px; }
    .form-label-cyber { font-size: 0.8rem; }
    .form-control-cyber { padding: 14px 16px; font-size: 0.95rem; margin-bottom: 15px; }
    .form-text-cyber { font-size: 0.8rem; margin-top: -10px; padding: 8px 12px; }
    .faq-title { font-size: 2rem; }
    .accordion-button-cyber { font-size: 1rem; padding: 18px 20px; }
    .accordion-button-cyber::after { right: 20px; }
    .accordion-body-cyber { font-size: 0.95rem; padding: 18px 20px 20px; }
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-card-3d { padding: 30px 20px; }
    .about-title { font-size: 1.3rem; }
    .about-title-large { font-size: 1.8rem; }
    .about-icon { width: 60px; height: 60px; }
    .about-icon i { font-size: 2rem; }
    .about-icon-large { width: 90px; height: 90px; }
    .about-icon-large i { font-size: 3rem; }
    .about-list li { font-size: 0.95rem; }
    .about-requirements { padding: 35px 25px; }
    .video-card-3d { padding: 15px; }
    .video-header { font-size: 1.1rem; }
    .zalo-cta-3d { padding: 40px 25px; }
    .zalo-icon-wrapper { width: 80px; height: 80px; }
    .zalo-icon-wrapper i { font-size: 2.5rem; }
    .zalo-title { font-size: 2rem; }
    .zalo-subtitle { font-size: 1rem; }
}

/* Download Page Responsive */
@media (max-width: 992px) {
    .pricing-featured {
        transform: scale(1);
    }
    .pricing-featured:hover {
        transform: translateY(-15px) scale(1.02);
    }
    .comparison-table { font-size: 0.95rem; }
    .comparison-table thead th { font-size: 1rem; padding: 15px 10px; }
    .comparison-table tbody td { padding: 15px 10px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
    .download-hero { padding: 10px 0; }
    .pricing-card-3d { padding: 30px 20px; }
    .pricing-title { font-size: 1.5rem; }
    .price-amount { font-size: 2.5rem; }
    .price-amount-alt { font-size: 1.5rem; }
    .pricing-features li { font-size: 0.95rem; padding: 10px 0; }
    .glass-card-info { padding: 30px 20px; }
    .step-icon { width: 80px; height: 80px; }
    .step-icon i { font-size: 2.5rem; }
    .instruction-list li { font-size: 1rem; }
    .comparison-card-3d { padding: 30px 20px; }
    .comparison-title { font-size: 1.8rem; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table thead th { font-size: 0.85rem; padding: 12px 8px; }
    .comparison-table tbody td { padding: 12px 8px; font-size: 0.85rem; }
    .comparison-table tbody td i { font-size: 1.1rem; }
    
    /* Promo responsive */
    .promo-banner-3d { padding: 25px 20px; }
    .promo-icon-wrapper { width: 60px; height: 60px; margin-bottom: 10px; }
    .promo-icon-wrapper i { font-size: 1.8rem; }
    .promo-title { font-size: 1.8rem; }
    .promo-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .promo-countdown { gap: 5px; flex-wrap: wrap; }
    .countdown-item { min-width: 55px; padding: 10px 5px; }
    .countdown-value { font-size: 1.5rem; }
    .countdown-label { font-size: 0.65rem; }
    .countdown-divider { font-size: 1.5rem; }
    .promo-action { font-size: 1rem; }
    .sparkle { font-size: 1rem; }
}

/* ========== TOPUP PAGE STYLES ========== */

.topup-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.topup-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 40px 38px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.topup-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 35px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.topup-header {
    text-align: center;
    margin-bottom: 40px;
}

.topup-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    position: relative;
    background: rgba(0, 217, 255, 0.06);
    border: 2px solid rgba(0, 217, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.topup-icon-wrapper i {
    font-size: 2.4rem;
    color: rgba(0, 217, 255, 0.85);
    filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.5));
    animation: iconFloat 3s infinite ease-in-out;
}

.topup-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.topup-subtitle {
    font-size: 0.95rem;
    color: #a0aec0;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.topup-form {
    margin-top: 30px;
}

.form-section-cyber {
    margin-bottom: 30px;
}

/* Amount Options */
.amount-option-cyber {
    position: relative;
    margin-bottom: 0;
}

.amount-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.amount-label-cyber {
    display: block;
    padding: 18px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    text-align: center;
    user-select: none;
}

.amount-label-cyber:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.amount-radio:checked + .amount-label-cyber {
    border-color: var(--cyber-primary);
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.2) 0%,
        rgba(131, 56, 236, 0.2) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.amount-value-cyber {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.amount-desc-cyber {
    font-size: 0.85rem;
    color: #8892b0;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.amount-radio:checked + .amount-label-cyber .amount-value-cyber {
    color: var(--cyber-primary);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.amount-radio:checked + .amount-label-cyber .amount-desc-cyber {
    color: #cbd5f0;
}

/* Custom Amount */
.custom-amount-wrapper {
    position: relative;
}

.custom-amount-wrapper .form-control-cyber {
    padding-right: 80px;
}

.currency-badge {
    position: absolute;
    right: 15px;
    top: 38%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

/* Payment Method Cards */
.payment-method-card-cyber {
    position: relative;
    cursor: pointer;
}

.payment-method-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.payment-method-label-cyber {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.payment-method-label-cyber:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.payment-method-radio:checked + .payment-method-label-cyber {
    border-color: var(--cyber-primary);
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.15) 0%,
        rgba(131, 56, 236, 0.15) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

.payment-method-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 14px;
    flex-shrink: 0;
}

.payment-method-icon i {
    font-size: 1.7rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.payment-method-radio:checked + .payment-method-label-cyber .payment-method-icon {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--cyber-primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.payment-method-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
    letter-spacing: 0.2px;
}

.payment-method-radio:checked + .payment-method-label-cyber .payment-method-name {
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* QR Section */
.qr-section-cyber {
    margin: 35px 0;
}

.qr-card-cyber {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.qr-header-cyber {
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.2) 0%,
        rgba(131, 56, 236, 0.2) 100%);
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    letter-spacing: 0.3px;
}

.qr-body-cyber {
    padding: 30px;
    text-align: center;
}

.qr-container-cyber {
    margin-bottom: 25px;
}

.qr-container-cyber img {
    max-width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.qr-info-cyber {
    margin: 25px 0;
}

.qr-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    color: #cbd5f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.qr-info-item i {
    color: var(--cyber-primary);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.qr-info-item .text-cyan {
    color: var(--cyber-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Balance Section */
.balance-section-cyber {
    margin: 35px 0;
}

.balance-card-cyber {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.balance-item {
    flex: 1;
    text-align: center;
}

.balance-label {
    font-size: 0.85rem;
    color: #8892b0;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-label i {
    color: var(--cyber-primary);
    margin-right: 6px;
    font-size: 0.9rem;
}

.balance-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.balance-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.3) 50%,
        transparent 100%);
}

.topup-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.topup-actions .btn-3d:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.topup-actions .btn-3d:disabled:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

/* Topup Responsive */
@media (max-width: 768px) {
    .topup-section {
        padding: 100px 0 60px;
    }
    
    .topup-card-3d {
        padding: 35px 25px;
    }
    
    .topup-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .topup-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .topup-title {
        font-size: 1.8rem;
    }
    
    .topup-subtitle {
        font-size: 1rem;
    }
    
    .form-section-cyber {
        margin-bottom: 30px;
    }
    
    .amount-label-cyber {
        padding: 18px 12px;
    }
    
    .amount-value-cyber {
        font-size: 1.2rem;
    }
    
    .amount-desc-cyber {
        font-size: 0.85rem;
    }
    
    .payment-method-label-cyber {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .payment-method-icon {
        width: 50px;
        height: 50px;
    }
    
    .payment-method-icon i {
        font-size: 1.6rem;
    }
    
    .payment-method-name {
        font-size: 1rem;
    }
    
    .balance-card-cyber {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .balance-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%,
            rgba(0, 217, 255, 0.3) 50%,
            transparent 100%);
    }
    
    .balance-value {
        font-size: 1.5rem;
    }
    
    .qr-body-cyber {
        padding: 20px;
    }
    
    .qr-header-cyber {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
}

/* ========== DASHBOARD PAGE STYLES ========== */

.dashboard-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.dashboard-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    overflow: hidden;
}

.dashboard-card-3d:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 25px 80px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dashboard-header-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.dashboard-header-icon i {
    font-size: 1.8rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.dashboard-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dashboard-card-title.gradient-text {
    display: inline-block;
    max-width: 100%;
    transform: none;
    position: relative;
    z-index: 1;
}

.dashboard-card-header .gradient-text {
    transform: none;
}

.dashboard-card-body {
    margin-top: 20px;
}

.dashboard-card-text {
    color: #e5e7eb;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* User Profile */
.user-profile-cyber {
    text-align: center;
    padding: 20px;
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.avatar-circle-cyber {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.username-cyber {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.user-email-cyber {
    color: #a0aec0;
    font-size: 0.95rem;
    margin: 0;
}

/* Info Items */
.info-item-cyber {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-item-cyber:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.info-label-cyber {
    font-size: 0.85rem;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-label-cyber i {
    color: var(--cyber-primary);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

.info-value-cyber {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.balance-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    margin-left: 12px;
    flex-shrink: 0;
    position: relative;
    animation: balancePulseRotate 3s ease-in-out infinite, balanceGlow 2s ease-in-out infinite;
    overflow: visible;
}

.balance-add-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--cyber-primary), transparent, var(--cyber-accent), transparent);
    opacity: 0.6;
    z-index: -1;
    animation: balanceRotateRing 3s linear infinite;
}

.balance-add-btn::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--cyber-primary);
    border-right-color: var(--cyber-accent);
    opacity: 0.4;
    z-index: -2;
    animation: balanceRotateRingReverse 4s linear infinite;
}

.balance-add-btn i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    animation: balanceIconRotate 3s linear infinite;
}

.balance-add-btn:hover {
    background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-primary));
    border-color: var(--cyber-primary);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.8), 0 0 20px rgba(0, 217, 255, 0.5);
    color: #fff;
    text-decoration: none;
    animation: balancePulseRotateHover 1.5s ease-in-out infinite, balanceGlow 1s ease-in-out infinite;
}

.balance-add-btn:hover::before {
    animation: balanceRotateRingFast 1.5s linear infinite;
    opacity: 0.9;
}

.balance-add-btn:hover::after {
    animation: balanceRotateRingReverseFast 2s linear infinite;
    opacity: 0.7;
}

.balance-add-btn:hover i {
    animation: balanceIconBounce 0.5s ease-in-out infinite;
}

.balance-add-btn:active {
    transform: scale(1.1) rotate(90deg);
}

@keyframes balancePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes balancePulseRotate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(90deg);
    }
    50% {
        transform: scale(1.08) rotate(180deg);
    }
    75% {
        transform: scale(1.05) rotate(270deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes balancePulseRotateFast {
    0% {
        transform: scale(1.1) rotate(0deg);
    }
    25% {
        transform: scale(1.15) rotate(90deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        transform: scale(1.15) rotate(270deg);
    }
    100% {
        transform: scale(1.1) rotate(360deg);
    }
}

@keyframes balancePulseRotateHover {
    0% {
        transform: scale(1.15) rotate(90deg);
    }
    25% {
        transform: scale(1.2) rotate(180deg);
    }
    50% {
        transform: scale(1.25) rotate(270deg);
    }
    75% {
        transform: scale(1.2) rotate(360deg);
    }
    100% {
        transform: scale(1.15) rotate(450deg);
    }
}

@keyframes balanceGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3), 0 0 10px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 217, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.4);
    }
}

@keyframes balanceRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes balanceRippleHover {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes balanceIconRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes balanceIconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

@keyframes balanceRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes balanceRotateFast {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes balanceRotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes balanceRotateRingReverse {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes balanceRotateRingFast {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes balanceRotateRingReverseFast {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.badge-cyber {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-cyber.badge-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    color: #fff;
}

.badge-cyber.badge-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.badge-cyber.badge-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.badge-cyber.badge-secondary {
    background: rgba(108, 117, 125, 0.3);
    color: #cbd5f0;
    border: 1px solid rgba(108, 117, 125, 0.5);
}

/* Action Cards */
.action-card-cyber {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card-cyber:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 25px 80px rgba(0, 217, 255, 0.4);
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.5);
}

.action-icon-cyber {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
}

.action-icon-topup {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.action-icon-topup i {
    font-size: 2.5rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
}

.action-icon-packages {
    background: rgba(131, 56, 236, 0.1);
    border: 2px solid rgba(131, 56, 236, 0.3);
    box-shadow: 0 0 30px rgba(131, 56, 236, 0.3);
}

.action-icon-packages i {
    font-size: 2.5rem;
    color: var(--cyber-accent);
    filter: drop-shadow(0 0 15px rgba(131, 56, 236, 0.6));
}

.action-title-cyber {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.action-desc-cyber {
    color: #cbd5f0;
    font-size: 1rem;
    margin-bottom: 25px;
    flex: 1;
    line-height: 1.6;
}

/* Input Group Cyber */
.input-group-cyber {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-cyber .form-control-cyber {
    flex: 1;
    padding-right: 50px;
}

.btn-copy-cyber {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: var(--cyber-primary);
    padding: 4px 9px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-copy-cyber:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--cyber-primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

/* Referral Stats */
.referral-stats-cyber {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.referral-stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.15);
}

.stat-value-cyber {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyber-primary);
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.stat-label-cyber {
    font-size: 0.9rem;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.referral-actions-cyber {
    margin-top: 20px;
}

/* Tables */
.table-responsive-cyber {
    overflow-x: auto;
    margin-bottom: 25px;
}

.table-cyber {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-cyber thead th {
    background: rgba(0, 217, 255, 0.15);
    color: var(--cyber-primary);
    font-weight: 700;
    padding: 16px 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 2px solid rgba(0, 217, 255, 0.4);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.table-cyber tbody tr {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-cyber tbody tr:hover {
    background: rgba(0, 217, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.table-cyber tbody td {
    padding: 16px 15px;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.85rem;
    vertical-align: middle;
}

.table-id {
    color: var(--cyber-primary);
    font-weight: 700;
}

.table-description {
    max-width: 520px;
    white-space: normal;
    word-break: break-word;
}

.table-pagination-cyber {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-info {
    color: #cbd5f0;
    font-size: 0.95rem;
    font-weight: 600;
}

.pagination-info strong {
    color: var(--cyber-primary);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.admin-pagination-wrapper {
    padding: 20px 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.pagination-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.pagination-buttons .btn-3d {
    min-width: 40px;
    padding: 8px 12px;
}

.pagination-buttons .btn-3d.active {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.pagination-ellipsis {
    color: #a0aec0;
    padding: 0 8px;
    font-weight: 600;
}

/* ========== SWEETALERT2 CYBER THEME ========== */
.swal-cyber-popup {
    background: rgba(10, 14, 39, 0.98) !important;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 217, 255, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.swal-cyber-title {
    color: var(--cyber-primary) !important;
    font-weight: 800 !important;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5) !important;
}

.swal-cyber-html {
    color: #e5e7eb !important;
}

.swal-cyber-confirm {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent)) !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.swal-cyber-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6) !important;
}

.swal2-close {
    color: #a0aec0 !important;
    transition: all 0.3s ease !important;
}

.swal2-close:hover {
    color: var(--cyber-primary) !important;
    transform: rotate(90deg) !important;
}

/* Transaction description clickable style */
.transaction-description-clickable {
    position: relative;
}

.transaction-description-clickable:hover {
    color: var(--cyber-primary) !important;
    text-decoration-color: var(--cyber-primary) !important;
}

/* Bootstrap Pagination Cyber Style */
.pagination {
    --bs-pagination-color: #cbd5f0;
    --bs-pagination-bg: rgba(0, 0, 0, 0.3);
    --bs-pagination-border-color: rgba(0, 217, 255, 0.3);
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: rgba(0, 217, 255, 0.2);
    --bs-pagination-hover-border-color: var(--cyber-primary);
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-bg: rgba(0, 217, 255, 0.2);
    --bs-pagination-focus-box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    --bs-pagination-active-border-color: var(--cyber-primary);
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: rgba(0, 0, 0, 0.2);
    --bs-pagination-disabled-border-color: rgba(255, 255, 255, 0.1);
}

.page-link {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: #cbd5f0;
    font-weight: 600;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.page-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--cyber-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.page-link:focus {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--cyber-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    border-color: var(--cyber-primary);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    font-weight: 800;
}

.page-item.disabled .page-link {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty State */
.empty-state-cyber {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-cyber i {
    font-size: 3.5rem;
    color: #a0aec0;
    margin-bottom: 20px;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(160, 174, 192, 0.3));
}

.empty-state-cyber p {
    color: #cbd5f0;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Responsive */
@media (max-width: 992px) {
    .dashboard-section {
        padding: 100px 0 60px;
    }
    
    .dashboard-card-3d {
        padding: 30px 25px;
    }
    
    .dashboard-card-title {
        font-size: 1.5rem;
    }
    
    .referral-stats-cyber {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 100px 0 60px;
    }
    
    .dashboard-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-header-icon {
        width: 45px;
        height: 45px;
    }
    
    .dashboard-header-icon i {
        font-size: 1.5rem;
    }
    
    .dashboard-card-title {
        font-size: 1.3rem;
    }
    
    .user-profile-cyber {
        margin-bottom: 25px;
    }
    
    .avatar-circle-cyber {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .username-cyber {
        font-size: 1.3rem;
    }
    
    .info-item-cyber {
        padding: 12px;
    }
    
    .info-value-cyber {
        font-size: 1rem;
    }
    
    .action-card-cyber {
        padding: 30px 20px;
    }
    
    .action-icon-cyber {
        width: 70px;
        height: 70px;
    }
    
    .action-icon-cyber i {
        font-size: 2rem;
    }
    
    .action-title-cyber {
        font-size: 1.3rem;
    }
    
    .table-cyber thead th {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
    
    .table-cyber tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .table-pagination-cyber {
        text-align: center;
    }
    
    .pagination-info {
        font-size: 0.85rem;
    }
}

/* ========== AUTH PAGES STYLES ========== */

.auth-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 35px;
    padding: 50px 45px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.auth-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 35px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: relative;
    background: rgba(0, 217, 255, 0.06);
    border: 2px solid rgba(0, 217, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.2);
}

.auth-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25), transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.auth-card-3d:hover .auth-icon-wrapper::before {
    opacity: 0.6;
}

.auth-icon-wrapper i {
    font-size: 3rem;
    color: rgba(0, 217, 255, 0.8);
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
    animation: iconFloat 3s infinite ease-in-out;
}

.auth-icon-verify {
    background: rgba(131, 56, 236, 0.06);
    border-color: rgba(131, 56, 236, 0.25);
    box-shadow: 0 0 25px rgba(131, 56, 236, 0.2);
}

.auth-icon-verify i {
    color: rgba(131, 56, 236, 0.8);
    filter: drop-shadow(0 0 15px rgba(131, 56, 236, 0.5));
}

.auth-icon-forgot {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.auth-icon-forgot i {
    color: rgba(245, 158, 11, 0.8);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
}

.auth-icon-reset {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.auth-icon-reset i {
    color: rgba(16, 185, 129, 0.8);
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.5));
}

.auth-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.auth-subtitle {
    font-size: 1.1rem;
    color: #cbd5f0;
    font-weight: 300;
    margin-bottom: 0;
}

.auth-form {
    margin-top: 30px;
}

.form-group-cyber {
    margin-bottom: 25px;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--cyber-primary);
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--cyber-accent);
    transform: translateY(-50%) scale(1.1);
}

.password-toggle i {
    font-size: 1.1rem;
}

.form-check-cyber {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input-cyber {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--cyber-primary);
}

.form-check-label-cyber {
    color: #cbd5f0;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.auth-link {
    color: var(--cyber-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px rgba(131, 56, 236, 0.6);
}

.auth-link-btn {
    background: none;
    border: none;
    color: var(--cyber-primary);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.auth-link-btn:hover {
    color: var(--cyber-accent);
    text-shadow: 0 0 10px rgba(131, 56, 236, 0.6);
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #cbd5f0;
    margin: 0;
}

.auth-info-text {
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid var(--cyber-primary);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.auth-info-text p {
    color: #cbd5f0;
    margin: 0;
    line-height: 1.6;
}

/* Alert Cyber Styles */
.alert-cyber {
    padding: 12px 18px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid;
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-cyber-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.alert-cyber-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.alert-cyber-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.alert-cyber-info {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.4);
    color: var(--cyber-primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    margin-top: 15px;
}

/* Info Cards */
.auth-info-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin-top: 25px;
}

.auth-info-warning {
    border-color: rgba(245, 158, 11, 0.3);
}

.auth-info-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyber-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.auth-info-warning .auth-info-header {
    color: #f59e0b;
}

.auth-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-info-list li {
    padding: 10px 0;
    color: #cbd5f0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-info-list li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.text-cyan {
    color: var(--cyber-primary);
    font-weight: 700;
}

/* Auth Responsive */
@media (max-width: 768px) {
    .auth-section {
        padding: 100px 0 60px;
    }
    .auth-card-3d {
        padding: 35px 25px;
    }
    .auth-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .auth-icon-wrapper i {
        font-size: 2.5rem;
    }
    .auth-title {
        font-size: 1.8rem;
    }
    .auth-subtitle {
        font-size: 1rem;
    }
    .form-group-cyber {
        margin-bottom: 20px;
    }
    .auth-info-card {
        padding: 25px 20px;
    }
}

/* ========== DOWNLOAD FORMATS PAGE STYLES ========== */

.download-formats-hero {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
}

.download-formats-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.download-formats-subtitle {
    font-size: 1.2rem;
    color: #cbd5f0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.download-formats-section {
    position: relative;
    z-index: 1;
    padding: 40px 0 80px;
}

.format-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.format-card-3d:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cyber-primary);
    box-shadow: 0 40px 100px rgba(0, 217, 255, 0.4);
}

.format-card-vip {
    border-color: rgba(255, 193, 7, 0.4);
    position: relative;
}

.format-card-vip:hover {
    border-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 40px 100px rgba(255, 193, 7, 0.5);
}

.format-badge-vip {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.format-badge-vip i {
    font-size: 0.9rem;
}

.format-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.format-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.format-card-3d:hover .format-icon-wrapper::before {
    opacity: 1;
}

.format-icon-exe {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.format-icon-exe::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
    filter: blur(20px);
}

.format-icon-exe i {
    font-size: 3.5rem;
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
    animation: iconFloat 3s infinite ease-in-out;
}

.format-icon-vip {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.format-icon-vip::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 70%);
    filter: blur(20px);
}

.format-icon-vip i {
    font-size: 3.5rem;
    color: #f59e0b;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8));
    animation: iconFloat 3s infinite ease-in-out;
}

.format-icon-zip {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.format-icon-zip::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent 70%);
    filter: blur(20px);
}

.format-icon-zip i {
    font-size: 3.5rem;
    color: #10b981;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.8));
    animation: iconFloat 3s infinite ease-in-out;
}

.format-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.format-description {
    color: #cbd5f0;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.format-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.format-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.format-feature-item:last-child {
    border-bottom: none;
}

.format-feature-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.format-feature-item i.fa-check-circle {
    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.format-feature-item i.fa-info-circle {
    color: #0ea5e9;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

.format-feature-item i.fa-compress {
    color: #f59e0b;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.6));
}

.format-feature-item i.fa-shield-alt {
    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.format-feature-item i.fa-globe {
    color: #3b82f6;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

.format-card-3d .btn-3d {
    margin-top: auto;
}

.format-card-3d .btn-3d:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.format-card-3d .btn-3d:disabled:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

/* Card shine effect */
.format-card-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

/* VIP card special effects */
.format-card-vip::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.3) 0%,
        rgba(217, 119, 6, 0.3) 50%,
        rgba(245, 158, 11, 0.3) 100%);
    background-size: 200% 200%;
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderFlow 3s ease infinite;
}

.format-card-vip:hover::after {
    opacity: 1;
}

/* Download Formats Responsive */
@media (max-width: 992px) {
    .download-formats-title {
        font-size: 2.5rem;
    }
    .download-formats-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .download-formats-hero {
        padding: 100px 0 40px;
    }
    .download-formats-title {
        font-size: 2rem;
    }
    .download-formats-subtitle {
        font-size: 1rem;
    }
    .format-card-3d {
        padding: 30px 20px;
    }
    .format-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    .format-icon-wrapper i {
        font-size: 2.8rem;
    }
    .format-title {
        font-size: 1.5rem;
    }
    .format-description {
        font-size: 0.95rem;
    }
    .format-feature-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    .format-badge-vip {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ========== GIFTCODE SECTION ========== */
.giftcode-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.giftcode-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 40px 38px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.giftcode-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 30px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.giftcode-header {
    text-align: center;
    margin-bottom: 35px;
}

.giftcode-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    position: relative;
    background: rgba(0, 217, 255, 0.06);
    border: 2px solid rgba(0, 217, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    animation: iconFloat 3s infinite ease-in-out;
}

.giftcode-icon-wrapper i {
    font-size: 2.4rem;
    color: rgba(0, 217, 255, 0.85);
    filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.5));
}

.giftcode-title {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.giftcode-subtitle {
    font-size: 0.95rem;
    color: #a0aec0;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.giftcode-form {
    margin-top: 30px;
}

.giftcode-input-wrapper {
    position: relative;
}

.giftcode-input-wrapper .form-control-cyber {
    padding-right: 50px;
}

.giftcode-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyber-primary);
    font-size: 1.1rem;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.5));
}

.invalid-feedback-cyber {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
    padding: 8px 12px;
    border-radius: 8px;
}

.giftcode-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.giftcode-guide {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.giftcode-guide-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.giftcode-guide-title i {
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.guide-step-card {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: all 0.3s ease;
    height: 100%;
}

.guide-step-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.guide-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    position: relative;
}

.guide-step-icon .step-number {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-step-text {
    font-size: 0.9rem;
    color: #cbd5f0;
    margin: 0;
    line-height: 1.5;
}

.btn-loading .spinner-border {
    display: inline-block !important;
}

.btn-loading .btn-text {
    display: none;
}

/* Giftcode History */
.giftcode-history-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.giftcode-history-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 40px 38px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.giftcode-history-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 30px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.giftcode-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.giftcode-history-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.giftcode-history-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.giftcode-history-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.giftcode-history-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.giftcode-history-body {
    margin-top: 20px;
}

.giftcode-value {
    font-weight: 700;
    color: var(--cyber-primary);
    font-size: 1rem;
}

.giftcode-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.giftcode-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.giftcode-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Giftcode Stats */
.giftcode-stats-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 35px 38px;
    margin-top: 30px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.giftcode-stats-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 30px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.giftcode-stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.giftcode-stats-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.giftcode-stats-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.giftcode-stats-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.3px;
}

.giftcode-stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: all 0.3s ease;
    height: 100%;
}

.giftcode-stat-item:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.giftcode-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.giftcode-stat-icon-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
}

.giftcode-stat-icon-warning {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.giftcode-stat-icon-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.giftcode-stat-icon i {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.giftcode-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.giftcode-stat-label {
    font-size: 0.85rem;
    color: #a0aec0;
    margin: 0;
    font-weight: 500;
}

/* Giftcode Responsive */
@media (max-width: 768px) {
    .giftcode-section,
    .giftcode-history-section {
        padding: 100px 0 60px;
    }
    
    .giftcode-card-3d,
    .giftcode-history-card-3d,
    .giftcode-stats-card-3d {
        padding: 30px 25px;
        border-radius: 25px;
    }
    
    .giftcode-history-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .giftcode-history-title-wrapper {
        width: 100%;
    }
    
    .giftcode-history-header .btn-3d {
        width: 100%;
    }
    
    .giftcode-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .giftcode-icon-wrapper i {
        font-size: 2rem;
    }
    
    .giftcode-title,
    .giftcode-history-title {
        font-size: 1.5rem;
    }
    
    .guide-step-card {
        margin-bottom: 15px;
    }
}

/* ========== ADMIN PAGES - CYBER THEME ========== */
.admin-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.admin-card-3d {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 30px;
    padding: 40px 38px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.25),
        0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    margin-bottom: 30px;
}

.admin-card-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.6) 0%,
        rgba(131, 56, 236, 0.6) 50%,
        rgba(255, 0, 110, 0.6) 100%);
    background-size: 200% 200%;
    border-radius: 30px;
    z-index: -1;
    animation: borderFlow 4s ease infinite;
    opacity: 0.7;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-icon-wrapper {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.admin-icon-wrapper i {
    font-size: 1.35rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.admin-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.admin-title.gradient-text {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.admin-stat-card {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyber-primary), var(--cyber-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-stat-card:hover {
    border-color: rgba(0, 217, 255, 0.6);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(0, 217, 255, 0.3),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
    background: rgba(0, 0, 0, 0.6);
}

.admin-stat-card:hover::before {
    opacity: 1;
}

.admin-stat-card.primary::before {
    background: linear-gradient(180deg, var(--cyber-primary), #0066cc);
}

.admin-stat-card.success::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.admin-stat-card.info::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.admin-stat-card.warning::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.admin-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}


.admin-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(0, 217, 255, 0.15);
    border: 2px solid rgba(0, 217, 255, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.2);
}

.admin-stat-card:hover .admin-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
}

.admin-stat-icon i {
    font-size: 1.35rem;
    color: var(--cyber-primary);
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
    transition: all 0.3s ease;
}

.admin-stat-icon-primary {
    background: rgba(0, 217, 255, 0.15) !important;
    border-color: rgba(0, 217, 255, 0.4) !important;
}

.admin-stat-icon-primary i {
    color: var(--cyber-primary) !important;
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6)) !important;
}

.admin-stat-icon-success {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}

.admin-stat-icon-success i {
    color: #10b981 !important;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6)) !important;
}

.admin-stat-icon-info {
    background: rgba(59, 130, 246, 0.15) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

.admin-stat-icon-info i {
    color: #3b82f6 !important;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6)) !important;
}

.admin-stat-icon-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.4) !important;
}

.admin-stat-icon-warning i {
    color: #f59e0b !important;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6)) !important;
}

.admin-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-stat-label {
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin: 0;
    opacity: 0.9;
}

.admin-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    background: linear-gradient(135deg, #fff, var(--cyber-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-stat-value.text-success {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.admin-stat-value.text-warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.admin-stat-value.text-info {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.admin-stat-value.text-cyan {
    background: linear-gradient(135deg, var(--cyber-primary), #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.admin-filter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.admin-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.admin-filter-btn {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #cbd5f0;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.admin-filter-btn:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.admin-filter-btn.active {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    border-color: var(--cyber-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

/* Admin Table Cyber Style */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table-cyber {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.admin-table-cyber thead th {
    background: rgba(0, 217, 255, 0.15);
    color: var(--cyber-primary);
    font-weight: 700;
    padding: 14px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 2px solid rgba(0, 217, 255, 0.4);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.admin-table-cyber tbody tr {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table-cyber tbody tr:hover {
    background: rgba(0, 217, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
}

.admin-table-cyber tbody td {
    padding: 14px 15px;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.8rem;
    vertical-align: middle;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-section {
        padding: 100px 0 60px;
    }
    
    .admin-card-3d {
        padding: 30px 25px;
        border-radius: 25px;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-title {
        font-size: 1.5rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .admin-filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-filter-group {
        width: 100%;
        justify-content: space-between;
    }
}

/* Revenue Modal Styles */
/* ========== MODAL CYBER THEME ========== */
.modal {
    z-index: 1055;
}

.modal-dialog {
    margin: 1.75rem auto;
    max-width: 500px;
    position: relative;
}

.modal-dialog.modal-lg {
    max-width: 800px;
}

.modal-dialog.modal-xl {
    max-width: 1140px;
}

.modal-content {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.modal .admin-card-3d {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 217, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.modal .admin-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--cyber-primary), 
        var(--cyber-accent), 
        var(--cyber-secondary),
        var(--cyber-primary));
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

.modal .admin-card-3d .admin-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    margin-bottom: 0;
    background: rgba(0, 217, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal .admin-card-3d .admin-header .admin-title-wrapper {
    flex: 1;
}

.modal .admin-card-3d .modal-body {
    background: transparent;
    padding: 30px;
    color: #e5e7eb;
}

.modal .admin-card-3d .modal-body .form-label-cyber {
    margin-bottom: 8px;
}

.modal .admin-card-3d .modal-body p.text-light {
    color: #cbd5f0 !important;
    font-size: 0.9rem;
    margin-bottom: 0;
    padding: 8px 12px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.modal .admin-card-3d .modal-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.modal .admin-card-3d .modal-footer.admin-actions {
    gap: 12px;
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1050;
}

.modal-backdrop.show {
    opacity: 1;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-close-white:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    filter: invert(1) grayscale(0%) brightness(200%);
}

.btn-close-white:focus {
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
}

/* Textarea Cyber */
.textarea-cyber {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 15px;
    color: #fff;
    padding: 12px 16px;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.textarea-cyber::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.textarea-cyber:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--cyber-primary);
    box-shadow: 
        0 0 25px rgba(0, 217, 255, 0.4),
        inset 0 2px 10px rgba(0, 217, 255, 0.15),
        0 0 0 3px rgba(0, 217, 255, 0.1);
    outline: none;
    color: #fff;
    transform: translateY(-2px);
}

.textarea-cyber:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-dialog.modal-lg {
        max-width: calc(100% - 1rem);
    }
    
    .modal .admin-card-3d .admin-header {
        padding: 15px 20px;
    }
    
    .modal .admin-card-3d .modal-body {
        padding: 20px;
    }
    
    .modal .admin-card-3d .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .modal .admin-card-3d .modal-footer .btn-3d {
        width: 100%;
    }
}

/* ========== CONFIRM MODAL - PACKAGE PURCHASE ========== */
.confirm-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.confirm-modal-overlay.show {
    display: flex;
}

.confirm-modal-cyber {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(5, 8, 22, 0.95));
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.3),
        inset 0 0 40px rgba(0, 217, 255, 0.1);
    animation: slideUp 0.3s ease;
    position: relative;
    overflow: hidden;
}

.confirm-modal-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-accent));
}

.confirm-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.confirm-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(0, 217, 255, 0.15);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyber-primary);
}

.confirm-modal-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.confirm-modal-subtitle {
    color: rgba(229, 231, 235, 0.7);
    font-size: 0.9rem;
}

.confirm-modal-body {
    margin-bottom: 1.5rem;
}

.confirm-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
}

.confirm-info-label {
    color: rgba(229, 231, 235, 0.8);
    font-weight: 500;
}

.confirm-info-value {
    color: var(--cyber-primary);
    font-weight: 600;
}

.confirm-info-value.price-original {
    text-decoration: line-through;
    color: rgba(239, 68, 68, 0.7);
    margin-right: 0.5rem;
}

.confirm-modal-actions {
    display: flex;
    gap: 1rem;
}

.confirm-modal-actions .btn-3d {
    flex: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .confirm-modal-cyber {
        padding: 1.5rem;
    }
    
    .confirm-modal-actions {
        flex-direction: column;
    }
}

