/**
 * BLOODY XITERS - Main Stylesheet
 * GAIYA INTERNAL Style Design
 */

/* ===== CSS Variables ===== */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0d1b2a;
    --bg-secondary: #141820;
    --bg-tertiary: #1a1f2e;
    --bg-card: #1e2330;
    
    /* Accent Colors */
    --accent-cyan: #3BC1A8;
    --accent-purple: #0C7779;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Orbitron', monospace;
    
    /* Shadows & Glows */
    --glow-cyan: 0 0 20px rgba(59, 193, 168, 0.3);
    --glow-purple: 0 0 20px rgba(12, 119, 121, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed navbar */
    background: #0d1b2a;
    background-attachment: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background: #0d1b2a;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding-top: 0;
    margin: 0;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-purple);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    background: #0d1b2a;
    overflow: visible;
}

/* Override container max-width for dashboard pages - using :has() selector */
.container:has(.dashboard-wrapper),
.container:has(.admin-wrapper),
body:has(.dashboard-wrapper) .container,
body:has(.admin-wrapper) .container {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Additional override using more specific selectors */
.main-content:has(.dashboard-wrapper),
.main-content:has(.admin-wrapper) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Direct override for dashboard pages */
.dashboard-wrapper,
.admin-wrapper {
    max-width: 100% !important;
    width: 100% !important;
}

/* Fallback for browsers without :has() support - use JavaScript alternative */
@media (min-width: 769px) {
    .dashboard-wrapper,
    .admin-wrapper {
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

/* ===== Navigation (Bunny.net Style) ===== */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 20px var(--spacing-md) 0 var(--spacing-md);
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    height: auto;
}

.navbar-wrapper.hidden {
    transform: translateY(-120%);
}

.navbar {
    background: rgba(20, 30, 50, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    border-radius: 16px;
    padding: 0.625rem 1.5rem;
    max-width: 1400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(0, 245, 255, 0.08),
                0 0 20px rgba(16, 185, 129, 0.06);
    pointer-events: auto;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(20, 30, 50, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 
                0 0 50px rgba(0, 245, 255, 0.1),
                0 0 25px rgba(16, 185, 129, 0.08);
}

.navbar.hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

/* Cursor Tracking Overlay */
.navbar-cursor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 245, 255, 0.15) 0%,
        rgba(16, 185, 129, 0.1) 30%,
        rgba(0, 245, 255, 0.05) 50%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.1s ease-out;
    z-index: 0;
    mix-blend-mode: screen;
}

.navbar-cursor-overlay.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    color: var(--text-primary);
    letter-spacing: -0.5px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    overflow: visible;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-radius: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

/* Login Button Style (Bunny.net) */
.nav-link:not(.btn-primary) {
    color: var(--text-primary);
}

.nav-link.btn-login {
    background: transparent;
    color: var(--text-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.2s ease;
}

.nav-link.btn-login::after {
    display: none;
}

.nav-link.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Get Started Button Style (Bunny.net) */
.nav-link.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: var(--text-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    margin-left: 0.75rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.nav-link.btn-primary::after {
    display: none;
}

.nav-link.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5),
                0 0 30px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(16, 185, 129, 0.9));
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ===== Main Content ===== */
.main-content {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 0;
    background: #0d1b2a;
    overflow-x: hidden;
    overflow-y: visible;
}

/* ===== Promotional Banners ===== */
.promo-banner {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 245, 255, 0.1), transparent);
    pointer-events: none;
}

.promo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.promo-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.promo-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.promo-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: calc(var(--spacing-xl) * 1.5) 0 calc(var(--spacing-xl) * 1.5) 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    margin-top: 0;
    padding-top: 70px;
    margin-bottom: calc(var(--spacing-xl) * 2.5);
    min-height: 85vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #0d1b2a;
    width: 100%;
    border: none;
    box-shadow: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) 100px var(--spacing-md);
    min-height: calc(85vh - 200px);
}

.hero-logo {
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-text {
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.8),
                 0 0 60px rgba(0, 245, 255, 0.6),
                 0 0 90px rgba(0, 245, 255, 0.4),
                 0 0 5px rgba(255, 0, 0, 0.3),
                 0 0 10px rgba(0, 200, 255, 0.3);
    letter-spacing: 0.1em;
    display: inline-block;
    animation: glow-pulse 2s ease-in-out infinite alternate;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5));
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 30px rgba(0, 245, 255, 0.8),
                     0 0 60px rgba(0, 245, 255, 0.6),
                     0 0 90px rgba(0, 245, 255, 0.4),
                     0 0 5px rgba(255, 0, 0, 0.3),
                     0 0 10px rgba(0, 200, 255, 0.3);
    }
    to {
        text-shadow: 0 0 40px rgba(0, 245, 255, 1),
                     0 0 80px rgba(0, 245, 255, 0.8),
                     0 0 120px rgba(0, 245, 255, 0.6),
                     0 0 8px rgba(255, 0, 0, 0.4),
                     0 0 15px rgba(0, 200, 255, 0.4);
    }
}

.hero-welcome {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--spacing-md) * 0.75);
    text-align: center;
    font-family: var(--font-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Trust Indicator Bar */
.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
    padding: 0.75rem 1.5rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8),
                 0 0 20px rgba(0, 245, 255, 0.6);
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.8));
}

.trust-text {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6),
                 0 0 20px rgba(0, 245, 255, 0.4);
}

.hero-title {
    font-size: 8.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.hero-title-bloody {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8),
                 0 0 40px rgba(16, 185, 129, 0.6),
                 0 0 60px rgba(16, 185, 129, 0.4);
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 0.1em;
    display: block;
}

.hero-title-xiters {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.6),
                 0 0 60px rgba(0, 245, 255, 0.4);
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 0.1em;
    display: block;
}

.hero-subtitle {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: var(--spacing-lg);
}

.btn-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 4px rgba(0, 245, 255, 0.5);
}

.btn-browse-products {
    background: linear-gradient(135deg, var(--accent-cyan), #10b981);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.6),
                0 0 40px rgba(0, 245, 255, 0.4),
                0 0 60px rgba(0, 245, 255, 0.3);
    transition: var(--transition);
    border: none;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-browse-products:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8),
                0 0 60px rgba(0, 245, 255, 0.6),
                0 0 90px rgba(0, 245, 255, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1affff, #14d99a);
}

.btn-arrow {
    font-size: 1.2rem;
    font-weight: 900;
}

.btn-free-products {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-free-products:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-free-products .btn-icon {
    margin-right: 0;
    font-size: 1.2rem;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-xl) * 1.5);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-cyan);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 245, 255, 0.9);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.8),
                0 0 20px rgba(0, 245, 255, 0.6);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0.6;
    }
}

