/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Gray Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-glass: rgba(20, 20, 20, 0.8);
    
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --accent-primary: #3b82f6;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #8b5cf6;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-secondary: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-tertiary: linear-gradient(135deg, #8b5cf6, #ec4899);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Z-indexes */
    --z-bg-effects: -1;
    --z-content: 1;
    --z-navbar: 100;
    --z-preloader: 1000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luarmor-logo {
    position: relative;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--gray-800);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    animation: loadingTextFade 1.5s ease-in-out infinite;
}

@keyframes loadingTextFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-navbar);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.nav-logo:hover .logo-glow {
    opacity: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--gray-100);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-300);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg-effects);
}

#hero-canvas {
    width: 100%;
    height: 100%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="rgba(6,182,212,0.3)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="0.8" fill="rgba(139,92,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: var(--z-content);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

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

/* Buttons */
.cta-button {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--gray-300);
    border: 2px solid var(--gray-700);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary:hover {
    border-color: var(--accent-primary);
    color: var(--gray-100);
}

.button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.cta-button:hover .button-particles {
    opacity: 1;
    animation: buttonParticles 1s ease;
}

@keyframes buttonParticles {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-500);
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Container and Sections */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.6;
}

/* API Dashboard */
.api-section {
    background: var(--bg-primary);
}

.api-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-100);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #10b981;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.refresh-btn {
    background: none;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.refresh-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(180deg);
}

.card-content {
    padding: 1.5rem;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-700);
    border-top: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

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

.status-content,
.key-content,
.stats-content {
    display: flex;
    align-items: center;
    color: var(--gray-300);
}

/* License Section */
.license-section {
    background: var(--bg-secondary);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.license-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-medium);
    overflow: visible;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.license-card:hover::before {
    opacity: 0.05;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.license-card.lifetime {
    border-color: var(--accent-primary);
}

.license-card.lifetime::before {
    background: var(--gradient-primary);
    opacity: 0.1;
}

.license-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.license-header {
    text-align: center;
    margin-bottom: 2rem;
}

.license-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.license-icon svg {
    width: 30px;
    height: 30px;
}

.license-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-100);
}

.license-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.license-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-price .period {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.license-features {
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature:last-child {
    border-bottom: none;
}

.license-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.license-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

.license-btn.primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.license-btn.secondary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.license-btn.secondary:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    opacity: 1;
}

@media (min-width: 768px) {
    .license-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .license-btn.primary {
        flex: 2;
    }
    
    .license-btn.secondary {
        flex: 1;
    }
}

.license-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.info-card h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Dashboard Section */
.dashboard-section {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Auth Section */
.auth-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.auth-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.auth-tab:hover {
    color: var(--gray-200);
    background: rgba(255, 255, 255, 0.05);
}

.auth-tab.active {
    color: var(--primary-400);
    background: rgba(59, 130, 246, 0.1);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-400);
}

.tab-icon {
    font-size: 1.1rem;
}

/* Auth Tab Content */
.auth-tab-content {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.3s ease-in-out;
}

.auth-tab-content.active {
    display: block;
}

.tab-header h3 {
    color: var(--gray-100);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tab-header p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.auth-help {
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-help p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Social Login Styles */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--gray-100);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.social-btn.google:hover {
    border-color: #4285F4;
    box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.2);
}

.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.2);
}

.social-btn svg {
    flex-shrink: 0;
}

.social-btn.large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-btn.large svg {
    width: 24px;
    height: 24px;
}

/* Registration Steps */
.registration-steps {
    margin: 2rem 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all var(--transition-medium);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
    color: var(--primary-400);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.step.active .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step.completed .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--gray-200);
}

.step.completed .step-label {
    color: var(--primary-400);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

/* Registration Step Content */
.registration-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.registration-step.active {
    display: block;
}

.step-content {
    text-align: center;
}

.step-content h4 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Discord Info Display */
.discord-info {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.user-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.25rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.username {
    color: var(--gray-100);
    font-weight: 600;
    font-size: 1.1rem;
}

.discord-id {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Form Help Text */
.form-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.auth-btn.secondary {
    background: var(--bg-secondary);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-btn.secondary:hover {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auth-btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Success Animation */
.success-animation {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

.success-animation h4 {
    color: var(--primary-400);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-animation p {
    color: var(--gray-300);
    font-size: 1rem;
}

/* Registration Summary */
.registration-summary {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--gray-100);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 1rem;
}

/* Manual Login */
.manual-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Admin Panel Styles */
.admin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-section .auth-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.admin-card {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-glass), rgba(59, 130, 246, 0.05));
}

.admin-card h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-btn.admin {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.auth-btn.admin:hover {
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.5);
}

/* Help Text */
.help-text {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Admin Badge */
.admin-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-grid .stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-grid .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.stat-grid .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Dashboard Content */
.dashboard-content {
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.dashboard-content.active {
    opacity: 1;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    color: var(--gray-100);
    font-size: 1.2rem;
    font-weight: 600;
}

.card-subtitle {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.refresh-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.refresh-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: rotate(180deg);
}

/* User Info Styles */
.user-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
}

.info-label {
    color: var(--gray-400);
    font-weight: 500;
}

.info-value {
    color: var(--gray-100);
    font-weight: 600;
}

/* License Status Styles */
.license-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Scripts List Styles */
.scripts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.script-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.script-info h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.script-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.script-actions {
    display: flex;
    gap: 0.5rem;
}

/* HWID Management Styles */
.hwid-info {
    margin-bottom: 2rem;
}

.hwid-display {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: monospace;
    color: var(--gray-300);
    word-break: break-all;
}

.hwid-actions {
    text-align: center;
}

.hwid-actions .action-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Action Buttons */
.action-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.action-btn.secondary {
    background: var(--gray-700);
    color: var(--gray-100);
}

.action-btn.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* License Actions Styles */
.action-group {
    margin-bottom: 2rem;
}

.action-group:last-child {
    margin-bottom: 0;
}

.action-group h4 {
    color: var(--gray-200);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.redeem-form {
    display: flex;
    gap: 1rem;
}

.license-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-100);
    font-size: 0.9rem;
}

.license-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Statistics Styles */
.usage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Dashboard Footer */
.dashboard-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    padding: 0.75rem 2rem;
    background: var(--gray-700);
    color: var(--gray-100);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.logout-btn:hover {
    background: var(--gray-600);
    transform: translateY(-2px);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .auth-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .auth-tab-content {
        padding: 2rem 1.5rem;
    }

    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .step-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .auth-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .social-btn.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .discord-info {
        padding: 1rem;
    }

    .user-preview {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .user-details {
        align-items: center;
    }

    .registration-summary {
        padding: 1rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .redeem-form {
        flex-direction: column;
    }
    
    .quick-actions {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    margin: 1.5rem 0 2rem 0;
    text-align: left;
    padding: 1rem 0;
}

.pricing-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-features .feature.disabled::before {
    content: '✗';
    color: #ff6b6b;
}

.pricing-features .feature.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all var(--transition-medium);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.contact-details h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-400);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--gray-100);
}

.footer-description {
    color: var(--gray-400);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-bg-effects);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-tertiary);
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid,
    .scripts-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Customer Dashboard Styles */
.customer-dashboard {
    display: none;
    padding: 2rem 0;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

.avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    z-index: -1;
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.user-info h2 {
    margin: 0;
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-info p {
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* Customer Statistics Grid */
.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .customer-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .customer-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.stat-card.interactive {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card.interactive:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-card.interactive:hover .stat-glow {
    opacity: 1;
    transform: scale(1.1);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 500;
}

/* Animation classes for stat updates */
.stat-updating {
    animation: statPulse 0.6s ease-in-out;
}

.stat-updated {
    animation: statGlow 0.5s ease-in-out;
}

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

@keyframes statGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    100% { text-shadow: none; }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Gray Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-glass: rgba(20, 20, 20, 0.8);
    
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --accent-primary: #3b82f6;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #8b5cf6;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-secondary: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-tertiary: linear-gradient(135deg, #8b5cf6, #ec4899);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Z-indexes */
    --z-bg-effects: -1;
    --z-content: 1;
    --z-navbar: 100;
    --z-preloader: 1000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luarmor-logo {
    position: relative;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--gray-800);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    animation: loadingTextFade 1.5s ease-in-out infinite;
}

@keyframes loadingTextFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-navbar);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.nav-logo:hover .logo-glow {
    opacity: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--gray-100);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-300);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg-effects);
}

#hero-canvas {
    width: 100%;
    height: 100%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="rgba(6,182,212,0.3)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="0.8" fill="rgba(139,92,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: var(--z-content);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

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

/* Buttons */
.cta-button {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--gray-300);
    border: 2px solid var(--gray-700);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary:hover {
    border-color: var(--accent-primary);
    color: var(--gray-100);
}

.button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.cta-button:hover .button-particles {
    opacity: 1;
    animation: buttonParticles 1s ease;
}

@keyframes buttonParticles {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-500);
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Container and Sections */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.6;
}

/* API Dashboard */
.api-section {
    background: var(--bg-primary);
}

.api-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-100);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #10b981;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.refresh-btn {
    background: none;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.refresh-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(180deg);
}

