/* ================================================================
   TürkDeveloper — Ultra Premium Design System
   Version: 1.0.0
   ================================================================ */

/* ---- CSS Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: rgba(0,231,255,0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,231,255,0.5); }
::selection { background: rgba(0,231,255,0.2); color: #fff; }

/* ---- Design Tokens ---- */
:root {
    /* Colors */
    --bg-primary: #050505;
    --bg-section: #090909;
    --bg-card: #101010;
    --bg-card-hover: #151515;
    --bg-elevated: #1a1a1a;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);

    --primary: #00E7FF;
    --primary-rgb: 0, 231, 255;
    --primary-dark: #00b8cc;
    --secondary: #3B82F6;
    --secondary-rgb: 59, 130, 246;
    --accent: #8B5CF6;
    --accent-rgb: 139, 92, 246;
    --success: #22C55E;
    --success-rgb: 34, 197, 94;
    --danger: #EF4444;
    --danger-rgb: 239, 68, 68;
    --warning: #F59E0B;
    --warning-rgb: 245, 158, 11;

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.7);
    --text-tertiary: rgba(255,255,255,0.45);
    --text-muted: rgba(255,255,255,0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Manrope', 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', 'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 8rem);
    --container-max: 1280px;
    --container-pad: clamp(1rem, 4vw, 2rem);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 999px;

    /* Glass */
    --glass-bg: rgba(16, 16, 16, 0.6);
    --glass-blur: 30px;
    --glass-border: rgba(255,255,255,0.06);

    /* 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-glow: 0 0 30px rgba(var(--primary-rgb), 0.15);
    --shadow-glow-lg: 0 0 60px rgba(var(--primary-rgb), 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}

/* ---- Base ---- */
body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Section Header ---- */
.section__header { text-align: center; max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    color: var(--primary); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.section__title { margin-bottom: 1rem; }
.section__desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section__footer { text-align: center; margin-top: 3rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-lg);
    font-weight: 600; font-size: 0.9rem;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative; overflow: hidden; white-space: nowrap;
    border: 1px solid transparent; cursor: pointer;
}
.btn--sm { padding: 8px 18px; font-size: 0.82rem; border-radius: var(--radius-md); }
.btn--lg { padding: 14px 32px; font-size: 0.95rem; }
.btn--xl { padding: 18px 42px; font-size: 1.05rem; border-radius: var(--radius-xl); }
.btn--block { width: 100%; }
.btn--icon { padding: 10px; width: 40px; height: 40px; }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000; font-weight: 700;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}
.btn--primary:hover {
    box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.45);
    transform: translateY(-2px);
}

.btn--glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}
.btn--glass:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn--outline {
    border: 1px solid var(--border);
    color: var(--text-primary);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.btn--discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}
.btn--discord:hover {
    background: #4752c4;
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.45);
    transform: translateY(-2px);
}

.btn--glow { animation: btnGlow 2s ease-in-out infinite alternate; }
@keyframes btnGlow {
    from { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3); }
    to { box-shadow: 0 6px 35px rgba(var(--primary-rgb), 0.5); }
}

.btn__shine {
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.cursor {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary); pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: difference;
}
.cursor-glow {
    position: fixed; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
.cursor--hover { width: 50px; height: 50px; opacity: 0.5; }
.cursor-glow--hover { width: 70px; height: 70px; border-color: rgba(var(--primary-rgb), 0.6); }

@media (max-width: 1024px) {
    .cursor, .cursor-glow { display: none !important; }
}

/* ================================================================
   MOUSE GLOW EFFECT
   ================================================================ */
.mouse-glow {
    position: fixed; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ================================================================
   PARTICLES
   ================================================================ */
.particles-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* ================================================================
   LOADING SCREEN
   ================================================================ */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-primary); z-index: 100000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; }
.loading-icon { width: 48px; height: 48px; }
.loading-icon .hex-path {
    stroke-dasharray: 200; stroke-dashoffset: 200;
    animation: hexDraw 2s ease-in-out infinite;
}
@keyframes hexDraw {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}
.loading-text {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.loading-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); overflow: hidden; }
.loading-bar-fill {
    height: 100%; border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: loadingFill 1.5s ease-in-out forwards;
}
@keyframes loadingFill { from { width: 0%; } to { width: 100%; } }