/* ===== Products Section (Aeroxdev Style) ===== */
.products-section {
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex: 1;
    background: #1a1a1a;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-heading);
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.product-price .price-amount {
    color: #ffa500;
    font-weight: 700;
}

.product-btn {
    background: #ffffff;
    color: #000000;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    border: 2px solid #000000;
    cursor: pointer;
    display: inline-block;
}

.product-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-btn.coming-soon {
    background: #2a2a2a;
    color: #ffffff;
    border-color: #3a3a3a;
    cursor: not-allowed;
}

.product-btn.coming-soon:hover {
    background: #2a2a2a;
    transform: none;
    box-shadow: none;
}

.coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(42, 42, 42, 0.95);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== Packages Section ===== */
.packages-section {
    padding: calc(var(--spacing-xl) + 100px) 0 var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    min-height: 60vh;
    overflow: visible;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
    transform: translateY(-4px);
}

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

.package-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.package-info {
    flex: 1;
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-family: var(--font-heading);
}

.package-version {
    font-size: 0.95rem;
    color: var(--accent-cyan);
    margin: 0;
    font-weight: 500;
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 1rem;
}

.package-subscriptions {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(0, 245, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.subscriptions-title {
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.subscriptions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subscriptions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.checkmark {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.subscription-key {
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.package-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.package-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.package-btn-download {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
}

.package-btn-download:hover {
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.4);
    transform: translateY(-2px);
}

.package-btn-tutorial {
    background: transparent;
    color: var(--accent-purple);
    border: 2px solid var(--accent-purple);
}

.package-btn-tutorial:hover {
    background: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.package-btn-contact {
    background: var(--accent-green);
    color: var(--text-primary);
}

.package-btn-contact:hover {
    background: #14d99a;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

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

.package-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.package-empty h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.package-empty p {
    color: var(--text-secondary);
}

/* ===== Tool Cards (GAIYA Style) ===== */
.tools-section {
    margin-bottom: var(--spacing-xl);
}

/* ===== Products Page ===== */
.products-page {
    padding: calc(var(--spacing-xl) + 100px) 0 var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    min-height: 60vh;
}

.products-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.products-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    perspective: 1000px;
}

.product-category-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-category-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    /* Transform is handled by JavaScript for tilt effect */
}

.product-category-card:hover::before {
    opacity: 1;
}

.category-image-wrapper {
    width: 100%;
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    margin: 0;
    padding: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.category-price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 18px;
    z-index: 10;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ffffff;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.product-category-card:hover .category-image {
    transform: scale(1.05);
}

.category-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex: 1;
    background: rgba(20, 24, 32, 0.95);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 var(--spacing-xs) 0;
    font-family: var(--font-heading);
    line-height: 1.3;
    text-transform: uppercase;
}

.category-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 400;
    line-height: 1.4;
}

.category-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: var(--spacing-xs);
}

.category-rating .fa-star {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.category-rating .fa-star.star-filled {
    color: #ffa500;
}

.category-features-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-xs) * 0.75);
    margin-bottom: var(--spacing-sm);
    padding: 0;
    border: none;
}

.category-features-list .feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0;
    box-shadow: none !important;
    transition: none;
}

.category-features-list .feature-item::before {
    display: none !important;
}

.category-features-list .feature-item:hover {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

.category-features-list .feature-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    display: block;
    margin: 0;
}

.category-features-list .feature-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    line-height: 1.4;
    margin: 0;
}

.category-actions {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.btn-view-packages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    cursor: pointer;
}

.btn-view-packages:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Features Page ===== */
.features-page {
    padding: calc(var(--spacing-xl) + 100px) 0 var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    min-height: 60vh;
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.feature-section {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl) 0;
}

.feature-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.feature-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.feature-section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.15),
                0 0 40px rgba(0, 245, 255, 0.1);
    transform: translateY(-4px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.feature-item-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.feature-item-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6));
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0, 245, 255, 0.8));
    text-shadow: 0 0 15px rgba(0, 245, 255, 1);
}

/* Responsive Design for Features Page */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .features-page {
        padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-lg) 0;
    }
    
    .features-header .section-title {
        font-size: 2rem;
    }
    
    .features-header .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-section-title {
        font-size: 2rem;
    }
    
    .feature-section-description {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        padding: var(--spacing-md);
    }
    
    .feature-item-icon {
        font-size: 1.75rem;
        margin-bottom: calc(var(--spacing-sm) * 0.75);
    }
    
    .feature-item-title {
        font-size: 1.1rem;
    }
    
    .feature-item-description {
        font-size: 0.9rem;
    }
}

/* ===== About Page ===== */
.about-page {
    padding: calc(var(--spacing-xl) + 100px) 0 calc(var(--spacing-xl) * 2) 0;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    min-height: 60vh;
    overflow: visible;
}

.about-main-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    align-items: start;
    overflow: visible;
}

/* Left Column: Profile Section */
.profile-column {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.profile-picture-wrapper {
    position: relative;
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
    overflow: hidden;
}

.profile-picture i {
    font-size: 2rem;
    color: #ffffff;
}

.profile-arrow-btn {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 245, 255, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.4);
    color: rgba(0, 245, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0.75rem;
}

.profile-arrow-btn:hover {
    background: rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.profile-name-section {
    width: 100%;
    text-align: center;
}

.developer-name-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 calc(var(--spacing-xs) * 0.5) 0;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

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

.developer-languages {
    font-size: 0.8rem;
    color: #4ade80;
    margin: 0 0 calc(var(--spacing-xs) * 0.5) 0;
    font-weight: 500;
}

.developer-subtitle-main {
    font-size: 0.75rem;
    color: #4ade80;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-weight: 500;
}

.devil-icon {
    font-size: 1rem;
}

.profile-info-section {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #4ade80;
}

.profile-info-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-xs) * 0.75);
}

.profile-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: calc(var(--spacing-xs) * 0.5) 0;
}

.profile-info-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.profile-info-label {
    font-size: 0.85rem;
    color: #4ade80;
    font-weight: 500;
}

.profile-info-value {
    color: #ffffff;
    font-weight: 500;
    margin-left: auto;
    font-size: 0.85rem;
}

/* Right Column: Skills Grid */
.skills-column {
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 12px;
    align-items: stretch;
}

.skill-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: visible;
}

.skill-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 10px;
    padding: 12px 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: visible;
    gap: 6px;
    z-index: 1;
}

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

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

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

.skill-card-icon {
    font-size: 1.2rem;
    margin-bottom: 6px;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.skill-card:hover .skill-card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
}

.skill-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.skill-card-subtitle {
    font-size: 0.7rem;
    color: #00f5ff;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.skill-card:hover .skill-card-subtitle {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-1px);
}

.skill-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: auto;
    padding-top: 5px;
    align-content: start;
}

.skill-badge {
    background: rgba(0, 245, 255, 0.15) !important;
    border: 1px solid rgba(0, 245, 255, 0.4) !important;
    border-radius: 12px !important;
    padding: 3px 6px !important;
    font-size: 0.7rem !important;
    color: #00f5ff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    min-height: 20px !important;
    height: 20px !important;
    box-sizing: border-box !important;
    vertical-align: middle;
    margin: 0 !important;
    font-weight: 500;
}