.card-content {
    padding: 1.5rem;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-700);
    border-top: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

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

.status-content,
.key-content,
.stats-content {
    display: flex;
    align-items: center;
    color: var(--gray-300);
}

/* License Section */
.license-section {
    background: var(--bg-secondary);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.license-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-medium);
    overflow: visible;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.license-card:hover::before {
    opacity: 0.05;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.license-card.lifetime {
    border-color: var(--accent-primary);
}

.license-card.lifetime::before {
    background: var(--gradient-primary);
    opacity: 0.1;
}

.license-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.license-header {
    text-align: center;
    margin-bottom: 2rem;
}

.license-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.license-icon svg {
    width: 30px;
    height: 30px;
}

.license-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-100);
}

.license-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.license-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-price .period {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.license-features {
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature:last-child {
    border-bottom: none;
}

.license-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.license-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

.license-btn.primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.license-btn.secondary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.license-btn.secondary:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    opacity: 1;
}

@media (min-width: 768px) {
    .license-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .license-btn.primary {
        flex: 2;
    }
    
    .license-btn.secondary {
        flex: 1;
    }
}

.license-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.info-card h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Dashboard Section */
.dashboard-section {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Auth Section */
.auth-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.auth-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.auth-tab:hover {
    color: var(--gray-200);
    background: rgba(255, 255, 255, 0.05);
}

.auth-tab.active {
    color: var(--primary-400);
    background: rgba(59, 130, 246, 0.1);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-400);
}

.tab-icon {
    font-size: 1.1rem;
}

/* Auth Tab Content */
.auth-tab-content {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.3s ease-in-out;
}

.auth-tab-content.active {
    display: block;
}

.tab-header h3 {
    color: var(--gray-100);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tab-header p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.auth-help {
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-help p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Social Login Styles */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--gray-100);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.social-btn.google:hover {
    border-color: #4285F4;
    box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.2);
}

.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.2);
}

.social-btn svg {
    flex-shrink: 0;
}

.social-btn.large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-btn.large svg {
    width: 24px;
    height: 24px;
}

/* Registration Steps */
.registration-steps {
    margin: 2rem 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all var(--transition-medium);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
    color: var(--primary-400);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.step.active .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step.completed .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--gray-200);
}

