/* ===================================
   MONOLITH - Professional Website Styles
   Based on vanish-cheat.com design
   =================================== */

/* CSS Variables - Your Brand Colors (Dark Theme - Default) */
:root {
    /* Primary Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d14;
    --bg-tertiary: #121218;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    
    /* Accent Colors - Purple Theme */
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-dark: #5849c7;
    --accent-glow: rgba(108, 92, 231, 0.4);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #8b8b9e;
    --text-muted: #5c5c6f;
    
    /* Status Colors */
    --success: #00d26a;
    --success-bg: rgba(0, 210, 106, 0.15);
    --danger: #ff4757;
    --warning: #ffa502;
    
    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 4px 30px rgba(108, 92, 231, 0.3);
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    
    /* Sizing */
    --header-height: 70px;
    --banner-height: 40px;
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #f5f5f7;
    --bg-secondary: #eeeef0;
    --bg-tertiary: #e8e8ec;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f8fa;
    
    --text-primary: #1a1a2e;
    --text-secondary: #5c5c6f;
    --text-muted: #8b8b9e;
    
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.theme-transitioning,
body.theme-transitioning * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

/* ===================================
   Top Banner
   =================================== */
.top-banner {
    background: var(--gradient-accent);
    height: var(--banner-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.banner-icon {
    width: 16px;
    height: 16px;
}

.banner-link {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.banner-link:hover {
    opacity: 1;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: var(--banner-height);
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-discord:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.discord-icon {
    width: 18px;
    height: 18px;
}

.btn-primary-nav {
    padding: 10px 24px;
    background: var(--accent);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-primary-nav:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

.lang-btn {
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--banner-height) + var(--header-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.5;
    filter: blur(80px);
}

.hero-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

.hero-particle:nth-child(odd) {
    width: 2px;
    height: 2px;
    background: var(--accent);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
}

.hero-title {
    margin-bottom: 16px;
}

.hero-title-main {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-title-accent {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.btn-glow {
    box-shadow: var(--shadow-accent);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-video-fallback svg {
    width: 60px;
    height: 60px;
    color: var(--accent);
}

.hero-video-fallback span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-video:not([src]):not([poster]) ~ .hero-video-fallback,
.hero-video[poster=""] ~ .hero-video-fallback,
.hero-video.video-error ~ .hero-video-fallback {
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.8) 100%);
    pointer-events: none;
}

.hero-video-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}

/* ===================================
   3D Menu Preview
   =================================== */
.hero-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 420px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0a0a12 0%, #12121a 100%);
}

.menu-preview-3d {
    width: 100%;
    height: 100%;
    cursor: grab;
    position: relative;
}

.menu-preview-3d:active {
    cursor: grabbing;
}

.menu-preview-3d canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.hero-3d-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 2;
    box-shadow: 
        inset 0 0 30px rgba(108, 92, 231, 0.1),
        0 0 40px rgba(108, 92, 231, 0.15);
}

.hero-3d-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.hero-3d-hint svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.hero-3d-wrapper:hover .hero-3d-hint {
    opacity: 0;
}

/* 3D Preview Loading State */
.menu-preview-3d:empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: preview-loading 1s linear infinite;
}

@keyframes preview-loading {
    to { transform: rotate(360deg); }
}

/* Glow effect on hover */
.hero-3d-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent-light), transparent);
    border-radius: calc(var(--border-radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-3d-wrapper:hover::before {
    opacity: 0.5;
    animation: glow-rotate 3s linear infinite;
}

@keyframes glow-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* ===================================
   Section Header
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.title-accent {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Security Section
   =================================== */
.security {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
}

.security-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.security-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.security-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.security-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 100px 0;
    background: var(--bg-primary);
}

.features-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.feature-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: sticky;
    top: calc(var(--banner-height) + var(--header-height) + 24px);
}

.feature-icon-large {
    width: 72px;
    height: 72px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-large svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.feature-main h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-main p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.feature-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--accent-light);
}

.feature-link:hover svg {
    transform: translateX(4px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card-large {
    grid-column: span 1;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-banner-content {
    text-align: center;
    padding: 60px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    position: relative;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--accent);
    position: relative;
}

.cta-banner .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    padding: 6px;
    background: var(--bg-card);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.pricing-tab:hover {
    color: var(--text-primary);
}

.pricing-tab.active {
    background: var(--accent);
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                linear-gradient(135deg, var(--accent), var(--accent-light), #e040fb, var(--accent)) border-box;
    background-size: 100% 100%, 300% 300%;
    animation: glowBorder 6s ease infinite;
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(108, 92, 231, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(108, 92, 231, 0.2);
    transform: translateY(-12px);
}

@keyframes glowBorder {
    0%, 100% { background-position: 0% 0%, 0% 50%; }
    50% { background-position: 0% 0%, 100% 50%; }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.pricing-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--success-bg);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 20px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-pricing-outline:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
}

/* ===================================
   Discord CTA
   =================================== */
.discord-cta {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.discord-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 48px 60px;
}

.discord-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.discord-cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.btn-discord-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #5865F2;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-discord-large svg {
    width: 24px;
    height: 24px;
}

.btn-discord-large:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   Auth Pages (Login/Register)
   =================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-primary);
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.auth-logo .logo-icon {
    width: 48px;
    height: 48px;
}

.auth-logo span {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.btn-auth {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-auth:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-size: 13px;
    color: var(--text-muted);
}

.auth-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-link a {
    color: var(--accent);
    font-weight: 500;
}

.auth-link a:hover {
    color: var(--accent-light);
}

/* ===================================
   Dashboard Styles
   =================================== */
.dashboard {
    min-height: 100vh;
    background: var(--bg-primary);
}

.dashboard-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.dashboard-content {
    padding-top: 90px;
    padding-bottom: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 28px;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .feature-main {
        position: static;
    }
}

@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title-main,
    .hero-title-accent {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .discord-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title-main,
    .hero-title-accent {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .auth-box {
        padding: 32px 24px;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
[id] {
    scroll-margin-top: calc(var(--banner-height) + var(--header-height) + 24px);
}

/* ===================================
   Demo Video Section
   =================================== */
.demo-video {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.demo-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.demo-video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.demo-video-player {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.demo-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.demo-play-btn {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-accent);
}

.demo-play-btn:hover {
    transform: scale(1.1);
}

.demo-play-btn svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.demo-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Discord Live Chat Widget
   =================================== */
.discord-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.discord-widget-toggle {
    width: 60px;
    height: 60px;
    background: #5865F2;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.discord-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.5);
}

.discord-widget-toggle svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.3s ease;
}

.discord-widget-toggle .discord-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.discord-widget.active .discord-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.discord-widget.active .discord-icon-close {
    opacity: 1;
    transform: rotate(0);
}

.discord-widget-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    padding: 4px 8px;
    background: var(--success);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.discord-widget-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.discord-widget.active .discord-widget-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.discord-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #5865F2;
    color: white;
}

.discord-widget-header svg {
    width: 32px;
    height: 32px;
}

.discord-widget-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.discord-widget-status {
    font-size: 12px;
    opacity: 0.9;
}

.discord-widget-body {
    padding: 20px;
}

.discord-widget-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.discord-widget-features {
    list-style: none;
}

.discord-widget-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.discord-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 20px 20px;
    padding: 12px;
    background: #5865F2;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.discord-widget-btn:hover {
    background: #4752C4;
}

.discord-widget-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .discord-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .discord-widget-popup {
        width: calc(100vw - 32px);
        right: -8px;
    }
    
    .demo-features {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ===================================
   Theme Toggle Button
   =================================== */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: absolute;
}

.theme-toggle:hover svg {
    color: var(--accent);
}

.theme-icon-light {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-icon-dark {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    flex: 0 0 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .gallery-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .gallery-slide {
        flex: 0 0 33.333%;
    }
}

.gallery-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 16/10;
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
}

.gallery-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--accent);
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px 0;
}

.gallery-caption h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.gallery-caption p {
    font-size: 14px;
    color: var(--text-secondary);
}

.gallery-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.gallery-arrow:hover svg {
    color: white;
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-arrow:disabled:hover {
    background: var(--bg-card);
    border-color: var(--border);
}

.gallery-arrow:disabled:hover svg {
    color: var(--text-secondary);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: var(--text-muted);
}

.gallery-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Light theme specific adjustments */
[data-theme="light"] .hero-bg {
    background: linear-gradient(180deg, #f5f5f7 0%, #eeeef0 100%);
}

[data-theme="light"] .hero-gradient {
    background: radial-gradient(circle at 50% 0%, rgba(108, 92, 231, 0.15) 0%, transparent 60%);
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(circle at 70% 30%, rgba(162, 155, 254, 0.2) 0%, transparent 50%);
}

[data-theme="light"] .top-banner {
    background: var(--accent);
}

[data-theme="light"] .gallery-placeholder {
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%);
}

/* Cookie Consent Banner */

/* Theme Transition */
body.theme-transitioning,
body.theme-transitioning *,
body.theme-transitioning *::before,
body.theme-transitioning *::after {
    transition: background-color 0.5s ease,
                color 0.3s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease !important;
}

/* Theme Toggle Overlay Flash */
.theme-flash {
    position: fixed;
    inset: 0;
    background: var(--accent);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    animation: themeFlash 0.5s ease;
}

@keyframes themeFlash {
    0% { opacity: 0.08; }
    100% { opacity: 0; }
}

/* Cursor Glow Trail */
.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, rgba(108, 92, 231, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    will-change: left, top;
}

.cursor-glow.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary, #0d0d14);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 32px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary, #8b8b9e);
    line-height: 1.5;
    margin: 0;
}

.cookie-content p a {
    color: var(--accent, #6c5ce7);
    text-decoration: none;
}

.cookie-content p a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--accent, #6c5ce7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-secondary, #8b8b9e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-decline:hover {
    border-color: var(--accent, #6c5ce7);
    color: var(--accent, #6c5ce7);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        justify-content: center;
    }
}