.skill-badge:hover {
    background: rgba(0, 245, 255, 0.35) !important;
    border-color: rgba(0, 245, 255, 0.8) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 245, 255, 0.4);
}

.skill-badge .skill-icon {
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.skill-badge .skill-name {
    color: inherit;
    font-weight: 500;
}

.social-links-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xxl);
}

.social-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    border: 1px solid rgba(0, 245, 255, 0.4);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), rgba(0, 4, 8, 0.4));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
    margin-top: auto;
    min-width: 0;
}

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

.social-link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.social-link-btn:hover::before {
    opacity: 1;
}

.social-link-btn:hover::after {
    left: 100%;
}

.social-link-btn:hover {
    transform: translateY(-12px) scale(1.04);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.35), rgba(0, 6, 15, 0.5));
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.98), 0 0 27px rgba(0, 245, 255, 0.9);
    border-color: rgba(0, 245, 255, 0.98);
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-link-btn:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 9px rgba(0, 245, 255, 0.9));
}

.social-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    fill: #ffffff;
}

.social-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex-shrink: 0;
}

.social-link-btn:hover .social-text {
    text-shadow: 0 0 9px rgba(0, 245, 255, 0.9), 0 2px 6px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
    .about-main-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-main-layout {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: calc(var(--spacing-xl) + 80px) 0 calc(var(--spacing-lg) * 2) 0;
    }
    
    .about-main-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .profile-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-arrow {
        display: none;
    }
    
    .developer-name-main {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-tags {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-link-btn {
        padding: 12px 16px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .skill-tags {
        grid-template-columns: 1fr;
    }
}

.btn-view-packages .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-view-packages:hover .btn-arrow {
    transform: translateX(4px);
}

.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-secondary);
}

.products-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.products-empty h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.products-empty p {
    color: var(--text-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6),
                 0 0 40px rgba(0, 245, 255, 0.4),
                 0 0 60px rgba(0, 245, 255, 0.2);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

.tool-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2),
                0 0 0 1px rgba(0, 245, 255, 0.1);
    transform: translateY(-6px);
}

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

.tool-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-icon {
    font-size: 3rem;
}

.tool-name {
    flex: 1;
}

.tool-name h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tool-name p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.tool-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.tool-features {
    margin-bottom: var(--spacing-md);
}

.tool-features h4 {
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    list-style: none;
}

.features-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

.tool-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.package-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(20, 24, 32, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.15);
    transform: translateY(-2px);
}

.package-item:hover::before {
    transform: scaleX(1);
}

.package-duration {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.tool-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.tool-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ===== Pricing Cards ===== */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--spacing-md);
    overflow: visible !important;
    perspective: 1000px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    text-align: center;
    transform-style: preserve-3d;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Transform is handled by JavaScript for tilt effect */
}

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

.pricing-card.popular {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    overflow: visible !important;
}

.pricing-card.popular::before {
    opacity: 1;
}

.popular-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)) !important;
    color: #ffffff !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.4) !important;
    z-index: 9999 !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
}

.pricing-card-header {
    margin-bottom: var(--spacing-md);
}

.pricing-duration {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price-section {
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 0;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    line-height: 1.2;
}

.pricing-price-subtext {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-usd-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    font-weight: 500;
}

.pricing-original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-top: 0.5rem;
    font-weight: 500;
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: calc(var(--spacing-xs) * 0.75) 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-check {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-actions {
    margin-top: auto;
}

.btn-pricing-buy {
    display: inline-block;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.btn-pricing-buy:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    box-shadow: 0 6px 25px rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
}

.pricing-card.popular .btn-pricing-buy {
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.5);
}

.pricing-card.popular .btn-pricing-buy:hover {
    box-shadow: 0 6px 30px rgba(0, 245, 255, 0.7);
}

/* ===== Buy Modal ===== */
.buy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.buy-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.buy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.buy-modal-content {
    position: relative;
    z-index: 10001;
    width: 90%;
    max-width: 380px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.buy-modal.active .buy-modal-content {
    transform: scale(1) translateY(0);
}

.buy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.buy-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

.buy-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.95) 100%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(0, 245, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: visible;
}

.buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.buy-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.buy-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-md) 0;
}

.buy-card-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.buy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.buy-link:hover::before {
    left: 100%;
}

.buy-link i {
    font-size: 1.2rem;
}

.buy-link-discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.buy-link-discord:hover {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.buy-link-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.buy-link-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
}

.btn-primary:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--text-primary);
    box-shadow: var(--glow-cyan);
}

.btn-contact {
    background: var(--accent-green);
    color: var(--text-primary);
}

.btn-contact:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(30, 35, 48, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 245, 255, 0.1),
                0 0 20px rgba(0, 245, 255, 0.1);
    background: rgba(30, 35, 48, 0.8);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== Auth Section ===== */
.auth-section {
    max-width: 450px;
    margin: 4rem auto;
    padding: 0 var(--spacing-md);
}

.auth-section .card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
}

.auth-section .card-title {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* ===== Cards ===== */
.card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15),
                0 0 0 1px rgba(0, 245, 255, 0.1);
    transform: translateY(-4px);
}

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

.card-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.card-content {
    color: var(--text-secondary);
}

/* ===== Testimonials ===== */
.testimonials {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background: transparent;
    overflow: visible;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    overflow: visible;
    perspective: 1000px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: var(--spacing-sm);
    transition: transform 0.1s ease-out, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    will-change: transform;
    transform: translateY(0) scale(1) rotateX(0) rotateY(0);
    cursor: pointer;
    transform-style: preserve-3d;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
    /* Transform is handled by JavaScript for tilt effect */
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-primary);
    font-style: normal;
    margin-bottom: var(--spacing-xs);
    font-size: 0.8rem;
    line-height: 1.4;
}

.testimonial-date {
    font-size: 0.65rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.testimonial-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-xs);
    border: 2px solid;
}

.tag-success {
    color: var(--text-primary);
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
}

.tag-verified {
    color: var(--text-primary);
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.tag-lifetime {
    color: var(--text-primary);
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.tag-feedback {
    color: var(--text-primary);
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

/* ===== About BLOODY XITERS Section ===== */
.about-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background: transparent;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    align-items: center;
}

.about-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.9) 100%);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 20px;
    padding: var(--spacing-xl);
    max-width: 800px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
    transform: translateY(0) scale(1) rotateX(0) rotateY(0);
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2),
                0 0 60px rgba(0, 245, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.6;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.about-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.2);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6),
                 0 0 40px rgba(0, 245, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
    margin: 0;
}

.about-description {
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.about-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-info-card {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.6) 0%, rgba(15, 25, 40, 0.8) 100%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: var(--spacing-sm);
    text-align: center;
    transition: all 0.4s ease;
}

.about-info-card:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