.step.completed .step-label {
    color: var(--primary-400);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

/* Registration Step Content */
.registration-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.registration-step.active {
    display: block;
}

.step-content {
    text-align: center;
}

.step-content h4 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Discord Info Display */
.discord-info {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.user-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.25rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.username {
    color: var(--gray-100);
    font-weight: 600;
    font-size: 1.1rem;
}

.discord-id {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Form Help Text */
.form-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.auth-btn.secondary {
    background: var(--bg-secondary);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-btn.secondary:hover {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auth-btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Success Animation */
.success-animation {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

.success-animation h4 {
    color: var(--primary-400);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-animation p {
    color: var(--gray-300);
    font-size: 1rem;
}

/* Registration Summary */
.registration-summary {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--gray-100);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 1rem;
}

/* Manual Login */
.manual-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Admin Panel Styles */
.admin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-section .auth-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.admin-card {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-glass), rgba(59, 130, 246, 0.05));
}

.admin-card h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-btn.admin {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.auth-btn.admin:hover {
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.5);
}

/* Help Text */
.help-text {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Admin Badge */
.admin-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-grid .stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-grid .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.stat-grid .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Dashboard Content */
.dashboard-content {
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.dashboard-content.active {
    opacity: 1;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    color: var(--gray-100);
    font-size: 1.2rem;
    font-weight: 600;
}

.card-subtitle {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.refresh-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.refresh-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: rotate(180deg);
}

/* User Info Styles */
.user-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
}

.info-label {
    color: var(--gray-400);
    font-weight: 500;
}

.info-value {
    color: var(--gray-100);
    font-weight: 600;
}

/* License Status Styles */
.license-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Scripts List Styles */
.scripts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.script-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.script-info h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.script-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.script-actions {
    display: flex;
    gap: 0.5rem;
}

/* HWID Management Styles */
.hwid-info {
    margin-bottom: 2rem;
}

.hwid-display {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: monospace;
    color: var(--gray-300);
    word-break: break-all;
}

.hwid-actions {
    text-align: center;
}

.hwid-actions .action-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Action Buttons */
.action-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.action-btn.secondary {
    background: var(--gray-700);
    color: var(--gray-100);
}

.action-btn.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* License Actions Styles */
.action-group {
    margin-bottom: 2rem;
}

.action-group:last-child {
    margin-bottom: 0;
}

.action-group h4 {
    color: var(--gray-200);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.redeem-form {
    display: flex;
    gap: 1rem;
}

.license-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-100);
    font-size: 0.9rem;
}

.license-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Statistics Styles */
.usage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Dashboard Footer */
.dashboard-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    padding: 0.75rem 2rem;
    background: var(--gray-700);
    color: var(--gray-100);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.logout-btn:hover {
    background: var(--gray-600);
    transform: translateY(-2px);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .auth-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .auth-tab-content {
        padding: 2rem 1.5rem;
    }

    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .step-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .auth-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .social-btn.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .discord-info {
        padding: 1rem;
    }

    .user-preview {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .user-details {
        align-items: center;
    }

    .registration-summary {
        padding: 1rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .redeem-form {
        flex-direction: column;
    }
    
    .quick-actions {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    margin: 1.5rem 0 2rem 0;
    text-align: left;
    padding: 1rem 0;
}

.pricing-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-features .feature.disabled::before {
    content: '✗';
    color: #ff6b6b;
}

.pricing-features .feature.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all var(--transition-medium);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.contact-details h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-400);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--gray-100);
}

.footer-description {
    color: var(--gray-400);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-bg-effects);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-tertiary);
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid,
    .scripts-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Customer Dashboard Styles */
.customer-dashboard {
    display: none;
    padding: 2rem 0;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

.avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    z-index: -1;
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.user-info h2 {
    margin: 0;
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-info p {
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.configs {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* Customer Statistics Grid */
.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card.interactive {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card.interactive:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-card.interactive:hover .stat-glow {
    opacity: 1;
    transform: scale(1.1);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 500;
}

/* Animation classes for stat updates */
.stat-updating {
    animation: statPulse 0.6s ease-in-out;
}

.stat-updated {
    animation: statGlow 0.5s ease-in-out;
}

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

@keyframes statGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    100% { text-shadow: none; }
}

/* Dashboard Card Styles */
.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.dashboard-card .card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.chart-controls select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
}

.chart-controls select option {
    background: #1a1a1a;
}

.dashboard-card .card-content {
    padding: 1.5rem;
}

.dashboard-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-cards-row .dashboard-card {
    margin-bottom: 0;
}

.dashboard-cards-row .dashboard-card .card-content {
    min-height: 300px;
}

@media (max-width: 768px) {
    .dashboard-cards-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-cards-row .dashboard-card {
        margin-bottom: 1.5rem;
    }
}

.user-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.detail-label {
    font-weight: 500;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.detail-value {
    font-family: 'Courier New', monospace;
    color: var(--gray-100);
    font-size: 0.9rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-item .copy-btn {
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .user-details-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        max-width: 100%;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Gray Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-glass: rgba(20, 20, 20, 0.8);
    
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --accent-primary: #3b82f6;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #8b5cf6;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-secondary: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-tertiary: linear-gradient(135deg, #8b5cf6, #ec4899);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Z-indexes */
    --z-bg-effects: -1;
    --z-content: 1;
    --z-navbar: 100;
    --z-preloader: 1000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luarmor-logo {
    position: relative;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(180deg); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--gray-800);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--gray-400);
    font-size: 0.9rem;
    animation: loadingTextFade 1.5s ease-in-out infinite;
}

@keyframes loadingTextFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-navbar);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.nav-logo:hover .logo-glow {
    opacity: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--gray-100);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-300);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg-effects);
}

#hero-canvas {
    width: 100%;
    height: 100%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="rgba(6,182,212,0.3)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="0.8" fill="rgba(139,92,246,0.3)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: var(--z-content);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

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

/* Buttons */
.cta-button {
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--gray-300);
    border: 2px solid var(--gray-700);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary:hover {
    border-color: var(--accent-primary);
    color: var(--gray-100);
}

.button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.cta-button:hover .button-particles {
    opacity: 1;
    animation: buttonParticles 1s ease;
}

@keyframes buttonParticles {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-500);
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Container and Sections */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.6;
}

/* API Dashboard */
.api-section {
    background: var(--bg-primary);
}

.api-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-100);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #10b981;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.refresh-btn {
    background: none;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.refresh-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(180deg);
}

.card-content {
    padding: 1.5rem;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-700);
    border-top: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

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

.status-content,
.key-content,
.stats-content {
    display: flex;
    align-items: center;
    color: var(--gray-300);
}

/* License Section */
.license-section {
    background: var(--bg-secondary);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.license-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-medium);
    overflow: visible;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.license-card:hover::before {
    opacity: 0.05;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.license-card.lifetime {
    border-color: var(--accent-primary);
}

.license-card.lifetime::before {
    background: var(--gradient-primary);
    opacity: 0.1;
}

.license-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.license-header {
    text-align: center;
    margin-bottom: 2rem;
}

.license-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.license-icon svg {
    width: 30px;
    height: 30px;
}

.license-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-100);
}

.license-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.license-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-price .period {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.license-features {
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-features .feature:last-child {
    border-bottom: none;
}

.license-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.license-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.license-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

.license-btn.primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.license-btn.secondary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.license-btn.secondary:hover {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    opacity: 1;
}

@media (min-width: 768px) {
    .license-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .license-btn.primary {
        flex: 2;
    }
    
    .license-btn.secondary {
        flex: 1;
    }
}

.license-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.info-card h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Dashboard Section */
.dashboard-section {
    background: var(--bg-primary);
    min-height: 100vh;
}

/* Auth Section */
.auth-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.auth-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.auth-tab:hover {
    color: var(--gray-200);
    background: rgba(255, 255, 255, 0.05);
}

.auth-tab.active {
    color: var(--primary-400);
    background: rgba(59, 130, 246, 0.1);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-400);
}

.tab-icon {
    font-size: 1.1rem;
}

/* Auth Tab Content */
.auth-tab-content {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.3s ease-in-out;
}

.auth-tab-content.active {
    display: block;
}

.tab-header h3 {
    color: var(--gray-100);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tab-header p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.auth-help {
    text-align: left;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-help p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Social Login Styles */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--gray-100);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.social-btn.google:hover {
    border-color: #4285F4;
    box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.2);
}

.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.2);
}

.social-btn svg {
    flex-shrink: 0;
}