/* ================================================================
   HEADER
   ================================================================ */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.header--scrolled {
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.header__container {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header__logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem;
    transition: opacity 0.3s; z-index: 10;
}
.header__logo:hover { opacity: 0.8; }
.header__logo-text { white-space: nowrap; }

.header__nav { flex: 1; display: flex; justify-content: center; }
.header__menu { display: flex; align-items: center; gap: 2px; }
.header__link {
    padding: 8px 14px; border-radius: var(--radius-md);
    font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
    transition: all var(--duration-fast); white-space: nowrap;
    display: flex; align-items: center; gap: 4px;
}
.header__link:hover, .header__link.active { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.header__link i { font-size: 0.6rem; transition: transform 0.3s; }

/* Dropdown */
.header__dropdown { position: relative; }
.header__dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 280px; padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}
.header__dropdown:hover .header__dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.header__dropdown:hover .header__link i { transform: rotate(180deg); }
.header__dropdown-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius-md);
    transition: background 0.2s;
}
.header__dropdown-item:hover { background: rgba(255,255,255,0.05); }
.header__dropdown-item i { font-size: 1.1rem; color: var(--primary); width: 20px; text-align: center; }
.header__dropdown-item strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.header__dropdown-item span { display: block; font-size: 0.78rem; color: var(--text-tertiary); margin-top: 2px; }

.header__actions { display: flex; align-items: center; gap: 8px; z-index: 10; }
.header__cart {
    position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); color: var(--text-secondary);
    transition: all 0.2s;
}
.header__cart:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.header__cart-badge {
    position: absolute; top: 2px; right: 2px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--primary); color: #000;
    font-size: 0.65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* Mobile Toggle */
.header__toggle {
    display: none; flex-direction: column; gap: 5px;
    width: 28px; padding: 4px 0; z-index: 10;
}
.header__toggle span {
    width: 100%; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: all 0.3s var(--ease-out);
}
.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
@media (max-width: 1024px) {
    .header__nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(30px);
        flex-direction: column; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden;
        transition: all 0.4s var(--ease-out);
    }
    .header__nav.active { opacity: 1; visibility: visible; }
    .header__menu { flex-direction: column; gap: 4px; }
    .header__link { font-size: 1.1rem; padding: 12px 24px; }
    .header__toggle { display: flex; }
    .header__dropdown-menu {
        position: static; transform: none; min-width: 100%;
        opacity: 1; visibility: visible; background: transparent;
        border: none; box-shadow: none; padding: 0 0 0 1rem;
        display: none;
    }
    .header__dropdown.active .header__dropdown-menu { display: block; }
    .header__actions .btn span { display: none; }
    .header__actions .btn--primary span { display: inline; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; position: relative;
    background: var(--bg-primary); overflow: hidden;
}
.hero__particles { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.hero__grid-bg {
    position: absolute; inset: 0; z-index: 0; opacity: 0.3;
    background: url('../img/background.jpg') center/cover no-repeat;
}
.hero__container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero__content { position: relative; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    color: var(--primary); font-size: 0.8rem; font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero__badge-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title { margin-bottom: 1.5rem; }
.hero__title-line { display: block; }

.hero__desc {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7;
    max-width: 520px; margin-bottom: 2rem;
}
.hero__desc strong { color: var(--text-primary); }

.hero__stats {
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 2.5rem; padding: 1rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.03);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-xl);
}
.hero__stat { text-align: center; }
.hero__stat-number {
    display: block; font-family: var(--font-mono); font-size: 1.4rem;
    font-weight: 700; color: var(--primary);
}
.hero__stat-label { font-size: 0.75rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }

.hero__trust { display: flex; align-items: center; gap: 12px; }
.hero__trust-avatars { display: flex; }
.hero__trust-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: #fff;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}
.hero__trust-avatar:first-child { margin-left: 0; }
.hero__trust-avatar--more {
    background: var(--bg-card); font-size: 0.6rem;
    border-color: var(--border);
}
.hero__trust-text { font-size: 0.85rem; color: var(--text-tertiary); }
.hero__trust-text strong { color: var(--text-secondary); }