.about-info-label {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-info-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ===== Powerful Features Section ===== */
.powerful-features {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background: transparent;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    perspective: 1000px;
}

.feature-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: transform 0.1s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    width: 100%;
    transform-style: preserve-3d;
    transform: translateY(0) scale(1) rotateX(0) rotateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Transform is handled by JavaScript for tilt effect */
}

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

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.feature-card-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== Stats Section ===== */
.stats-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.stat-card-home {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.9) 100%);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 10px;
    padding: var(--spacing-sm);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.stat-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-home:hover {
    border-color: rgba(0, 245, 255, 0.7);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.4),
                0 0 80px rgba(0, 245, 255, 0.2),
                0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px) scale(1.03);
}

.stat-card-home:hover::before {
    opacity: 1;
}

.stat-value-home {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: calc(var(--spacing-xs) * 0.5);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.6),
                 0 0 60px rgba(0, 245, 255, 0.4);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.7));
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.stat-label-home {
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.3;
}

/* ===== Happy Customers Section ===== */
.happy-customers {
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    padding: var(--spacing-lg) 0 var(--spacing-sm) 0;
    background: transparent;
}

/* Slideshow wrapper - contains all slideshow elements */
.customers-gallery-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-md);
    position: relative;
    overflow: hidden;
    min-height: 55vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Slideshow track - container for all images (overlapped) */
.customers-gallery-track {
    display: none; /* Hidden by default, shown when images load via JavaScript */
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 55vh;
    z-index: 2; /* Above placeholder when visible */
}

/* Individual image item - absolutely positioned for slideshow */
.customer-image-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(90deg);
    width: auto;
    max-width: 85vw;
    height: auto;
    max-height: 75vh;
    border-radius: 12px;
    overflow: visible;
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: var(--bg-card);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    z-index: 1;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-transition: transform 0.8s ease-in-out !important;
    -moz-transition: transform 0.8s ease-in-out !important;
    -o-transition: transform 0.8s ease-in-out !important;
    transition: transform 0.8s ease-in-out !important;
    will-change: transform;
    pointer-events: none;
}

/* Active (visible) image */
.customer-image-item.active {
    transform: translate(-50%, -50%) rotateY(0deg);
    z-index: 2;
    pointer-events: auto;
    -webkit-transition: transform 0.8s ease-in-out !important;
    -moz-transition: transform 0.8s ease-in-out !important;
    -o-transition: transform 0.8s ease-in-out !important;
    transition: transform 0.8s ease-in-out !important;
}

.customer-image-item img {
    width: auto;
    max-width: 70vw;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    margin: 0;
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3),
                0 0 40px rgba(0, 245, 255, 0.15);
    filter: brightness(1.1) contrast(1.1) saturate(1.15);
}

/* Navigation arrows - hidden */
.slideshow-nav-btn {
    display: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 38, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: var(--accent-purple);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.customers-gallery-wrapper:hover .slideshow-nav-btn,
.customers-gallery-wrapper:focus-within .slideshow-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.slideshow-nav-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.slideshow-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slideshow-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slideshow-nav-prev {
    left: 20px;
}

.slideshow-nav-next {
    right: 20px;
}

.slideshow-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Responsive styling for mobile devices - slideshow */
@media (max-width: 768px) {
    .customers-gallery-wrapper {
        padding: var(--spacing-md) var(--spacing-md);
        min-height: 350px;
    }
    
    .customers-gallery-track {
        min-height: 350px;
    }
    
    .customer-image-item {
        max-width: 98%;
        padding: 4px;
    }
    
    .customer-image-item img {
        max-height: 500px;
    }
    
    .slideshow-nav-btn {
        width: 40px;
        height: 40px;
        opacity: 1; /* Always visible on mobile */
        pointer-events: auto;
    }
    
    .slideshow-nav-prev {
        left: 10px;
    }
    
    .slideshow-nav-next {
        right: 10px;
    }
    
    .slideshow-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .customers-gallery-wrapper {
        min-height: 320px;
        padding: var(--spacing-sm);
    }
    
    .customers-gallery-track {
        min-height: 320px;
    }
    
    .customer-image-item {
        max-width: 98%;
        padding: 3px;
    }
    
    .customer-image-item img {
        max-height: 450px;
    }
    
    .slideshow-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .slideshow-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .customer-image-item {
        transition: transform 0.1s ease !important;
    }
    
    .customers-gallery-wrapper {
        overflow: visible;
    }
}

.customers-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.8) 0%, rgba(15, 25, 40, 0.9) 100%);
    border: 2px dashed rgba(0, 245, 255, 0.4);
    border-radius: 20px;
    padding: calc(var(--spacing-xl) * 2);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}

.customers-placeholder:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.customers-placeholder-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.7;
    filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.4));
}

.customers-placeholder-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.customers-placeholder-text {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0;
}

/* ===== Connect with Us Section ===== */
.connect-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background: transparent;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.9) 100%);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    border-color: rgba(0, 245, 255, 0.7);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3),
                0 0 60px rgba(0, 245, 255, 0.15);
    transform: translateY(-4px);
}

.social-link:hover::before {
    opacity: 1;
}

.social-icon {
    font-size: 1.75rem;
    color: var(--text-primary);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.7));
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.8),
                 0 0 40px rgba(0, 245, 255, 0.6),
                 0 0 60px rgba(0, 245, 255, 0.4);
    margin-bottom: calc(var(--spacing-xs) * 0.5);
    display: block;
    width: 100%;
    text-align: center;
}

.social-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
}

/* ===== FAQ ===== */
.faq-section {
    margin: var(--spacing-xl) 0;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.1);
}

.faq-item.active {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.2);
}

.faq-question {
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(0, 245, 255, 0.05);
    padding-left: calc(var(--spacing-lg) + 4px);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
}

/* ===== Messages ===== */
.message {
    padding: var(--spacing-sm) 0;
    position: relative;
}

.message-error {
    background: rgba(239, 68, 68, 0.1);
    border-bottom: 1px solid var(--error);
}

.message-success {
    background: rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid var(--success);
}

.message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 var(--spacing-sm);
}

/* ===== Dashboard ===== */
.dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-lg);
}

.dashboard-sidebar {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.95) 100%);
    border-radius: 16px;
    padding: var(--spacing-lg);
    height: fit-content;
    position: sticky;
    top: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-sidebar a:hover {
    background: rgba(0, 245, 255, 0.15) !important;
    border-left-color: var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
    transform: translateX(4px);
}

.dashboard-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    width: 100%;
    background: transparent;
    border-radius: 16px;
}