.social-btn.large {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-btn.large svg {
    width: 24px;
    height: 24px;
}

/* Registration Steps */
.registration-steps {
    margin: 2rem 0;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all var(--transition-medium);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
    color: var(--primary-400);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.step.active .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step.completed .step-number {
    background: var(--primary-500);
    border-color: var(--primary-400);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--gray-200);
}

.step.completed .step-label {
    color: var(--primary-400);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
}

/* Registration Step Content */
.registration-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.registration-step.active {
    display: block;
}

.step-content {
    text-align: center;
}

.step-content h4 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Discord Info Display */
.discord-info {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.user-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.25rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.username {
    color: var(--gray-100);
    font-weight: 600;
    font-size: 1.1rem;
}

.discord-id {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Form Help Text */
.form-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.auth-btn.secondary {
    background: var(--bg-secondary);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-btn.secondary:hover {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auth-btn.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Success Animation */
.success-animation {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease-out;
}

.success-animation h4 {
    color: var(--primary-400);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-animation p {
    color: var(--gray-300);
    font-size: 1rem;
}

/* Registration Summary */
.registration-summary {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.summary-value {
    color: var(--gray-100);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 1rem;
}

/* Manual Login */
.manual-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Admin Panel Styles */
.admin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.admin-section .auth-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.admin-card {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-glass), rgba(59, 130, 246, 0.05));
}

.admin-card h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-btn.admin {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.auth-btn.admin:hover {
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.5);
}

/* Help Text */
.help-text {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Admin Badge */
.admin-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-grid .stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.stat-grid .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.stat-grid .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Dashboard Content */
.dashboard-content {
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.dashboard-content.active {
    opacity: 1;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    color: var(--gray-100);
    font-size: 1.2rem;
    font-weight: 600;
}

.card-subtitle {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.refresh-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-400);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.refresh-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: rotate(180deg);
}

/* User Info Styles */
.user-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
}

.info-label {
    color: var(--gray-400);
    font-weight: 500;
}

.info-value {
    color: var(--gray-100);
    font-weight: 600;
}

/* License Status Styles */
.license-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

/* Scripts List Styles */
.scripts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.script-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.script-info h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.script-info p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.script-actions {
    display: flex;
    gap: 0.5rem;
}

/* HWID Management Styles */
.hwid-info {
    margin-bottom: 2rem;
}

.hwid-display {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: monospace;
    color: var(--gray-300);
    word-break: break-all;
}

.hwid-actions {
    text-align: center;
}

.hwid-actions .action-help {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Action Buttons */
.action-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.action-btn.secondary {
    background: var(--gray-700);
    color: var(--gray-100);
}

.action-btn.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* License Actions Styles */
.action-group {
    margin-bottom: 2rem;
}

.action-group:last-child {
    margin-bottom: 0;
}

.action-group h4 {
    color: var(--gray-200);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.redeem-form {
    display: flex;
    gap: 1rem;
}

.license-input {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-100);
    font-size: 0.9rem;
}

.license-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Statistics Styles */
.usage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Dashboard Footer */
.dashboard-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    padding: 0.75rem 2rem;
    background: var(--gray-700);
    color: var(--gray-100);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.logout-btn:hover {
    background: var(--gray-600);
    transform: translateY(-2px);
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .auth-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .auth-tab-content {
        padding: 2rem 1.5rem;
    }

    .step-indicator {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .step-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .auth-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .social-btn.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .discord-info {
        padding: 1rem;
    }

    .user-preview {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .user-details {
        align-items: center;
    }

    .registration-summary {
        padding: 1rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .redeem-form {
        flex-direction: column;
    }
    
    .quick-actions {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    margin: 1.5rem 0 2rem 0;
    text-align: left;
    padding: 1rem 0;
}

.pricing-features .feature {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-features .feature.disabled::before {
    content: '✗';
    color: #ff6b6b;
}

.pricing-features .feature.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all var(--transition-medium);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.contact-details h4 {
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-400);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gray-100);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--gray-100);
}

.footer-description {
    color: var(--gray-400);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-bg-effects);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-tertiary);
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid,
    .scripts-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Customer Dashboard Styles */
.customer-dashboard {
    display: none;
    padding: 2rem 0;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

.avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    z-index: -1;
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.user-info h2 {
    margin: 0;
    font-size: 2rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-info p {
    margin: 0.5rem 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-btn.configs {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* Customer Statistics Grid */
.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card.interactive {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card.interactive:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.stat-card.interactive:hover .stat-glow {
    opacity: 1;
    transform: scale(1.1);
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 500;
}

/* Animation classes for stat updates */
.stat-updating {
    animation: statPulse 0.6s ease-in-out;
}

.stat-updated {
    animation: statGlow 0.5s ease-in-out;
}

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

@keyframes statGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    100% { text-shadow: none; }
}

/* Dashboard Card Styles */
.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.dashboard-card .card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.chart-controls select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
}

.chart-controls select option {
    background: #1a1a1a;
    color: white;
}

.dashboard-card .card-content {
    padding: 1.5rem;
}

/* Two-column layout for License Management and Latest Updates */
.dashboard-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-cards-row .dashboard-card {
    margin-bottom: 0;
    min-height: 450px;
}

.dashboard-cards-row .dashboard-card .card-content {
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .dashboard-cards-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-cards-row .dashboard-card {
        min-height: auto;
    }
}

/* Chart Insights */
.chart-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-item {
    text-align: center;
}

.insight-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.insight-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00d4ff;
}

/* License Management */
.license-info {
    padding: 0.5rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.license-key-display {
    margin-bottom: 1rem;
}

.license-key-display label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

.key-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.key-container code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00d4ff;
    background: none;
    border: none;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.copy-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.license-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Registration Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.registration-modal {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: white;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.registration-form .form-group {
    margin-bottom: 1.5rem;
}

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.registration-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.registration-form input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.registration-form input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.registration-form small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.form-actions {
    margin-top: 2rem;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    padding: 2rem 0;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
}

.admin-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-header p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.admin-actions .refresh-btn,
.admin-actions .logout-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.admin-actions .refresh-btn {
    background: var(--gradient-primary);
    color: white;
}

.admin-actions .logout-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-actions .refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.admin-actions .logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Admin Statistics Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-medium);
}

.stat-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-content {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Admin Cards */
.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.admin-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.admin-card .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-card .card-content {
    padding: 1.5rem;
}

/* Chart Container for Horizontal Scrolling */
.admin-card:has(#execution-chart) .card-content {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2rem;
}

/* Custom Scrollbar for Chart Container */
.admin-card:has(#execution-chart) .card-content::-webkit-scrollbar {
    height: 8px;
}

.admin-card:has(#execution-chart) .card-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.admin-card:has(#execution-chart) .card-content::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.6);
    border-radius: 4px;
}

.admin-card:has(#execution-chart) .card-content::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.8);
}

/* Execution Chart */
#execution-chart {
    width: 400%;
    max-width: none;
    height: 400px !important;
    max-height: 400px !important;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Customer Chart - Similar to execution chart but slightly smaller */
#customer-chart {
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important;
    max-height: 350px !important;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    display: block;
}

/* Customer Chart Container */
.dashboard-card:has(#customer-chart) .card-content {
    overflow: hidden;
    padding-bottom: 1rem;
    height: auto;
    max-height: 450px;
}

/* Script Popup Modal */
.script-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.script-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.script-popup-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.script-popup-overlay.active .script-popup-modal {
    transform: scale(1) translateY(0);
}

.script-popup-modal::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.script-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.script-popup-title {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.script-popup-title::before {
    content: '🚀';
    font-size: 1.2em;
}

.script-popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.script-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: rotate(90deg);
}

.script-popup-content {
    color: #fff;
}

.script-popup-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.script-code-container {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.script-code-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.script-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.script-code-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.script-code-label::before {
    content: '📋';
    font-size: 1em;
}

.script-copy-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.script-copy-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.script-copy-btn.copied {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}

.script-code {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-all;
    user-select: all;
    position: relative;
    overflow-x: auto;
}

.script-code::selection {
    background: rgba(0, 212, 255, 0.3);
}

.script-popup-instructions {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.script-popup-instructions h4 {
    color: #00d4ff;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.script-popup-instructions h4::before {
    content: '💡';
    font-size: 1em;
}

.script-popup-instructions p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* HWID Cooldown Popup */
.hwid-cooldown-popup .script-popup-title::before {
    content: '⏰';
}

.hwid-cooldown-popup .script-popup-modal {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 165, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hwid-cooldown-popup .script-popup-modal::before {
    background: linear-gradient(45deg, #ffa500, #ff8c00, #ffa500);
}

.hwid-cooldown-popup .script-popup-title {
    color: #ffa500;
}

.cooldown-timer {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
}

.cooldown-time {
    font-size: 2rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.cooldown-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .script-popup-modal {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .script-popup-title {
        font-size: 1.3rem;
    }
    
    .script-code {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .cooldown-time {
        font-size: 1.5rem;
    }
}

.dashboard-card:has(#customer-chart) .card-content::-webkit-scrollbar {
    height: 8px;
}

.dashboard-card:has(#customer-chart) .card-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dashboard-card:has(#customer-chart) .card-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.6);
    border-radius: 4px;
}

.dashboard-card:has(#customer-chart) .card-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

/* Analytics Controls */
.analytics-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.analytics-controls select {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--gray-100);
    font-size: 0.9rem;
}

.custom-date-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.custom-date-inputs input {
    padding: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--gray-100);
    font-size: 0.8rem;
}

.custom-date-inputs span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Chart Stats */
.chart-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-top: 1rem;
}

.chart-stats .stat-item {
    text-align: center;
}

.chart-stats .stat-label {
    display: block;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.chart-stats .stat-value {
    display: block;
    color: var(--gray-100);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Bulk Key Generation */
.bulk-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bulk-form .form-group {
    margin-bottom: 1rem;
}

.bulk-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
    font-weight: 500;
}

.bulk-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-100);
    font-size: 0.9rem;
}

.bulk-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.bulk-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.bulk-downloads {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bulk-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* User Management Table */
.user-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.user-controls input {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--gray-100);
    min-width: 200px;
}

.users-table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.users-table th,
.users-table td {
    padding: 0.75rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.users-table th {
    background: var(--bg-tertiary);
    color: var(--gray-300);
    font-weight: 600;
    position: sticky;
    top: 0;
}

.users-table td {
    color: var(--gray-100);
}

.users-table tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.copyable-cell {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copyable-cell:hover {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
}

.copy-btn {
    display: none;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-primary);
    border: none;
    border-radius: 4px;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.copyable-cell:hover .copy-btn {
    display: block;
}

.copy-btn:hover {
    background: #2563eb;
    transform: translateY(-50%) scale(1.05);
}

.copy-success {
    background: #10b981 !important;
    animation: copySuccess 0.3s ease;
}

@keyframes copySuccess {
    0% { background: var(--accent-primary); }
    50% { background: #10b981; }
    100% { background: #10b981; }
}

.no-data {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
}

.users-table .status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.users-table .status-badge.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.users-table .status-badge.reset {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.users-table .status-badge.banned {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.table-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.table-pagination button {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--gray-100);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.table-pagination button:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.table-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mass Actions */
.mass-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mass-action-group {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mass-action-group h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-100);
}

.mass-action-group p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Admin Input Styling */
.admin-input {
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--gray-100);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.admin-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    background: var(--bg-card);
}

.admin-input::placeholder {
    color: var(--gray-500);
}

/* Enhanced form row styling */
.mass-actions-grid .form-row {
    gap: 0.75rem;
    align-items: center;
}

.mass-actions-grid .form-row input {
    flex: 1;
    min-width: 150px;
}

/* Action Buttons Override for Admin */
.admin-dashboard .action-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.admin-dashboard .action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.admin-dashboard .action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-100);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-dashboard .action-btn.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-dashboard .action-btn.warning {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.admin-dashboard .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admin-dashboard .action-btn.primary:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.admin-dashboard .action-btn.danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

.admin-dashboard .action-btn.warning:hover {
    background: rgba(251, 191, 36, 0.2);
}

.admin-dashboard .action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsiveness for Admin Dashboard */
@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bulk-actions,
    .bulk-downloads {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mass-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .user-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .users-table {
        font-size: 0.75rem;
    }
    
    .users-table th,
    .users-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .table-pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .analytics-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .custom-date-inputs {
        justify-content: center;
    }
    
    .chart-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chart-stats .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .chart-stats .stat-label,
    .chart-stats .stat-value {
        display: inline;
    }

    #execution-chart {
        height: 300px !important;
        max-height: 300px !important;
    }
}

/* Page Section Styling for Multiple Pages */
.page-section {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.page-section .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* CSS Particle Fallback Animations */
@keyframes float-0 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) translateX(-15px) rotate(270deg);
        opacity: 0.4;
    }
}

@keyframes float-1 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.2;
    }
    33% { 
        transform: translateY(-30px) translateX(-10px) rotate(120deg);
        opacity: 0.7;
    }
    66% { 
        transform: translateY(-15px) translateX(15px) rotate(240deg);
        opacity: 0.5;
    }
}

@keyframes float-2 {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    20% { 
        transform: translateY(-25px) translateX(5px) rotate(72deg);
        opacity: 0.8;
    }
    40% { 
        transform: translateY(-35px) translateX(-8px) rotate(144deg);
        opacity: 0.3;
    }
    60% { 
        transform: translateY(-20px) translateX(12px) rotate(216deg);
        opacity: 0.9;
    }
    80% { 
        transform: translateY(-10px) translateX(-3px) rotate(288deg);
        opacity: 0.6;
    }
}

/* Enhanced Dashboard Background Effects */
.dashboard-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#dashboard-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.dashboard-section {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.90) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Enhanced Background Orbs */
.orb-4 {
    top: 70%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    animation: orbFloat 20s ease-in-out infinite, orbPulse 8s ease-in-out infinite alternate;
}

.orb-5 {
    top: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    animation: orbFloat 25s ease-in-out infinite reverse, orbPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes orbPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

/* Enhanced Admin Dashboard Styling */
.admin-dashboard {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.admin-dashboard .admin-card {
    width: 100%;
    max-width: 1200px; /* Smaller, more manageable size */
    margin: 0 auto 2rem auto; /* Center the cards */
    background: linear-gradient(145deg, 
        rgba(30, 41, 59, 0.8) 0%,
        rgba(51, 65, 85, 0.6) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 1.5rem; /* Slightly smaller padding */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.admin-dashboard .admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(14, 165, 233, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admin-dashboard .admin-card:hover::before {
    opacity: 1;
}

.admin-dashboard .admin-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Enhanced User Table Styling */
.users-table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

/* Make the user management card wider but not full width */
.admin-card:has(.users-table-container) {
    max-width: 1400px !important; /* Wider than other cards but not full width */
    width: 100% !important;
}

.users-table {
    width: 100%;
    min-width: 1200px; /* Reduced from 1800px for better fit */
    border-collapse: collapse;
    background: transparent;
    table-layout: fixed; /* Fixed layout for better column control */
}

/* User Key Column - Show full license keys */
.users-table th:first-child,
.users-table td:first-child {
    width: 30%; /* More space for user keys */
    min-width: 200px;
    word-break: break-all; /* Allow breaking long keys */
}

/* Discord ID Column */
.users-table th:nth-child(2),
.users-table td:nth-child(2) {
    width: 12%; /* Thinner Discord ID column */
    min-width: 100px;
}

/* Status Column */
.users-table th:nth-child(3),
.users-table td:nth-child(3) {
    width: 8%; /* Status column */
    min-width: 70px;
}

/* Note Column */
.users-table th:nth-child(4),
.users-table td:nth-child(4) {
    width: 10%; /* Thinner Note column */
    min-width: 80px;
}

/* Executions Column */
.users-table th:nth-child(5),
.users-table td:nth-child(5) {
    width: 8%; /* Executions column */
    min-width: 70px;
}

/* HWID Resets Column */
.users-table th:nth-child(6),
.users-table td:nth-child(6) {
    width: 8%; /* HWID Resets column */
    min-width: 70px;
}

/* Days Column */
.users-table th:nth-child(7),
.users-table td:nth-child(7) {
    width: 6%; /* Days column */
    min-width: 50px;
}

/* Actions Column - Now 8th column after removing Ban Reason */
.users-table th:nth-child(8),
.users-table td:nth-child(8) {
    width: 18%; /* Much more space for Actions */
    min-width: 150px;
}

.users-table th,
.users-table td {
    padding: 0.75rem; /* Slightly smaller padding */
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    overflow: hidden; /* Hide overflow to keep table tidy */
    text-overflow: ellipsis; /* Add ellipsis for very long content */
}

/* Special handling for user key column */
.users-table td:first-child {
    white-space: normal; /* Allow wrapping for license keys */
    word-break: break-all; /* Break long keys to fit */
    line-height: 1.3;
}

/* Keep other columns from wrapping */
.users-table td:not(:first-child) {
    white-space: nowrap;
}

.users-table .copyable-cell code {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.75rem;
    color: #60a5fa;
    display: inline-block;
    max-width: 100%; /* Fit within column */
    word-break: break-all; /* Break long keys */
    white-space: normal; /* Allow wrapping within code blocks */
}

/* Enhanced Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(145deg, 
        rgba(30, 41, 59, 0.9) 0%,
        rgba(51, 65, 85, 0.7) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.8) 0%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(14, 165, 233, 0.8) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Enhanced Chart Container */
#execution-chart {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1rem;
    height: 400px !important;
    max-height: 400px !important;
}

/* Enhanced Form Elements */
.admin-dashboard input,
.admin-dashboard select {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--gray-100);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.admin-dashboard input:focus,
.admin-dashboard select:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

/* Enhanced Action Buttons */
.admin-dashboard .action-btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.admin-dashboard .action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.admin-dashboard .action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.admin-dashboard .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Pulsing Animation for Loading States */
@keyframes adminPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.admin-dashboard .loading {
    animation: adminPulse 2s ease-in-out infinite;
}

/* Enhanced Page Background Effects for All Pages */
.page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.page-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.page-section {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.90) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    overflow: hidden;
}

.page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.contact-section,
.features {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.90) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    overflow: hidden;
}

.contact-section::before,
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above background */
.page-section .container,
.contact-section .container,
.features .container {
    position: relative;
    z-index: 10;
}

/* Container for admin dashboard */
.dashboard-section .container {
    max-width: 1400px !important; /* Reasonable width for admin dashboard */
    position: relative;
    z-index: 10;
}

/* Override global container width for dashboard */
.dashboard-section .container,
.admin-dashboard {
    max-width: 1400px !important;
    width: 100%;
}

/* Custom Checkout Modal Styles */
.custom-checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.checkout-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.custom-checkout-modal.active .checkout-container {
    transform: translate(-50%, -50%) scale(1);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
}

.checkout-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.checkout-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.checkout-content {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.checkout-content::-webkit-scrollbar {
    width: 6px;
}

.checkout-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.checkout-content::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

/* Product Summary */
.product-summary {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-icon {
    font-size: 3rem;
    line-height: 1;
    padding: 1rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    color: var(--gray-100);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.product-description {
    color: var(--gray-400);
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-price {
    text-align: right;
}

.product-price .price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Checkout Divider */
.checkout-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    margin: 2rem 0;
}

/* Form Sections */
.customer-section,
.payment-section {
    margin-bottom: 2rem;
}

.customer-section h4,
.payment-section h4 {
    color: var(--gray-100);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-100);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--bg-card);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.payment-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.payment-info strong {
    color: var(--gray-100);
    display: block;
    margin-bottom: 0.25rem;
}

.payment-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

/* Order Summary */
.order-summary {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--gray-300);
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-100);
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.checkout-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.checkout-btn.primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkout-btn.secondary {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-btn.secondary:hover {
    background: var(--bg-secondary);
    color: var(--gray-300);
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Security Badge */
.security-badge {
    text-align: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
}

.security-icons {
    color: #10b981;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-icons span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .checkout-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .checkout-header,
    .checkout-content {
        padding: 1.5rem;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-icons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkout-actions {
        position: sticky;
        bottom: 0;
        background: var(--bg-glass);
        padding: 1rem 0 0 0;
        margin: 1rem -1.5rem -1.5rem -1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Custom Payment Interface Styles */
.custom-payment-content {
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
}

.custom-payment-content::-webkit-scrollbar {
    width: 6px;
}

.custom-payment-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.custom-payment-content::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

/* Payment Order Summary */
.payment-order-summary {
    padding: 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-header h3 {
    color: var(--gray-100);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-icon {
    font-size: 2rem;
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.item-info h4 {
    color: var(--gray-100);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.item-info p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--gray-300);
}

.total-row.final-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-100);
}

/* Payment Customer Info */
.payment-customer-info {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-customer-info h3 {
    color: var(--gray-100);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.customer-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.customer-field label {
    color: var(--gray-400);
    font-weight: 500;
}

.customer-field span {
    color: var(--gray-100);
    font-weight: 600;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods-section h3 {
    color: var(--gray-100);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods {
    display: grid;
    gap: 1rem;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.payment-method-card.active {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    color: var(--gray-100);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.method-info p {
    color: var(--gray-400);
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
}

.method-logos {
    display: flex;
    gap: 0.5rem;
}

.card-logo {
    font-size: 1rem;
}

.method-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.payment-method-card.active .method-check {
    background: var(--accent-primary);
    color: white;
}

/* Payment Actions */
.payment-actions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
}

.payment-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.payment-btn.primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.payment-btn.secondary {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-btn.secondary:hover {
    background: var(--bg-secondary);
    color: var(--gray-300);
}

/* Payment Security */
.payment-security {
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.security-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-icon {
    font-size: 1.1rem;
}

.security-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Embedded Payment Frame Styles */
.embedded-payment-content {
    padding: 0;
    background: var(--bg-glass);
}

.payment-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.customer-name {
    color: var(--gray-100);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-info {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.security-badges {
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.payment-frame-container {
    position: relative;
    background: white;
    min-height: 600px;
    overflow: hidden;
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.loading-payment {
    text-align: center;
    color: var(--gray-600);
}

.loading-payment .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

.loading-payment p {
    margin: 0;
    font-weight: 500;
}

#payment-frame {
    width: 100%;
    height: 600px;
    border: none;
    background: white;
    display: block;
}

.payment-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.1rem;
}

.powered-by {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

/* Mobile responsive for embedded payment */
@media (max-width: 768px) {
    .payment-summary-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    #payment-frame {
        height: 500px;
    }
    
    .payment-footer {
        padding: 1rem;
    }
}

/* Embedded Checkout Styles (keeping for fallback) */
.embedded-checkout-content {
    padding: 0;
}

.checkout-info {
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-item {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.summary-item strong {
    color: var(--gray-100);
    display: block;
    margin-bottom: 0.25rem;
}

.checkout-iframe-container {
    position: relative;
    background: white;
    min-height: 600px;
}

#shopify-checkout-iframe {
    width: 100%;
    height: 600px;
    border: none;
    background: white;
}

.checkout-footer {
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Manual Instructions Styles */
.manual-instructions {
    padding: 2rem;
}

.instruction-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instruction-card h3 {
    color: var(--gray-100);
    margin: 0 0 1rem 0;
    text-align: center;
}

.instruction-card p {
    color: var(--gray-400);
    text-align: center;
    margin-bottom: 2rem;
}

.steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.step strong {
    background: var(--gradient-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.customer-details {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.customer-details h4 {
    color: var(--gray-100);
    margin: 0 0 1rem 0;
}

.copyable-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-300);
}

.copyable-detail:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.copyable-detail strong {
    color: var(--gray-100);
}

.manual-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive adjustments for payment interface */
@media (max-width: 768px) {
    .checkout-container {
        max-width: 95vw !important;
        max-height: 95vh !important;
    }
    
    .custom-payment-content {
        max-height: 85vh;
    }
    
    .payment-order-summary,
    .payment-customer-info,
    .payment-methods-section,
    .payment-actions {
        padding: 1.5rem;
    }
    
    .customer-display {
        grid-template-columns: 1fr;
    }
    
    .customer-field {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .order-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .item-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .payment-method-card {
        padding: 1rem;
    }
    
    .method-info h4 {
        font-size: 0.95rem;
    }
    
    .method-info p {
        font-size: 0.8rem;
    }
    
    .security-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .security-item {
        justify-content: center;
    }
    
    .payment-btn.primary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .payment-actions {
        position: sticky;
        bottom: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        margin: 1rem -1.5rem -1.5rem -1.5rem;
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Embedded checkout fallback adjustments */
    .customer-summary {
        grid-template-columns: 1fr;
    }
    
    .manual-actions {
        flex-direction: column;
    }
    
    .instruction-card {
        padding: 1.5rem;
    }
    
    #shopify-checkout-iframe {
        height: 500px;
    }
}

/* Custom Payment Processor Styles */
.custom-payment-processor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-summary {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.summary-header h3 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin: 0;
}

.order-id {
    color: var(--gray-400);
    font-size: 0.875rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 1rem;
}

.item-details {
    flex: 1;
}

.item-name {
    color: var(--gray-100);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.item-description {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.item-price {
    color: var(--blue-400);
    font-weight: 700;
    font-size: 1.25rem;
}

.order-total {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 1rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.total-line.final {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-100);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.payment-customer {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.payment-customer h3 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-row {
    color: var(--gray-300);
    padding: 0.5rem 0;
}

.payment-methods {
    grid-column: 1 / -1;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.payment-methods h3 {
    color: var(--gray-100);
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

.method-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.method-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.method-tab:hover {
    color: var(--gray-300);
    background: rgba(148, 163, 184, 0.05);
}

.method-tab.active {
    color: var(--blue-400);
    border-bottom-color: var(--blue-400);
    background: rgba(59, 130, 246, 0.05);
}

.payment-form {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.payment-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group.full {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--gray-100);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.card-icons {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.25rem;
}

.card-icon {
    font-size: 1.25rem;
}

.form-group {
    position: relative;
}

.paypal-form,
.crypto-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.paypal-info,
.crypto-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.paypal-icon,
.crypto-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.paypal-text h4,
.crypto-text h4 {
    color: var(--gray-100);
    margin: 0;
    font-size: 1.25rem;
}

.paypal-text p,
.crypto-text p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.875rem;
}

.payment-action {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pay-button {
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.pay-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.pay-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner.small {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.payment-security {
    text-align: center;
}

.security-items {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.security-items span {
    color: var(--gray-400);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.security-note {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin: 0;
}

/* Payment Success Styles */
.payment-success {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.payment-success h2 {
    color: var(--gray-100);
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

.payment-success p {
    color: var(--gray-400);
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.license-details {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 2rem;
}

.license-details h3 {
    color: var(--gray-100);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.license-key-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px dashed rgba(59, 130, 246, 0.3);
}

.license-key {
    flex: 1;
    background: none;
    border: none;
    color: var(--blue-400);
    font-family: 'Monaco', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.copy-btn {
    background: var(--blue-600);
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

.license-info {
    display: grid;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--gray-300);
}

.status-active {
    color: var(--green-400);
    font-weight: 600;
}

.next-steps {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    color: var(--gray-100);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.next-steps ol {
    color: var(--gray-300);
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.discord-btn,
.github-btn,
.continue-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-btn {
    background: #5865f2;
    color: white;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.github-btn {
    background: #24292e;
    color: white;
}

.github-btn:hover {
    background: #1a1e22;
    transform: translateY(-2px);
}

.continue-btn {
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
    color: white;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Payment Notification Styles */
.payment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 400px;
    min-width: 300px;
}

.payment-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.payment-notification.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.payment-notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.payment-notification.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notification-icon {
    font-size: 1.25rem;
}

.notification-content {
    flex: 1;
}

.notification-message {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-payment-processor {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-methods {
        grid-column: 1;
    }
    
    .method-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .method-tab {
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        border-radius: 0;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .security-items {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .license-key-display {
        flex-direction: column;
        text-align: center;
    }
    
    .license-key {
        font-size: 1rem;
        text-align: center;
    }
    
    .payment-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .payment-notification.show {
        transform: translateY(0);
    }
}

/* Loadstring Display */
.loadstring-display {
    margin-bottom: 1rem;
    flex: 1;
}

.loadstring-display label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

.loadstring-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.loadstring-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loadstring-container code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #00d4ff;
    background: none;
    border: none;
    word-break: break-all;
    line-height: 1.4;
}

.loadstring-help {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-style: italic;
}

/* Changelog Styles */
.changelog-viewer {
    overflow-y: auto;
    padding: 0.25rem;
    flex: 1;
}

/* Customer dashboard changelog should expand fully */
.customer-dashboard .changelog-viewer {
    max-height: none;
    height: auto;
}

/* Admin dashboard keeps the height restriction */
.admin-dashboard .changelog-viewer {
    max-height: 350px;
}

.changelog-viewer::-webkit-scrollbar {
    width: 6px;
}

.changelog-viewer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.changelog-viewer::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 3px;
}

.changelog-entry {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.changelog-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #0099cc);
}

.changelog-entry:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.version-badge {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.changelog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.changelog-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.changelog-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Discord-style formatting */
.changelog-item {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.changelog-item::before {
    content: '•';
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Sub-items (indented) */
.changelog-item.sub-item {
    margin-left: 1.5rem;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.changelog-item.sub-item::before {
    content: '•';
    color: rgba(0, 212, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

/* Semi-titles (# prefix) */
.changelog-item.semi-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4ff;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.changelog-item.semi-title::before {
    content: '';
}

/* Regular text lines (no bullet) */
.changelog-item.text-line {
    padding-left: 0;
}

.changelog-item.text-line::before {
    content: '';
}

.changelog-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.changelog-meta small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Changelog Admin Actions */
.changelog-admin-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-end;
}

.changelog-admin-actions .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.changelog-admin-actions .action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.changelog-admin-actions .action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.changelog-admin-actions .action-btn.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.changelog-admin-actions .action-btn.danger:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* No Changelog State */
.no-changelog {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-changelog-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-changelog h4 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.no-changelog p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Changelog Loading */
.changelog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.changelog-error {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.error-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

/* Admin Changelog Form */
.changelog-form {
    margin-bottom: 2rem;
}

.changelog-form .form-group {
    margin-bottom: 1rem;
}

.changelog-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.changelog-form input,
.changelog-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.changelog-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

.changelog-form input:focus,
.changelog-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.changelog-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.current-changelog {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.current-changelog h4 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.changelog-display {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-changelog {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 2rem;
}

/* Changelog Preview Modal */
.changelog-preview-modal {
    max-width: 600px;
    width: 90%;
}

.changelog-entry.preview {
    margin-bottom: 2rem;
}

.preview-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Changelog History Modal */
.changelog-history-modal {
    max-width: 900px;
    max-height: 80vh;
}

.changelog-history-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.history-item.current {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.1);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.history-info {
    flex: 1;
}

.history-info h4 {
    color: white;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.history-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.current-badge {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.history-content {
    margin-top: 1rem;
}

.changelog-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.changelog-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.no-history {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-history-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-history h4 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.no-history p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.action-btn.small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Enhanced Page Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Button Animations */
.action-btn,
.cta-button,
.license-btn,
.pricing-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn::before,
.cta-button::before,
.license-btn::before,
.pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    pointer-events: none;
}

.action-btn:hover::before,
.cta-button:hover::before,
.license-btn:hover::before,
.pricing-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Card Hover Effects */
.feature-card,
.license-card,
.pricing-card,
.dashboard-card,
.admin-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.license-card:hover,
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 212, 255, 0.2);
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-icon,
.license-icon,
.stat-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-icon:nth-child(odd) {
    animation-delay: -1s;
}

.license-icon:nth-child(even) {
    animation-delay: -2s;
}

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #00d4ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Enhanced Particle Effects */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Loading Animations */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .changelog-actions,
    .preview-actions {
        flex-direction: column;
    }
    
    .loadstring-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .loadstring-container code {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    .changelog-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .changelog-admin-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .changelog-admin-actions .action-btn {
        width: 100%;
        text-align: center;
    }
    
    .changelog-history-modal {
        max-width: 95vw;
        margin: 1rem;
    }
    
    .history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .history-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .changelog-preview {
        font-size: 0.8rem;
        max-height: 120px;
    }
    
    .action-btn.small {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .feature-card:hover,
    .license-card:hover,
    .pricing-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Enhanced Focus States */
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #1a1a1a;
        --bg-tertiary: #2a2a2a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}

/* Hero Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    filter: blur(1px);
    animation: heroOrbFloat 8s ease-in-out infinite;
}

.hero-orb.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.hero-orb.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes heroOrbFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(15px) translateX(5px) scale(1.05);
        opacity: 0.9;
    }
}

/* Page Orbs */
.page-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.page-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    filter: blur(2px);
    animation: pageOrbFloat 10s ease-in-out infinite;
}

.page-orb.orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.page-orb.orb-2 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 10%;
    animation-delay: -3s;
}

.page-orb.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation-delay: -6s;
}

.page-orb.orb-4 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    right: 20%;
    animation-delay: -9s;
}

@keyframes pageOrbFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-15px) translateX(8px) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateY(10px) translateX(-12px) scale(0.9);
        opacity: 0.5;
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: rotate(45deg) translateY(5px);
        opacity: 1;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-orb.orb-1 {
        width: 120px;
        height: 120px;
    }
    
    .hero-orb.orb-2 {
        width: 100px;
        height: 100px;
    }
    
    .hero-orb.orb-3 {
        width: 80px;
        height: 80px;
    }
    
    .page-orb.orb-1 {
        width: 80px;
        height: 80px;
    }
    
    .page-orb.orb-2 {
        width: 60px;
        height: 60px;
    }
    
    .page-orb.orb-3 {
        width: 70px;
        height: 70px;
    }
    
    .page-orb.orb-4 {
        width: 50px;
        height: 50px;
    }
}

/* Configs Button Styles */
.action-btn.configs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: white;
}

.action-btn.configs:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Configs Forum Styles */
.configs-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    background: var(--bg-primary);
}

.configs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#configs-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.forum-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.forum-title h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.forum-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.forum-categories {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border-color: rgba(0, 212, 255, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

.post-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.forum-search {
    position: relative;
    max-width: 400px;
}

.forum-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.forum-search input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.forum-posts {
    margin-bottom: 2rem;
}

.posts-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loading-posts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.post-type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-type-badge.share {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: white;
}

.post-type-badge.request {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.post-game {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.post-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.post-author-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.post-content {
    margin-bottom: 1rem;
}

.post-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-attachments {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.attachment-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.forum-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Modal Styles for Create Post */
.create-post-modal {
    max-width: 600px;
    width: 90%;
}

.post-form .form-group {
    margin-bottom: 1.5rem;
}

.post-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.post-form input,
.post-form select,
.post-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.post-form input:focus,
.post-form select:focus,
.post-form textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.post-form small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Post Detail Modal */
.post-detail-modal {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.post-header-info {
    flex: 1;
}

.post-detail-modal .post-meta {
    margin-top: 0.5rem;
}

.replies-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.replies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.replies-header h4 {
    color: white;
    font-size: 1.2rem;
}

.action-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.reply-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reply-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.replies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reply-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reply-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reply-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.reply-author-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.reply-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.reply-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forum-title h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .category-tab {
        justify-content: center;
    }
    
    .post-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .post-meta {
        justify-content: center;
    }
    
    .forum-pagination {
        flex-wrap: wrap;
    }
    
    .create-post-modal,
    .post-detail-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .form-actions,
    .reply-actions {
        flex-direction: column;
    }
    
    .replies-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}