/* Hero Dashboard */
.hero__dashboard { perspective: 1000px; position: relative; }
.hero__dashboard-wrapper { position: relative; }

.dashboard {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.dashboard__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.dashboard__status {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: var(--text-secondary);
}
.dashboard__status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.dashboard__status-dot--active { background: var(--success); box-shadow: 0 0 8px rgba(var(--success-rgb), 0.5); }

.dashboard__btn {
    padding: 6px 14px; border-radius: var(--radius-md);
    font-size: 0.78rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px; cursor: pointer;
    transition: all 0.2s;
}
.dashboard__btn--spoof {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
}
.dashboard__btn--spoof:hover { box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.4); }

.dashboard__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.dashboard__card {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s var(--ease-out);
}
.dashboard__card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(var(--primary-rgb), 0.15);
}
.dashboard__card-icon {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.dashboard__card-info { flex: 1; min-width: 0; }
.dashboard__card-label { display: block; font-size: 0.68rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.05em; }
.dashboard__card-value {
    display: block; font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dashboard__card-status {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; flex-shrink: 0;
}
.dashboard__card-status--spoofed {
    background: rgba(var(--success-rgb), 0.15); color: var(--success);
}

.dashboard__footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem; color: var(--text-tertiary);
}
.dashboard__footer-label i { color: var(--success); margin-right: 4px; }
.dashboard__footer-time i { margin-right: 4px; }

.dashboard__reflection {
    position: absolute; inset: 0;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero__wave {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    z-index: 1;
}
.hero__wave svg { width: 100%; height: 80px; }

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero__desc { max-width: 100%; margin: 0 auto 2rem; }
    .hero__stats { justify-content: center; }
    .hero__cta { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero { padding-top: 100px; }
}
@media (max-width: 640px) {
    .hero__stats { flex-direction: column; gap: 0.5rem; }
    .hero__stat-divider { width: 40px; height: 1px; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .dashboard__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   TRUSTED BY
   ================================================================ */
.trusted {
    padding: 3rem 0; background: var(--bg-section);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trusted__label {
    text-align: center; font-size: 0.8rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.trusted__logos {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 2rem;
}
.trusted__logo {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-tertiary); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s;
}
.trusted__logo:hover { color: var(--text-secondary); }
.trusted__logo-icon {
    width: 36px; height: 36px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}

/* ================================================================
   BEFORE / AFTER
   ================================================================ */
.before-after { background: var(--bg-section); }
.before-after__slider { max-width: 900px; margin: 0 auto; }
.before-after__container {
    position: relative; overflow: hidden;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    display: flex; height: 420px;
    user-select: none;
}
.before-after__before, .before-after__after {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.before-after__before { z-index: 1; clip-path: inset(0 50% 0 0); }
.before-after__after { z-index: 0; }

.before-after__screen {
    width: 360px; max-width: 80%; border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.before-after__screen-header {
    display: flex; gap: 6px; padding: 12px 16px;
    background: rgba(0,0,0,0.4);
}
.before-after__dot { width: 10px; height: 10px; border-radius: 50%; }
.before-after__dot--red { background: #EF4444; }
.before-after__dot--yellow { background: #F59E0B; }
.before-after__dot--green { background: #22C55E; }

.before-after__screen-content { padding: 2rem; text-align: center; }
.before-after__screen--banned { background: linear-gradient(135deg, #1a0505, #250808); border: 1px solid rgba(239,68,68,0.2); }
.before-after__screen--clean { background: linear-gradient(135deg, #051a0a, #082510); border: 1px solid rgba(34,197,94,0.2); }

.before-after__icon { font-size: 3rem; margin-bottom: 1rem; }
.before-after__icon--banned { color: var(--danger); }
.before-after__icon--clean { color: var(--success); }

.before-after__screen-content h3 {
    font-size: 1.2rem; margin-bottom: 0.5rem;
    font-family: var(--font-mono); letter-spacing: 0.1em;
}
.before-after__screen-content p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; }

.before-after__details {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: 0.78rem;
}
.before-after__screen--banned .before-after__details span { color: var(--danger); }
.before-after__screen--banned .before-after__details i { margin-right: 4px; }
.before-after__screen--clean .before-after__details span { color: var(--success); }
.before-after__screen--clean .before-after__details i { margin-right: 4px; }

.before-after__label {
    position: absolute; bottom: 16px; padding: 4px 16px;
    border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; z-index: 5;
}
.before-after__label--before { left: 16px; background: rgba(var(--danger-rgb), 0.2); color: var(--danger); }
.before-after__label--after { right: 16px; background: rgba(var(--success-rgb), 0.2); color: var(--success); }

.before-after__handle {
    position: absolute; top: 0; bottom: 0; left: 50%; z-index: 10;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    cursor: ew-resize;
}
.before-after__handle-line { width: 2px; flex: 1; background: rgba(var(--primary-rgb), 0.5); }
.before-after__handle-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
    transition: transform 0.2s;
}
.before-after__handle-circle:hover { transform: scale(1.1); }

/* ================================================================
   GAME CARDS
   ================================================================ */
.games { background: var(--bg-primary); }
.games__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.game-card {
    position: relative; height: 240px; border-radius: var(--radius-xl);
    overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
    border: 1px solid var(--border);
    transition: all var(--duration-normal) var(--ease-out);
}
.game-card:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.game-card__bg {
    position: absolute; inset: 0;
}
.game-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.game-card__bg-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--accent-rgb), 0.08));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(var(--primary-rgb), 0.15);
}
.game-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
}
.game-card__content { position: relative; z-index: 1; padding: 16px; }
.game-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.game-card__category {
    font-size: 0.65rem; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.game-card__status {
    padding: 2px 8px; border-radius: var(--radius-full);
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.game-card__status--success { background: rgba(var(--success-rgb), 0.15); color: var(--success); }
.game-card__status--warning { background: rgba(var(--warning-rgb), 0.15); color: var(--warning); }
.game-card__status--danger { background: rgba(var(--danger-rgb), 0.15); color: var(--danger); }
.game-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.game-card__meta {
    display: flex; gap: 12px; font-size: 0.7rem; color: var(--text-tertiary);
}
.game-card__meta i { margin-right: 3px; }
.game-card__glow {
    position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
    width: 80%; height: 40px; border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    filter: blur(20px); opacity: 0;
    transition: opacity 0.3s;
}
.game-card:hover .game-card__glow { opacity: 1; }

/* ================================================================
   FEATURES
   ================================================================ */
.features { background: var(--bg-section); }
.features__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
    padding: 2rem; border-radius: var(--radius-xl);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative; overflow: hidden;
}
.feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.feature-card--lg { grid-column: span 1; }
.feature-card__icon {
    width: 52px; height: 52px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
}
.feature-card__icon--primary { background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05)); color: var(--primary); }
.feature-card__icon--secondary { background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.15), rgba(var(--secondary-rgb), 0.05)); color: var(--secondary); }
.feature-card__icon--accent { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.05)); color: var(--accent); }
.feature-card__icon--success { background: linear-gradient(135deg, rgba(var(--success-rgb), 0.15), rgba(var(--success-rgb), 0.05)); color: var(--success); }
.feature-card__title { font-size: 1.15rem; margin-bottom: 0.75rem; }
.feature-card__desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.feature-card__glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 60%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .features__grid { grid-template-columns: 1fr; }
    .feature-card--lg { grid-column: span 1; }
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing { background: var(--bg-primary); }
.pricing__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.pricing-card {
    position: relative; padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all var(--duration-normal) var(--ease-out);
}
.pricing-card:hover {
    border-color: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-6px);
}
.pricing-card--featured {
    border-color: rgba(var(--primary-rgb), 0.25);
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03), var(--bg-card));
    box-shadow: var(--shadow-glow);
}
.pricing-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 20px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.pricing-card__header { text-align: center; margin-bottom: 1.5rem; }
.pricing-card__name { font-size: 1.3rem; margin-bottom: 0.25rem; }
.pricing-card__type { color: var(--text-tertiary); font-size: 0.85rem; }