.dashboard-content-inner {
    width: 100%;
    max-width: 100%;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

/* Responsive grid columns for dashboard */
@media (min-width: 1400px) {
    .dashboard-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    .dashboard-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    .dashboard-content {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem;
    }
    .dashboard-content-inner {
        width: 100%;
        max-width: 100%;
    }
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(20, 24, 32, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.15);
    transform: translateY(-4px);
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.dashboard-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

/* Admin Panel Styles */
.admin-wrapper {
    display: flex;
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    background: var(--bg-primary);
}

.admin-sidebar {
    width: 280px;
    background: var(--bg-secondary);
    border-right: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem 1.5rem;
    position: fixed;
    height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 100;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    width: calc(100vw - 280px) !important;
}

.admin-content-inner {
    width: 100%;
    max-width: 100%;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive grid columns for admin */
@media (min-width: 1400px) {
    .admin-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .admin-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .admin-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    .admin-content {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem;
    }
    .admin-content-inner {
        max-width: 100%;
    }
}

.admin-stat-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 35, 48, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.chart-container {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    height: 300px;
}

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

@media (min-width: 1400px) {
    .charts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .charts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.user-table th, .user-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-table th {
    color: var(--accent-purple);
    font-weight: 600;
}

.search-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    color: var(--text-primary);
}

.search-input {
    flex: 1;
    min-width: 200px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    margin-top: auto;
    position: relative;
    border-top: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.6;
    z-index: 1;
}

.footer .footer-top {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    width: 100%;
    margin: 0;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    background: transparent;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: start;
}

.footer .footer-section {
    display: flex;
    flex-direction: column;
}

.footer .footer-brand-section {
    max-width: 100%;
}

.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.footer .footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.footer .footer-brand-name {
    margin: 0;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.footer .footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    max-width: 90%;
}

.footer .footer-nav-section {
    min-width: 0;
}

.footer .footer-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer .footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer .footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 15px;
    transform: translateX(4px);
}

.footer .footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer .footer-bottom {
    padding: var(--spacing-sm) 0;
    text-align: center;
    background: var(--bg-primary);
    border-top: none;
    position: relative;
    width: 100%;
    margin: 0;
}

.footer .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.footer .footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer .footer-brand-section {
        grid-column: 1 / -1;
    }
    
    /* Social Links Tablet - Keep 4 columns */
    .social-links {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    /* Products Page Tablet - 2 columns */
    .products-categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md);
    }
}

