/* ==========================================
   OCEAN BLUE THEME - JonnySpinz
   ========================================== */

:root {
    /* Ocean Blue Color Palette */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent-cyan: #22d3ee;
    --accent-teal: #14b8a6;
    --accent-gold: #fbbf24;

    /* Background Colors */
    --bg-dark: #020617;
    --bg-sidebar: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(15, 23, 42, 0.8);

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Gradients */
    --main-gradient: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #14b8a6 100%);
    --glow-color: rgba(14, 165, 233, 0.4);

    /* Layout */
    --sidebar-width: 280px;

    /* Font */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition: all 0.25s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   BACKGROUND EFFECTS
   ========================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        /* Grid pattern */
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        /* Floating orb top-left */
        radial-gradient(ellipse 500px 500px at 10% 15%, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
        /* Floating orb bottom-right */
        radial-gradient(ellipse 600px 400px at 85% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 70%),
        /* Center subtle glow */
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(34, 211, 238, 0.04) 0%, transparent 70%);
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

.main-content,
.sidebar {
    position: relative;
    z-index: 1;
}

/* ==========================================
   MOBILE HEADER
   ========================================== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.menu-toggle {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
}

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid rgba(14, 165, 233, 0.08);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2rem 1.5rem;
}

/* Sidebar Profile */
.sidebar-profile {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    margin-bottom: 2rem;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.sidebar-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-sidebar), var(--bg-sidebar)) padding-box,
                var(--main-gradient) border-box;
    transition: var(--transition-slow);
}

.sidebar-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--glow-color);
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 3px solid var(--bg-sidebar);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.sidebar-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.sidebar-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.highlight {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   SIDEBAR NAVIGATION - FIXED ANIMATIONS
   ========================================== */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: transform 0.2s ease;
}

/* Hover State */
.nav-item:hover {
    color: var(--text-primary);
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.15);
}

.nav-item:hover i {
    transform: scale(1.1);
}

/* Active State */
.nav-item.active {
    color: white;
    background: var(--main-gradient);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-color);
}

.nav-item.active i {
    transform: scale(1.1);
}

/* Click/Active Effect */
.nav-item:active {
    transform: scale(0.98);
}

/* ==========================================
   SIDEBAR SOCIAL - IMPROVED
   ========================================== */
.sidebar-social {
    margin-bottom: 2rem;
}

.social-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    color: var(--text-secondary);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-item:hover {
    color: white;
    transform: translateY(-2px);
}

.social-item.twitch:hover {
    background: rgba(145, 70, 255, 0.15);
    border-color: rgba(145, 70, 255, 0.4);
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.25);
}

.social-item.instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
}

.social-item.telegram:hover {
    background: rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.4);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.25);
}

.social-item.discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.25);
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.08);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid var(--accent-gold);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.sidebar-footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.section {
    padding: 4rem 3rem;
}

/* ==========================================
   HERO SECTION WITH BANNER
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Banner Container */
.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Banner Image */
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.35;
    filter: saturate(1.1) contrast(1.05);
    animation: bannerZoom 25s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Banner Overlay - Multi-layer gradient */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Top vignette */
        linear-gradient(180deg, rgba(2, 6, 23, 0.6) 0%, transparent 30%),
        /* Bottom fade to dark */
        linear-gradient(0deg, var(--bg-dark) 0%, rgba(2, 6, 23, 0.8) 20%, transparent 50%),
        /* Left content area darken */
        linear-gradient(90deg, rgba(2, 6, 23, 0.7) 0%, transparent 60%),
        /* Colored accents */
        radial-gradient(ellipse at 20% 30%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
}

/* Banner Glow Effect */
.banner-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: bannerGlowPulse 4s ease-in-out infinite;
}

@keyframes bannerGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Legacy support */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.7) 0%, var(--bg-dark) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge i {
    font-size: 0.7rem;
    animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(14, 165, 233, 0.15);
    }
}

@keyframes liveDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--main-gradient);
    color: white;
    box-shadow: 0 4px 20px var(--glow-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-color);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Glow Button Enhancement */
.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 4px 20px var(--glow-color);
    }
    50% {
        box-shadow: 0 4px 35px var(--glow-color), 0 0 60px rgba(14, 165, 233, 0.3);
    }
}

.btn-secondary {
    background: rgba(14, 165, 233, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.25);
    transform: translateY(-2px);
}

.stat-card i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
    background: linear-gradient(180deg, transparent 0%, rgba(14, 165, 233, 0.02) 50%, transparent 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Card - Vertical premium layout */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid rgba(14, 165, 233, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Top accent bar */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--main-gradient);
    transition: height 0.3s ease;
    z-index: 2;
}