.pricing-card__price { text-align: center; margin-bottom: 2rem; }
.pricing-card__original {
    color: var(--text-muted); font-size: 1rem;
    text-decoration: line-through; display: block; margin-bottom: 4px;
}
.pricing-card__amount { display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.pricing-card__currency { font-size: 1.5rem; font-weight: 700; color: var(--text-secondary); margin-top: 8px; }
.pricing-card__value { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.pricing-card--featured .pricing-card__value { color: var(--primary); }

.pricing-card__features { margin-bottom: 2rem; }
.pricing-card__features li {
    padding: 8px 0; font-size: 0.88rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-card__features li:last-child { border: none; }
.pricing-card__features i { color: var(--success); font-size: 0.8rem; }

.pricing__guarantees {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
    margin-top: 2.5rem; width: 100%;
}
.pricing__guarantee {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background: rgba(var(--success-rgb), 0.05);
    border: 1px solid rgba(var(--success-rgb), 0.1);
    color: var(--text-secondary); font-size: 0.88rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.3s ease;
}
.pricing__guarantee:hover {
    background: rgba(var(--success-rgb), 0.1);
    border-color: rgba(var(--success-rgb), 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(var(--success-rgb), 0.1);
}
.pricing__guarantee i { color: var(--success); }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews { background: var(--bg-section); }
.review-card {
    padding: 1.5rem; border-radius: var(--radius-xl);
    background: var(--bg-card); border: 1px solid var(--border);
    height: 100%;
}
.review-card__header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; overflow: hidden; flex-shrink: 0;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__info { flex: 1; }
.review-card__info strong { display: block; font-size: 0.9rem; }
.review-card__discord { font-size: 0.75rem; color: #5865F2; }
.review-card__game {
    padding: 3px 10px; border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary); font-size: 0.7rem; font-weight: 600;
}
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; color: #F59E0B; font-size: 0.85rem; }
.review-card__comment { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.75rem; }
.review-card__date { font-size: 0.75rem; color: var(--text-muted); }

/* ================================================================
   VIDEOS
   ================================================================ */
.videos { background: var(--bg-primary); }
.videos__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.video-card {
    border-radius: var(--radius-xl); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all var(--duration-normal) var(--ease-out);
}
.video-card:hover { border-color: rgba(var(--primary-rgb), 0.15); transform: translateY(-4px); }
.video-card__thumbnail {
    position: relative; aspect-ratio: 16/9;
    background: rgba(var(--primary-rgb), 0.03);
}
.video-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: rgba(var(--primary-rgb), 0.15);
}
.video-card__thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.9);
    color: #000; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2;
    transition: all 0.3s;
}
.video-card__play:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5); }
.video-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}
.video-card__info { padding: 1.25rem; }
.video-card__info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.video-card__info p { color: var(--text-tertiary); font-size: 0.85rem; }