@media (max-width: 900px) {
    /* Powerful Features Section - 2 columns on medium screens */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Stats Section - Keep 4 columns on medium screens */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
    
    /* Social Links - Keep 4 columns on medium screens */
    .social-links {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
    
    .social-link {
        padding: var(--spacing-xs);
    }
    
    .social-icon {
        font-size: 1.5rem;
    }
    
    .social-text {
        font-size: 0.6rem;
    }
    
    /* Testimonials Section - Keep 4 columns on medium screens */
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-card-home {
        padding: var(--spacing-xs);
    }
    
    .stat-value-home {
        font-size: 1.5rem;
    }
    
    .stat-label-home {
        font-size: 0.6rem;
    }
}

/* Pricing Cards Responsive */
@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
    }
    
    .pricing-duration {
        font-size: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer .footer-section {
        text-align: center;
    }
    
    .footer .footer-brand {
        justify-content: center;
    }
    
    .footer .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer .footer-links a:hover {
        transform: none;
        padding-left: 0;
    }
    
    .footer .footer-links a::before {
        display: none;
    }
    
    .navbar-wrapper {
        top: 0;
        padding: 10px var(--spacing-sm) 0 var(--spacing-sm);
    }
    
    .navbar {
        padding: 0.625rem 1rem;
        border-radius: 12px;
    }
    
    body {
        padding-top: 0; /* No padding needed, hero section handles spacing */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem var(--spacing-md);
        border-radius: 0 0 16px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        gap: 0;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link {
        padding: 1rem 0;
        width: 100%;
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.btn-login,
    .nav-link.btn-primary {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-content {
        padding: 0 var(--spacing-sm);
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-img {
        width: 36px;
        height: 36px;
    }
}
    
    .hero {
        min-height: 75vh;
        padding: var(--spacing-lg) 0;
        margin-top: 90px;
        padding-top: 70px;
        margin-bottom: calc(var(--spacing-xl) * 2);
    }
    
    .hero-logo-text {
        font-size: 4rem;
    }
    
    .trust-indicator {
        padding: 0.5rem 1rem;
        margin-bottom: var(--spacing-lg);
        gap: 0.5rem;
    }
    
    .trust-icon {
        font-size: 1.2rem;
    }
    
    .trust-text {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 3rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-title-bloody,
    .hero-title-xiters {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 var(--spacing-md);
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-browse-products,
    .btn-free-products {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        flex: 0 1 auto;
        min-width: 200px;
        justify-content: center;
    }
    
    .feature-highlights {
        gap: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }
    
    .feature-item {
        gap: 0.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        bottom: 0px;
        width: 24px;
        height: 40px;
    }
    
    .scroll-dot {
        width: 6px;
        height: 6px;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        position: static;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .tool-packages {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-image-wrapper {
        height: 220px;
    }
    
    .product-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .package-btn {
        width: 100%;
        min-width: unset;
    }
    
    /* About Section Responsive */
    .about-container {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }
    
    .about-header {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .about-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .about-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        max-width: 400px;
    }
    
    .about-info-card {
        padding: var(--spacing-xs);
    }
    
    .about-info-label {
        font-size: 0.7rem;
    }
    
    .about-info-value {
        font-size: 0.85rem;
    }
    
    /* Powerful Features Section Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-sm);
    }
    
    .feature-card-icon {
        font-size: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-description {
        font-size: 0.8rem;
    }
    
    /* Testimonials Section Responsive - Keep 4 columns on mobile if possible */
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xs);
    }
    
    .testimonial-card {
        padding: var(--spacing-sm);
    }
    
    .testimonial-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .testimonial-info h4 {
        font-size: 0.85rem;
    }
    
    .testimonial-info p {
        font-size: 0.7rem;
    }
    
    .testimonial-rating {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.75rem;
    }
    
    .testimonial-date {
        font-size: 0.65rem;
    }
    
    .testimonial-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Stats Section Responsive - Keep 4 columns on mobile if possible */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: calc(var(--spacing-xs) * 0.5);
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .stat-card-home {
        padding: var(--spacing-xs);
    }
    
    .stat-value-home {
        font-size: 1.25rem;
    }
    
    .stat-label-home {
        font-size: 0.55rem;
    }
    
    /* Happy Customers Section Responsive */
    .customers-placeholder {
        padding: var(--spacing-xl);
        min-height: 300px;
    }
    
    .customers-placeholder-icon {
        font-size: 4rem;
    }
    
    .customers-placeholder-title {
        font-size: 1.5rem;
    }
    
    .customers-placeholder-text {
        font-size: 0.9rem;
        padding: 0 var(--spacing-sm);
    }
    
    /* Connect with Us Section Responsive */
    /* Social Links Responsive - Keep 4 columns on mobile if possible */
    .social-links {
        grid-template-columns: repeat(4, 1fr);
        gap: calc(var(--spacing-xs) * 0.5);
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .social-link {
        padding: var(--spacing-xs);
    }
    
    .social-icon {
        font-size: 1.25rem;
    }
    
    .social-text {
        font-size: 0.55rem;
    }
    
    /* Products Page Responsive - Mobile 1 column */
    .products-categories-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .product-category-card {
        padding: var(--spacing-md);
    }
    
    .category-image-wrapper {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
        padding: 0;
        background: transparent;
    }
    
    .category-price-tag {
        top: 8px;
        right: 8px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .category-content {
        padding: var(--spacing-md);
    }
    
    .category-name {
        font-size: 1.1rem;
    }
    
    .category-description {
        font-size: 0.8rem;
    }
    
    .category-rating .fa-star {
        font-size: 0.85rem;
    }
    
    .feature-title {
        font-size: 0.8rem;
    }
    
    .feature-desc {
        font-size: 0.7rem;
    }
    
    .btn-add-to-cart,
    .btn-view-packages {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth page transitions */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading state for forms */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: calc(var(--spacing-xl) + 100px) 0 calc(var(--spacing-xl) * 2) 0;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    min-height: 60vh;
    overflow: visible;
}

.contact-hero {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 2);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6),
                 0 0 40px rgba(0, 245, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods-section,
.contact-form-section,
.office-info-section {
    margin-bottom: calc(var(--spacing-xl) * 2);
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-method-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.25), #00060f);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 245, 255, 0.5);
    border-color: rgba(0, 245, 255, 0.7);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.contact-method-icon i {
    font-size: 1.75rem;
    color: var(--accent-cyan);
}

.contact-method-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.contact-method-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-method-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.contact-method-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.btn-discord-community {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord-community:hover {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.contact-form-section {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.1), #000408);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: var(--spacing-sm);
}

.contact-form .form-label {
    font-size: 0.85rem;
    margin-bottom: calc(var(--spacing-xs) * 0.5);
}

.contact-form .form-input {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-primary);
}

.btn-send-message {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 245, 255, 0.5),
                0 0 30px rgba(0, 245, 255, 0.3);
}

.office-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.office-info-card {
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.15), #000408);
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    text-align: center;
}

.office-info-card:hover {
    transform: translateY(-8px);
    background: radial-gradient(circle at top left, rgba(0, 245, 255, 0.25), #00060f);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(0, 245, 255, 0.5);
    border-color: rgba(0, 245, 255, 0.7);
}

.office-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 102, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.office-info-icon i {
    font-size: 1.75rem;
    color: var(--accent-cyan);
}

.office-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.office-info-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.office-info-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .office-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: calc(var(--spacing-xl) + 80px) 0 calc(var(--spacing-lg) * 2) 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-form-section {
        padding: var(--spacing-md);
    }
    
    .contact-form .form-group {
        margin-bottom: calc(var(--spacing-xs) * 0.75);
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .office-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-method-card,
    .office-info-card {
        padding: var(--spacing-md);
    }
    
    .contact-method-icon,
    .office-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-method-icon i,
    .office-info-icon i {
        font-size: 1.5rem;
    }
}

/* ===== Register Page Advanced Design ===== */
.register-section {
    position: relative;
    min-height: 100vh;
    padding: 120px var(--spacing-md) var(--spacing-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.register-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                var(--bg-primary);
}

.register-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: register-orb-float 20s ease-in-out infinite;
}

.register-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.register-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
}

.register-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes register-orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.register-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 245, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: register-mesh-move 15s ease infinite;
    opacity: 0.6;
}

@keyframes register-mesh-move {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

/* Container */
.register-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Card */
.register-card {
    background: rgba(30, 35, 48, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-cyan),
        var(--accent-purple),
        transparent
    );
    opacity: 0.6;
}

.register-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Header */
.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.register-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 
        0 10px 30px rgba(0, 245, 255, 0.3),
        0 0 0 4px rgba(0, 245, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.register-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 245, 255, 0.4),
        0 0 0 6px rgba(0, 245, 255, 0.15);
}

.register-logo-text {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.register-logo-glow {
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.3;
    filter: blur(20px);
    z-index: 0;
    animation: register-logo-pulse 2s ease-in-out infinite;
}

@keyframes register-logo-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.register-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.register-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Form */
.register-form {
    margin-bottom: 1.5rem;
}

.register-form-group {
    margin-bottom: 1rem;
    position: relative;
}

.register-password-group {
    margin-bottom: 1rem;
}

.register-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.register-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.register-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(20, 25, 35, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.register-input::placeholder {
    color: transparent;
}

.register-input:focus {
    background: rgba(20, 25, 35, 0.8);
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 20px rgba(0, 245, 255, 0.15);
}

.register-input:focus + .register-label,
.register-input:not(:placeholder-shown) + .register-label {
    transform: translateY(-2.2rem) translateX(-0.5rem) scale(0.85);
    color: var(--accent-cyan);
    opacity: 1;
}

.register-input:focus ~ .register-input-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.register-input-error {
    border-color: var(--error) !important;
    box-shadow: 
        0 0 0 4px rgba(239, 68, 68, 0.1),
        0 0 20px rgba(239, 68, 68, 0.15) !important;
}

.register-input-success {
    border-color: var(--accent-green) !important;
    box-shadow: 
        0 0 0 4px rgba(34, 197, 94, 0.1),
        0 0 20px rgba(34, 197, 94, 0.15) !important;
}

.register-label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
    z-index: 1;
}

.register-label-optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.85em;
}

.register-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.register-input:focus ~ .register-input-line {
    width: 100%;
}

.register-password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 6px;
}

.register-password-toggle:hover {
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.1);
}

.register-password-toggle:active {
    transform: scale(0.95);
}

/* Password Strength Meter */
.register-password-strength {
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.register-password-strength.show {
    margin-top: 0.75rem;
    opacity: 1;
    max-height: 100px;
}

.register-strength-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.register-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.register-strength-fill.weak {
    background: linear-gradient(90deg, var(--error), #f97316);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.register-strength-fill.medium {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.register-strength-fill.strong {
    background: linear-gradient(90deg, var(--accent-green), #34d399);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.register-strength-text {
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-strength-text.weak {
    color: var(--error);
}

.register-strength-text.medium {
    color: var(--warning);
}

.register-strength-text.strong {
    color: var(--accent-green);
}

/* Validation Messages */
.register-validation-message {
    margin-top: 0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 0;
    height: 0;
    overflow: hidden;
    display: block;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.register-validation-message:not(:empty) {
    margin-top: 0.5rem;
    min-height: 1.2rem;
    height: auto;
    padding-left: 0.25rem;
}

.register-validation-message.error {
    color: var(--error);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.register-validation-message.error::before {
    content: '✕';
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--error);
}

.register-validation-message.success {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.register-validation-message.success::before {
    content: '✓';
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent-green);
}

/* Password Requirements */
.register-password-requirements {
    margin-top: 0;
    padding: 0;
    background: rgba(20, 25, 35, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.register-password-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-cyan),
        var(--accent-purple),
        transparent
    );
    opacity: 0.4;
}

.register-password-requirements.show {
    opacity: 1;
    max-height: 500px;
    margin-top: 1rem;
    padding: 1.25rem;
    transform: translateY(0);
}

.register-requirements-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.register-requirements-title i {
    color: var(--accent-cyan);
    font-size: 1rem;
    animation: register-shield-pulse 2s ease-in-out infinite;
}

@keyframes register-shield-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes register-requirements-shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.register-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.register-requirement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.register-requirement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.1;
    transition: width 0.3s ease;
}

.register-requirement-item:hover::before {
    width: 100%;
}

.register-requirement-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
}

.register-requirement-icon {
    position: relative;
}

.register-requirement-icon i {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.register-requirement-item.valid .register-requirement-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    transform: scale(1.1);
}

.register-requirement-icon i.fa-times {
    display: block;
    transition: all 0.3s ease;
}

.register-requirement-icon i.fa-check {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--accent-green);
}

.register-requirement-item.valid .register-requirement-icon i.fa-times {
    opacity: 0;
    transform: scale(0);
}

.register-requirement-item.valid .register-requirement-icon i.fa-check {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.register-requirement-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex: 1;
}

.register-requirement-item.valid .register-requirement-text {
    color: var(--accent-green);
    font-weight: 500;
}

.register-requirement-item:hover .register-requirement-text {
    color: var(--text-primary);
}

/* Submit Button */
.register-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 245, 255, 0.3),
        0 0 0 0 rgba(0, 245, 255, 0.5);
    margin-top: 0.5rem;
}

.register-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.register-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(0, 245, 255, 0.4),
        0 0 0 4px rgba(0, 245, 255, 0.2);
}