/* Hover shimmer line */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(14, 165, 233, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.08);
}

.card:hover::before {
    height: 4px;
}

.card:hover::after {
    opacity: 1;
}

/* Badge */
.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-light);
    border-left: 1px solid rgba(14, 165, 233, 0.2);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    z-index: 2;
}

.card-badge.hot {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    border: none;
}

/* Logo area */
.card-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(14, 165, 233, 0.06);
}

.card-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.05);
    transition: filter 0.3s ease;
}

.card:hover .card-logo {
    filter: brightness(1.15);
}

/* Content area - right column */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-card {
    max-width: 100%;
    padding: 0;
    text-align: left;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    padding: 1rem 1rem 0 1rem;
}

.bonus-text {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    padding: 0 1rem;
}

.features {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    background: none;
    padding: 0 1rem;
    border-top: 1px solid rgba(14, 165, 233, 0.06);
    padding-top: 0.6rem;
    padding-bottom: 0;
}

.features li {
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li:last-child {
    margin-bottom: 0;
}

.features li i {
    color: var(--accent-teal);
    font-size: 0.75rem;
}

.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--main-gradient);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-button:hover {
    box-shadow: 0 -4px 25px var(--glow-color);
}

/* ==========================================
   CONTACT SECTION - IMPROVED LAYOUT
   ========================================== */
.contact-section {
    padding: 5rem 3rem;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 165, 233, 0.03) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--main-gradient);
}

.contact-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-gradient);
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px var(--glow-color);
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-email i {
    font-size: 0.9rem;
}

.contact-email:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--glow-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    padding: 2rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(14, 165, 233, 0.08);
    background: rgba(2, 6, 23, 0.5);
}

.main-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-warning i {
    color: var(--accent-gold);
}

/* ==========================================
   SIDEBAR OVERLAY (Mobile)
   ========================================== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 260px;
    }

    .section {
        padding: 3rem 2rem;
    }

    .contact-card {
        padding: 2.5rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-overlay {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
        padding: 1.5rem 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    /* Banner Mobile - Ausgeblendet */
    .hero-banner {
        display: none;
    }

    .banner-glow {
        display: none;
    }

    .hero-section {
        background: var(--bg-dark);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }

    .stat-card {
        flex: 1;
        min-width: 90px;
        justify-content: center;
        padding: 0.75rem 0.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card-logo-wrapper {
        padding: 1.25rem;
    }

    .card-logo {
        max-width: 200px;
    }

    .card h3 {
        font-size: 1.2rem;
        padding: 1.25rem 1.25rem 0;
    }

    .bonus-text {
        font-size: 0.95rem;
        padding: 0 1.25rem;
    }

    .features {
        padding: 0.8rem 1.25rem;
    }

    .features li {
        font-size: 0.85rem;
    }

    .card-button {
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    /* Contact Card Mobile */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-icon {
        margin: 0 auto;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-email {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    /* Section Header Mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 1.5rem 1rem;
    }

    .main-footer p {
        font-size: 0.8rem;
    }

    .footer-warning {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0.75rem;
    }

    .hero-section {
        padding: 1rem 0.75rem;
        padding-top: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }

    .stats-row {
        gap: 0.4rem;
    }

    .stat-card {
        padding: 0.6rem 0.4rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .stat-card i {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Partner Card Small Mobile */
    .card-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.8rem;
    }

    .card h3 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0;
    }

    .bonus-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .features {
        padding: 0.7rem 1rem;
    }

    .features li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .card-button {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    /* Contact Small Mobile */
    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-email {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }

    /* Footer Small Mobile */
    .footer-warning {
        font-size: 0.7rem;
    }
}

/* Extra Small Devices (320px - 360px) */
@media (max-width: 360px) {
    .mobile-header {
        padding: 0 0.75rem;
    }

    .mobile-logo {
        font-size: 0.95rem;
    }

    .mobile-avatar {
        width: 32px;
        height: 32px;
    }

    .section {
        padding: 1.25rem 0.5rem;
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .stat-card {
        min-width: 70px;
        padding: 0.5rem 0.3rem;
    }

    .stat-card i {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .card-logo-wrapper {
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--main-gradient);
}

/* ==========================================
   SELECTION
   ========================================== */
::selection {
    background: rgba(14, 165, 233, 0.3);
    color: var(--text-primary);
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    z-index: 9999;
    padding: 1rem 1.5rem;
    background: var(--main-gradient);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}