/* ================================================================
   FAQ
   ================================================================ */
.faq { background: var(--bg-section); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item {
    border: 1px solid var(--border); border-radius: var(--radius-xl);
    margin-bottom: 8px; overflow: hidden;
    transition: border-color 0.3s;
}
.faq__item--active, .faq__item:hover { border-color: rgba(var(--primary-rgb), 0.15); }
.faq__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; text-align: left;
    font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
    background: var(--bg-card); cursor: pointer;
    transition: background 0.2s;
}
.faq__question:hover { background: var(--bg-card-hover); }
.faq__icon { font-size: 0.85rem; color: var(--primary); transition: transform 0.3s var(--ease-out); }
.faq__item--active .faq__icon { transform: rotate(45deg); }
.faq__answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* ================================================================
   DISCORD SECTION
   ================================================================ */
.discord-section { background: var(--bg-primary); }
.discord-section__card {
    position: relative; padding: 4rem 3rem;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.02));
    border: 1px solid rgba(88, 101, 242, 0.15);
    text-align: center; overflow: hidden;
}
.discord-section__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.discord-section__orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.3;
}
.discord-section__orb--1 { width: 300px; height: 300px; top: -100px; right: -100px; background: #5865F2; }
.discord-section__orb--2 { width: 250px; height: 250px; bottom: -100px; left: -100px; background: #7C3AED; }
.discord-section__content { position: relative; z-index: 1; }
.discord-section__icon { font-size: 3rem; color: #5865F2; margin-bottom: 1.5rem; }
.discord-section__title { font-size: 2rem; margin-bottom: 0.75rem; }
.discord-section__desc { color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; }
.discord-section__stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2rem; }
.discord-section__stat { text-align: center; }
.discord-section__stat-value {
    display: block; font-size: 1.8rem; font-weight: 800;
    font-family: var(--font-mono); color: var(--text-primary);
}
.discord-section__stat-value--online { color: var(--success); }
.discord-section__stat-label { font-size: 0.8rem; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; }

/* ================================================================
   BLOG PREVIEW
   ================================================================ */
.blog-preview { background: var(--bg-section); }
.blog-preview__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.blog-card {
    border-radius: var(--radius-xl); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all var(--duration-normal) var(--ease-out);
}
.blog-card:hover { border-color: rgba(var(--primary-rgb), 0.15); transform: translateY(-4px); }
.blog-card__cover {
    position: relative; aspect-ratio: 16/9;
    background: rgba(var(--primary-rgb), 0.03); overflow: hidden;
}
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__cover img { transform: scale(1.05); }
.blog-card__cover-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: rgba(var(--primary-rgb), 0.15);
}
.blog-card__category {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: var(--radius-full);
    background: rgba(var(--primary-rgb), 0.15); backdrop-filter: blur(10px);
    color: var(--primary); font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase;
}
.blog-card__body { padding: 1.25rem; }
.blog-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card__excerpt { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1rem; }
.blog-card__footer {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--text-muted);
}
.blog-card__footer i { margin-right: 4px; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta { background: var(--bg-primary); }
.cta__card {
    position: relative; padding: 5rem 3rem;
    border-radius: var(--radius-2xl);
    background: var(--bg-card); border: 1px solid var(--border);
    text-align: center; overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta__orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; }
.cta__orb--1 { width: 400px; height: 400px; top: -200px; left: -100px; background: var(--primary); }
.cta__orb--2 { width: 350px; height: 350px; bottom: -150px; right: -100px; background: var(--accent); }
.cta__orb--3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--secondary); }
.cta__title { position: relative; z-index: 1; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta__desc { position: relative; z-index: 1; color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta__actions { position: relative; z-index: 1; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    position: relative; padding: 5rem 0 2rem;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.footer__glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 400px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}
.footer__top {
    display: grid; grid-template-columns: 1.3fr 2fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer__logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer__desc { color: var(--text-tertiary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 320px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
    width: 38px; height: 38px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-tertiary); font-size: 0.9rem;
    transition: all 0.2s;
}
.footer__social:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
}

.footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer__col-title {
    font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a {
    color: var(--text-tertiary); font-size: 0.88rem;
    transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--primary); }

.footer__newsletter-desc { color: var(--text-tertiary); font-size: 0.82rem; margin-bottom: 0.75rem; }
.footer__newsletter { display: flex; gap: 8px; }
.footer__newsletter-input {
    flex: 1; padding: 10px 14px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    color: var(--text-primary); font-size: 0.85rem;
    outline: none; transition: border-color 0.3s;
}
.footer__newsletter-input:focus { border-color: var(--primary); }
.footer__newsletter-input::placeholder { color: var(--text-muted); }

.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem; border-top: 1px solid var(--border);
    font-size: 0.82rem; color: var(--text-muted);
}
.footer__badges { display: flex; gap: 1.5rem; }
.footer__badge { display: flex; align-items: center; gap: 6px; }
.footer__badge i { color: var(--primary); font-size: 0.75rem; }

@media (max-width: 1024px) {
    .footer__top { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .footer__links { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer__badges { flex-wrap: wrap; justify-content: center; }
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--text-secondary); font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 900; opacity: 0; visibility: hidden;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }

/* ================================================================
   TOAST
   ================================================================ */
.toast-container {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 99999; display: flex; flex-direction: column; gap: 8px;
}
.toast {
    padding: 12px 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-primary); font-size: 0.88rem;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    animation: toastIn 0.4s var(--ease-spring);
}
.toast--success { border-color: rgba(var(--success-rgb), 0.3); }
.toast--success i { color: var(--success); }
.toast--error { border-color: rgba(var(--danger-rgb), 0.3); }
.toast--error i { color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   UTILITY ANIMATIONS
   ================================================================ */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-rotate { animation: rotate 10s linear infinite; }