.register-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.register-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.register-submit-btn:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.register-btn-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.register-btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.register-submit-btn-loading .register-btn-loader {
    opacity: 1;
}

/* Terms and Privacy Policy Checkbox */
.register-terms-container {
    margin-bottom: 0.5rem;
    position: relative;
    border: none !important;
    outline: none !important;
}

.register-terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none !important;
    outline: none !important;
}

.register-terms-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.02);
}

.register-terms-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.register-terms-checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(20, 25, 35, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.register-terms-checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid var(--accent-cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.register-terms-checkbox-input:checked + .register-terms-checkbox-custom {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 15px rgba(0, 245, 255, 0.3);
}

.register-terms-checkbox-input:checked + .register-terms-checkbox-custom::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.register-terms-checkbox-input:focus + .register-terms-checkbox-custom {
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 10px rgba(0, 245, 255, 0.2);
}

.register-terms-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.register-terms-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.register-terms-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
}

.register-terms-link:hover {
    color: var(--accent-purple);
}

.register-terms-link:hover::after {
    width: 100%;
}

.register-terms-error {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--error);
    font-weight: 500;
    min-height: 1.2rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.register-terms-error.show {
    opacity: 1;
    transform: translateY(0);
}

.register-terms-container.error .register-terms-checkbox-custom {
    border-color: var(--error);
    box-shadow: 
        0 0 0 4px rgba(239, 68, 68, 0.1),
        0 0 10px rgba(239, 68, 68, 0.2);
}

.register-terms-checkbox-input:invalid ~ .register-terms-text,
.register-terms-checkbox-label:has(:invalid) {
    border: none !important;
    outline: none !important;
}

/* Social Login Divider */
.register-social-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
}

.register-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.register-divider-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 0.5rem;
}

/* Social Login Buttons */
.register-social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.register-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.register-social-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.register-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.register-social-btn:hover i {
    transform: scale(1.1);
}

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

/* Google Button */
.register-google-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-color: rgba(255, 255, 255, 0.2);
}

.register-google-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(255, 255, 255, 0.1);
}

.register-google-btn i {
    background: conic-gradient(
        from 0deg at 50% 50%,
        #EA4335 0deg 90deg,
        #4285F4 90deg 180deg,
        #34A853 180deg 270deg,
        #FBBC05 270deg 360deg
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 1.2em;
    font-weight: 400;
}

/* Discord Button */
.register-discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: var(--text-primary);
    border-color: rgba(88, 101, 242, 0.3);
}

.register-discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3C45A5);
    box-shadow: 
        0 6px 20px rgba(88, 101, 242, 0.4),
        0 0 0 4px rgba(88, 101, 242, 0.2);
}

.register-discord-btn i {
    color: var(--text-primary);
}

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

.register-footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.register-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.register-footer-link:hover {
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(4px);
}

.register-footer-link i {
    transition: transform 0.3s ease;
}

.register-footer-link:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 100px var(--spacing-sm) var(--spacing-lg);
    }
    
    .register-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .register-title {
        font-size: 1.75rem;
    }
    
    .register-logo {
        width: 70px;
        height: 70px;
    }
    
    .register-logo-text {
        font-size: 2rem;
    }
    
    .register-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .register-label {
        left: 2.75rem;
        font-size: 0.95rem;
    }
    
    .register-input:focus + .register-label,
    .register-input:not(:placeholder-shown) + .register-label {
        transform: translateY(-2rem) translateX(-0.5rem) scale(0.85);
    }
    
    .register-input-icon {
        left: 0.875rem;
        font-size: 0.9rem;
    }
    
    .register-form-group {
        margin-bottom: 0.875rem;
    }
    
    .register-terms-container {
        margin-bottom: 0.875rem;
    }
    
    .register-submit-btn {
        margin-top: 0.875rem;
    }
    
    .register-social-divider {
        margin: 1.25rem 0;
    }
    
    .register-social-login {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .register-social-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .register-social-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .register-card {
        padding: 1.5rem 1.25rem;
    }
    
    .register-title {
        font-size: 1.5rem;
    }
    
    .register-subtitle {
        font-size: 0.85rem;
    }
    
    .register-logo {
        width: 60px;
        height: 60px;
    }
    
    .register-logo-text {
        font-size: 1.75rem;
    }
    
    .register-form-group {
        margin-bottom: 1rem;
    }
    
    .register-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    
    .register-label {
        left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .register-input-icon {
        left: 0.75rem;
        font-size: 0.85rem;
    }
    
    .register-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .register-password-requirements.show {
        padding: 0.875rem;
        margin-top: 0.75rem;
    }
    
    .register-requirements-title {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .register-requirements-list {
        gap: 0.5rem;
    }
    
    .register-requirement-item {
        padding: 0.375rem;
    }
    
    .register-requirement-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .register-requirement-icon {
        width: 20px;
        height: 20px;
    }
    
    .register-requirement-icon i {
        font-size: 0.65rem;
    }
    
    .register-terms-container {
        margin-bottom: 0.5rem;
    }
    
    .register-terms-checkbox-label {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .register-terms-checkbox-custom {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 0.15rem;
    }
    
    .register-terms-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .register-terms-error {
        font-size: 0.8rem;
    }
    
    .register-social-divider {
        margin: 1rem 0;
        gap: 0.75rem;
    }
    
    .register-divider-text {
        font-size: 0.8rem;
        padding: 0 0.375rem;
    }
    
    .register-social-login {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .register-social-btn {
        height: 2.75rem;
    }
    
    .register-social-btn i {
        font-size: 1.2rem;
    }
}

/* ===== Login Page Design (Matching Register) ===== */
.login-section {
    position: relative;
    min-height: 100vh;
    padding: 120px var(--spacing-md) var(--spacing-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                var(--bg-primary);
}

.login-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: login-orb-float 20s ease-in-out infinite;
}

.login-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.login-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
}

.login-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes login-orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.login-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 245, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: login-mesh-move 15s ease infinite;
    opacity: 0.6;
}

@keyframes login-mesh-move {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

/* Container */
.login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Card */
.login-card {
    background: rgba(30, 35, 48, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-cyan),
        var(--accent-purple),
        transparent
    );
    opacity: 0.6;
}

.login-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Form */
.login-form {
    margin-bottom: 1.5rem;
}

.login-form-group {
    margin-bottom: 1rem;
    position: relative;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.login-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(20, 25, 35, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.login-input::placeholder {
    color: transparent;
}

.login-input:focus {
    background: rgba(20, 25, 35, 0.8);
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 20px rgba(0, 245, 255, 0.15);
}

.login-input:focus + .login-label,
.login-input:not(:placeholder-shown) + .login-label {
    transform: translateY(-2.2rem) translateX(-0.5rem) scale(0.85);
    color: var(--accent-cyan);
    opacity: 1;
}

.login-input:focus ~ .login-input-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.login-input-error {
    border-color: var(--error) !important;
    box-shadow: 
        0 0 0 4px rgba(239, 68, 68, 0.1),
        0 0 20px rgba(239, 68, 68, 0.15) !important;
}

.login-input-success {
    border-color: var(--accent-green) !important;
    box-shadow: 
        0 0 0 4px rgba(34, 197, 94, 0.1),
        0 0 20px rgba(34, 197, 94, 0.15) !important;
}

.login-label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
    z-index: 1;
}

.login-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.login-input:focus ~ .login-input-line {
    width: 100%;
}

.login-password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 6px;
}

.login-password-toggle:hover {
    color: var(--accent-cyan);
    background: rgba(0, 245, 255, 0.1);
}

.login-password-toggle:active {
    transform: scale(0.95);
}

/* Login Validation Messages */
.login-validation-message {
    margin-top: 0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 0;
    height: 0;
    overflow: hidden;
    display: block;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.login-validation-message:not(:empty) {
    margin-top: 0.5rem;
    min-height: 1.2rem;
    height: auto;
    padding-left: 0.25rem;
}

.login-validation-message.error {
    color: var(--error);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-validation-message.error::before {
    content: '✕';
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--error);
}

.login-validation-message.success {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-validation-message.success::before {
    content: '✓';
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent-green);
}

/* Remember Me Checkbox */
.login-remember-container {
    margin-bottom: 1rem;
    position: relative;
}

.login-remember-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-remember-checkbox-label:hover {
    background: rgba(255, 255, 255, 0.02);
}

.login-remember-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.login-remember-checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(20, 25, 35, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.login-remember-checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid var(--accent-cyan);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.login-remember-checkbox-input:checked + .login-remember-checkbox-custom {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 15px rgba(0, 245, 255, 0.3);
}

.login-remember-checkbox-input:checked + .login-remember-checkbox-custom::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.login-remember-checkbox-input:focus + .login-remember-checkbox-custom {
    border-color: var(--accent-cyan);
    box-shadow: 
        0 0 0 4px rgba(0, 245, 255, 0.1),
        0 0 10px rgba(0, 245, 255, 0.2);
}

.login-remember-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 245, 255, 0.3),
        0 0 0 0 rgba(0, 245, 255, 0.5);
    margin-top: 0.5rem;
}

.login-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.login-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(0, 245, 255, 0.4),
        0 0 0 4px rgba(0, 245, 255, 0.2);
}

.login-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-submit-btn:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.login-btn-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.login-btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.login-submit-btn-loading .login-btn-loader {
    opacity: 1;
}

/* Social Login Divider */
.login-social-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
}

.login-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.login-divider-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 0.5rem;
}

/* Social Login Buttons */
.login-social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-social-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.login-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.login-social-btn:hover i {
    transform: scale(1.1);
}

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

/* Google Button */
.login-google-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-color: rgba(255, 255, 255, 0.2);
}

.login-google-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(255, 255, 255, 0.1);
}

.login-google-btn i {
    background: conic-gradient(
        from 0deg at 50% 50%,
        #EA4335 0deg 90deg,
        #4285F4 90deg 180deg,
        #34A853 180deg 270deg,
        #FBBC05 270deg 360deg
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 1.5em;
    font-weight: 400;
}

/* Discord Button */
.login-discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: var(--text-primary);
    border-color: rgba(88, 101, 242, 0.3);
}

.login-discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3C45A5);
    box-shadow: 
        0 6px 20px rgba(88, 101, 242, 0.4),
        0 0 0 4px rgba(88, 101, 242, 0.2);
}

.login-discord-btn i {
    color: var(--text-primary);
}

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

.login-footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.login-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.login-footer-link:hover {
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(4px);
}

.login-footer-link i {
    transition: transform 0.3s ease;
}

.login-footer-link:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Login */
@media (max-width: 768px) {
    .login-section {
        padding: 100px var(--spacing-sm) var(--spacing-lg);
    }
    
    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .login-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .login-label {
        left: 2.75rem;
        font-size: 0.95rem;
    }
    
    .login-input:focus + .login-label,
    .login-input:not(:placeholder-shown) + .login-label {
        transform: translateY(-2rem) translateX(-0.5rem) scale(0.85);
    }
    
    .login-input-icon {
        left: 0.875rem;
        font-size: 0.9rem;
    }
    
    .login-form-group {
        margin-bottom: 0.875rem;
    }
    
    .login-remember-container {
        margin-bottom: 0.875rem;
    }
    
    .login-submit-btn {
        margin-top: 0.875rem;
    }
    
    .login-social-divider {
        margin: 1.25rem 0;
    }
    
    .login-social-login {
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }
    
    .login-social-btn {
        height: 3rem;
    }
    
    .login-social-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem 1.25rem;
    }
    
    .login-title {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.85rem;
    }
    
    .login-form-group {
        margin-bottom: 0.75rem;
    }
    
    .login-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    
    .login-label {
        left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .login-input-icon {
        left: 0.75rem;
        font-size: 0.85rem;
    }
    
    .login-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .login-remember-container {
        margin-bottom: 0.5rem;
    }
    
    .login-remember-checkbox-label {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .login-remember-checkbox-custom {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 0.15rem;
    }
    
    .login-remember-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .login-social-divider {
        margin: 1rem 0;
        gap: 0.75rem;
    }
    
    .login-divider-text {
        font-size: 0.8rem;
        padding: 0 0.375rem;
    }
    
    .login-social-login {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .login-social-btn {
        height: 2.75rem;
    }
    
    .login-social-btn i {
        font-size: 1.2rem;
    }
}
