/* ════════════════════════════════════════════════════════════
   MODERN UI — Ultra-Compact, Mobile-First, Animated Design
   Deutsch Satzspiel 2.0
   Updated: 2026-02-16
   ════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
    --ui-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono-font: 'JetBrains Mono', 'Fira Code', monospace;

    /* Core palette */
    --bg-deep: #050a15;
    --bg-card: rgba(12, 18, 35, 0.65);
    --bg-card-hover: rgba(20, 28, 50, 0.75);

    /* Neon accents */
    --neon-purple: #38bdf8;
    --neon-blue: #6366f1;
    --neon-cyan: #22d3ee;
    --neon-green: #10b981;
    --neon-pink: #ec4899;
    --neon-orange: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #38bdf8 50%, #ec4899 100%);
    --gradient-card: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.4));
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.08));

    /* Glass */
    --glass-bg: rgba(15, 23, 42, 0.55);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: 20px;

    /* Glow */
    --glow-sm: 0 0 15px rgba(99, 102, 241, 0.1);
    --glow-md: 0 0 30px rgba(99, 102, 241, 0.15);
    --glow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);

    /* Spacing */
    --space-xs: 0.375rem;
    --space-sm: 0.625rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Timing */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.35s var(--ease-out);
}

/* ═══════════════════════════════════════
   BASE RESET & BODY
   ═══════════════════════════════════════ */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--ui-font) !important;
    background: var(--bg-deep) !important;
    color: #e2e8f0;
    position: relative;
    overflow-x: hidden;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
}

/* ─── Animated Mesh Background ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 15% 10%, rgba(99, 102, 241, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 70% at 85% 80%, rgba(168, 85, 247, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(34, 211, 238, 0.06), transparent 60%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

/* ─── Floating Particles ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(1px 1px at 45% 15%, rgba(168, 85, 247, 0.2), transparent),
        radial-gradient(1.5px 1.5px at 75% 35%, rgba(34, 211, 238, 0.25), transparent),
        radial-gradient(1px 1px at 25% 65%, rgba(236, 72, 153, 0.15), transparent),
        radial-gradient(1.5px 1.5px at 85% 75%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(1px 1px at 55% 85%, rgba(168, 85, 247, 0.18), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(34, 211, 238, 0.12), transparent),
        radial-gradient(1.5px 1.5px at 65% 55%, rgba(236, 72, 153, 0.1), transparent);
    animation: starTwinkle 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    100% {
        filter: hue-rotate(12deg) brightness(1.05);
    }
}

@keyframes starTwinkle {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.6;
    }
}

/* ═══════════════════════════════════════
   CONTAINER — Mobile Compact
   ═══════════════════════════════════════ */
.container {
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 12px !important;
    width: 100% !important;
}

/* ═══════════════════════════════════════
   HEADER — Compact Holographic
   ═══════════════════════════════════════ */
.header {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(var(--glass-blur)) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.6) !important;
    border-radius: var(--radius-lg) !important;
    padding: 20px 16px 16px !important;
    margin-bottom: 10px !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Top accent gradient bar */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

/* Floating orb decoration */
.header::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    top: -40px;
    right: -30px;
    animation: orbFloat 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes shimmerBar {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15px, 15px) scale(1.2);
    }
}

.header h1 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    background: linear-gradient(135deg, #c084fc 0%, #818cf8 40%, #60a5fa 70%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: none !important;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.header p {
    color: rgba(148, 163, 184, 0.8) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   TOOLBAR — Floating Compact Command Bar
   ═══════════════════════════════════════ */
.top-toolbar {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(var(--glass-blur)) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.5) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50px !important;
    padding: 5px 6px !important;
    position: absolute !important;
    top: 22px !important;
    right: 22px !important;
    z-index: 100 !important;
    display: flex !important;
    gap: 4px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.toolbar-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #94a3b8 !important;
    font-size: 1rem !important;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.toolbar-btn:hover {
    background: rgba(99, 102, 241, 0.15) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    color: #c084fc !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.toolbar-btn:active {
    transform: scale(0.92);
}

/* ═══════════════════════════════════════
   MODE CARDS — Compact Glass Grid
   ═══════════════════════════════════════ */
.game-mode {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
}

.mode-card {
    border-radius: var(--radius-md) !important;
    padding: 20px 16px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none !important;
}

/* 🧩 Sürükle-Bırak — İndigo/Mor */
.mode-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.15)) !important;
    border: 1.5px solid rgba(99, 102, 241, 0.35) !important;
    box-shadow:
        0 4px 15px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.mode-card:nth-child(1):hover {
    transform: translateY(-4px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.25)) !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    box-shadow:
        0 8px 30px rgba(99, 102, 241, 0.3),
        0 0 25px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.mode-card:nth-child(1).selected,
.mode-card:nth-child(1).active {
    background: linear-gradient(135deg, #6366f1, #0ea5e9) !important;
    border-color: transparent !important;
    box-shadow:
        0 6px 25px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* 🎯 Çoktan Seçmeli — Amber/Kırmızı */
.mode-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(239, 68, 68, 0.15)) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
    box-shadow:
        0 4px 15px rgba(245, 158, 11, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.mode-card:nth-child(2):hover {
    transform: translateY(-4px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(239, 68, 68, 0.25)) !important;
    border-color: rgba(245, 158, 11, 0.6) !important;
    box-shadow:
        0 8px 30px rgba(245, 158, 11, 0.3),
        0 0 25px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.mode-card:nth-child(2).selected,
.mode-card:nth-child(2).active {
    background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
    border-color: transparent !important;
    box-shadow:
        0 6px 25px rgba(245, 158, 11, 0.5),
        0 0 30px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Shine animasyonu */
.mode-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    animation: btnShine 5s ease-in-out infinite;
    z-index: 0;
}

.mode-card:active {
    transform: translateY(0) scale(0.97) !important;
}

.mode-card h3 {
    font-size: 1.1rem !important;
    font-weight: 800;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mode-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   DIFFICULTY CARDS — Renkli Cam Kartlar
   ═══════════════════════════════════════ */
.difficulty {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.diff-card {
    border-radius: var(--radius-md) !important;
    padding: 20px 16px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none !important;
}

/* 😊 Kolay — Yeşil/Teal */
.diff-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.15)) !important;
    border: 1.5px solid rgba(16, 185, 129, 0.35) !important;
    box-shadow:
        0 4px 15px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.diff-card:nth-child(1):hover {
    transform: translateY(-4px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(6, 182, 212, 0.25)) !important;
    border-color: rgba(16, 185, 129, 0.6) !important;
    box-shadow:
        0 8px 30px rgba(16, 185, 129, 0.3),
        0 0 25px rgba(6, 182, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.diff-card:nth-child(1).selected,
.diff-card:nth-child(1).active {
    background: linear-gradient(135deg, #10b981, #06b6d4) !important;
    border-color: transparent !important;
    box-shadow:
        0 6px 25px rgba(16, 185, 129, 0.5),
        0 0 30px rgba(6, 182, 212, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* 🔥 Zor — Kırmızı/Pembe */
.diff-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(236, 72, 153, 0.15)) !important;
    border: 1.5px solid rgba(239, 68, 68, 0.35) !important;
    box-shadow:
        0 4px 15px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.diff-card:nth-child(2):hover {
    transform: translateY(-4px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(236, 72, 153, 0.25)) !important;
    border-color: rgba(239, 68, 68, 0.6) !important;
    box-shadow:
        0 8px 30px rgba(239, 68, 68, 0.3),
        0 0 25px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.diff-card:nth-child(2).selected,
.diff-card:nth-child(2).active {
    background: linear-gradient(135deg, #ef4444, #ec4899) !important;
    border-color: transparent !important;
    box-shadow:
        0 6px 25px rgba(239, 68, 68, 0.5),
        0 0 30px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Shine animasyonu */
.diff-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
    animation: btnShine 6s ease-in-out infinite;
    z-index: 0;
}

.diff-card:active {
    transform: translateY(0) scale(0.97) !important;
}

.diff-card h3 {
    font-size: 1.1rem !important;
    font-weight: 800;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.diff-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem !important;
    margin: 0 !important;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   START BUTTON — Neon Pulse CTA
   ═══════════════════════════════════════ */
.start-btn {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 25px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    margin: 0 auto 10px !important;
    display: block !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    font-family: var(--ui-font) !important;
    width: 100%;
    max-width: 320px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 4px 40px rgba(99, 102, 241, 0.55), 0 0 60px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* Rotating shine effect */
.start-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 0deg, rgba(255, 255, 255, 0.06) 90deg, transparent 180deg);
    animation: rotateSweep 4s linear infinite;
    pointer-events: none;
}

@keyframes rotateSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.start-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.5), 0 0 60px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    animation: none;
}

.start-btn:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 0 2px 15px rgba(99, 102, 241, 0.3) !important;
}

/* ═══════════════════════════════════════
   ACTION BUTTONS (below start)
   ═══════════════════════════════════════ */
#miniGamesBtn,
#advancedSettingsBtn {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-family: var(--ui-font) !important;
    font-size: 0.82rem !important;
    font-weight: 600;
    color: #94a3b8 !important;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    margin: 0 4px !important;
    width: auto !important;
}

#miniGamesBtn:hover,
#advancedSettingsBtn:hover {
    background: rgba(99, 102, 241, 0.12) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    color: #c084fc !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#miniGamesBtn:active,
#advancedSettingsBtn:active {
    transform: scale(0.96);
}

/* Container for action buttons */
#menu {
    text-align: center;
}

/* ═══════════════════════════════════════
   GAME AREA — Deep Glass
   ═══════════════════════════════════════ */
.game-area {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 16px !important;
    box-shadow: var(--glow-lg) !important;
    position: relative;
    overflow: hidden;
}

.game-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

/* ═══════════════════════════════════════
   WORDS — Neon Tags
   ═══════════════════════════════════════ */
.word {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 14px !important;
    font-family: var(--ui-font) !important;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
    letter-spacing: 0.3px;
}

.word:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.word:active {
    transform: scale(0.95) !important;
}

/* ═══════════════════════════════════════
   ANSWER AREA — Glow Zone
   ═══════════════════════════════════════ */
.answer-area,
.drop-zone {
    background: rgba(99, 102, 241, 0.04) !important;
    border: 2px dashed rgba(99, 102, 241, 0.2) !important;
    border-radius: var(--radius-md) !important;
    min-height: 60px;
    transition: all var(--transition-normal);
}

.answer-area:hover,
.drop-zone:hover {
    border-color: rgba(99, 102, 241, 0.35) !important;
    background: rgba(99, 102, 241, 0.06) !important;
}

/* ═══════════════════════════════════════
   BUTTONS — Modern Glass
   ═══════════════════════════════════════ */
.btn {
    font-family: var(--ui-font) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4) !important;
}

.btn-secondary {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    color: #94a3b8 !important;
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    color: #c084fc !important;
}

.btn-accent {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15)) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    color: #f0abfc !important;
}

.btn-accent:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(168, 85, 247, 0.25)) !important;
    border-color: rgba(236, 72, 153, 0.4) !important;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   HINTS — Compact Glass
   ═══════════════════════════════════════ */
.hint-btn {
    background: rgba(245, 158, 11, 0.1) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    color: #fbbf24 !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hint-btn:hover {
    background: rgba(245, 158, 11, 0.18) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.hint-area {
    position: absolute !important;
    z-index: 1000 !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 450px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    border-radius: var(--radius-md) !important;
    padding: 16px !important;
    margin-top: 15px !important;
    pointer-events: auto !important;
}

.hint-area::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(245, 158, 11, 0.4);
}

/* ═══════════════════════════════════════
   SCORE — Compact Badge
   ═══════════════════════════════════════ */
#score {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-sm) !important;
    padding: 6px 12px !important;
    font-family: var(--mono-font) !important;
    font-size: 0.85rem !important;
    color: #10b981;
}

/* ═══════════════════════════════════════
   MODALS / DEPRECATED
   ═══════════════════════════════════════ */
.modal {
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--glow-lg) !important;
}

/* ═══════════════════════════════════════
   STATS PANEL
   ═══════════════════════════════════════ */
.stats-panel,
#floatingStats {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--glow-lg) !important;
}

/* ═══════════════════════════════════════
   ENTRANCE ANIMATIONS
   ═══════════════════════════════════════ */
.header {
    animation: slideUp 0.6s var(--ease-out) both;
}

.mode-card {
    animation: slideUp 0.6s var(--ease-out) both;
}

.mode-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mode-card:nth-child(2) {
    animation-delay: 0.18s;
}

.diff-card {
    animation: slideUp 0.6s var(--ease-out) both;
}

.diff-card:nth-child(1) {
    animation-delay: 0.25s;
}

.diff-card:nth-child(2) {
    animation-delay: 0.33s;
}

.start-btn {
    animation: slideUp 0.6s var(--ease-out) 0.4s both, pulseGlow 2.5s ease-in-out 1s infinite;
}

#miniGamesBtn {
    animation: slideUp 0.5s var(--ease-out) 0.5s both;
}

#advancedSettingsBtn {
    animation: slideUp 0.5s var(--ease-out) 0.55s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
   QUESTION AREA
   ═══════════════════════════════════════ */
.question {
    background: rgba(15, 23, 42, 0.4) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px !important;
    position: relative !important;
}

.question h3 {
    font-family: var(--ui-font) !important;
    font-weight: 700;
    color: #c084fc;
    font-size: 0.95rem !important;
    margin-bottom: 8px;
}

.question p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   COLOR LEGEND
   ═══════════════════════════════════════ */
.color-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.color-item {
    font-size: 0.72rem !important;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════
   SCROLLBAR — Slim Neon
   ═══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (520px+)
   ═══════════════════════════════════════ */
@media (min-width: 520px) {
    .container {
        max-width: 560px !important;
        padding: 20px !important;
    }

    .header h1 {
        font-size: 2.2rem !important;
    }

    .header {
        padding: 28px 24px 22px !important;
    }

    .mode-card,
    .diff-card {
        padding: 18px 16px !important;
    }

    .mode-card h3,
    .diff-card h3 {
        font-size: 1.1rem !important;
    }

    .mode-card p,
    .diff-card p {
        font-size: 0.8rem !important;
    }

    .start-btn {
        padding: 16px 44px !important;
        font-size: 1.1rem !important;
        max-width: 360px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet Landscape (768px+)
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
    .container {
        max-width: 720px !important;
        padding: 28px !important;
    }

    .header {
        padding: 32px 30px 26px !important;
        margin-bottom: 16px !important;
        border-radius: var(--radius-xl) !important;
    }

    .header h1 {
        font-size: 2.6rem !important;
        letter-spacing: -1px;
    }

    .header p {
        font-size: 0.85rem !important;
        letter-spacing: 2px;
    }

    .header::after {
        width: 180px;
        height: 180px;
    }

    .game-mode,
    .difficulty {
        gap: 16px !important;
        margin-bottom: 14px !important;
    }

    .mode-card,
    .diff-card {
        padding: 22px 18px !important;
        border-radius: var(--radius-lg) !important;
    }

    .mode-card h3,
    .diff-card h3 {
        font-size: 1.15rem !important;
    }

    .mode-card p,
    .diff-card p {
        font-size: 0.82rem !important;
    }

    .start-btn {
        padding: 18px 52px !important;
        font-size: 1.15rem !important;
        max-width: 400px;
    }

    #miniGamesBtn,
    #advancedSettingsBtn {
        padding: 12px 24px !important;
        font-size: 0.88rem !important;
    }

    .game-area {
        padding: 24px !important;
        border-radius: var(--radius-xl) !important;
    }

    .word {
        padding: 10px 18px !important;
        font-size: 0.95rem;
    }

    .question {
        padding: 20px !important;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   PREMIUM WIDE LAYOUT
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {

    /* ─── Wide Container ─── */
    .container {
        max-width: 1100px !important;
        padding: 32px 40px !important;
    }

    /* ─── Layout Grid (Sidebar Left, Game Right) ─── */
    .game-layout {
        display: grid !important;
        grid-template-columns: 300px 1fr !important;
        gap: 32px !important;
        align-items: start !important;
        margin-top: 24px;
    }

    /* ─── Extended Header ─── */
    .header {
        padding: 40px 36px 32px !important;
        margin-bottom: 32px !important;
        border-radius: 28px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: 1 / -1 !important;
        /* Header spans full width */
    }

    .header h1 {
        font-size: 3rem !important;
        letter-spacing: -1.5px;
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
    }

    .header p {
        font-size: 0.9rem !important;
        letter-spacing: 3px;
        margin-top: 4px !important;
    }

    /* ─── Cards: Larger ─── */
    .game-mode,
    .difficulty {
        gap: 20px !important;
        margin-bottom: 24px !important;
    }

    .mode-card,
    .diff-card {
        padding: 28px 24px !important;
        border-radius: 24px !important;
        min-height: 110px;
    }

    .mode-card h3,
    .diff-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 6px !important;
    }

    /* ─── Sidebar — Desktop Sticky ─── */
    .game-sidebar {
        position: sticky !important;
        top: 24px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        height: fit-content !important;
    }

    .sidebar-card {
        padding: 20px !important;
        border-radius: 20px !important;
        margin-bottom: 16px !important;
        backdrop-filter: blur(20px) !important;
    }

    .progress-stat {
        padding: 16px !important;
    }

    .progress-stat .stat-value {
        font-size: 1.6rem;
    }

    /* ─── Game Main Area ─── */
    .game-main {
        width: 100% !important;
        min-width: 0;
        /* Prevent overflow */
    }

    .game-area {
        padding: 32px !important;
        border-radius: 28px !important;
        margin-top: 0 !important;
    }

    .question {
        padding: 28px !important;
        border-radius: 20px !important;
    }

    .question h3 {
        font-size: 1.2rem !important;
    }

    .word {
        padding: 12px 22px !important;
        font-size: 1.05rem;
        border-radius: 14px !important;
    }

    /* ─── Start Button ─── */
    .start-btn {
        padding: 22px 64px !important;
        font-size: 1.3rem !important;
        max-width: 480px;
        border-radius: 60px !important;
    }

    /* ─── Toolbar ─── */
    .top-toolbar {
        top: 32px !important;
        right: 40px !important;
        padding: 8px 10px !important;
        gap: 8px !important;
    }

    .toolbar-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Large Desktop (1440px+)
   ULTRA-WIDE EXPERIENCE
   ═══════════════════════════════════════ */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px !important;
        padding: 40px 60px !important;
    }

    .game-layout {
        gap: 48px !important;
        grid-template-columns: 340px 1fr !important;
    }

    .header h1 {
        font-size: 3.6rem !important;
    }

    .mode-card,
    .diff-card {
        padding: 36px 32px !important;
    }
}

/* ═══════════════════════════════════════
   SAFE AREA (iOS notch)
   ═══════════════════════════════════════ */
@supports (padding-top: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ═══════════════════════════════════════
   LANDSCAPE Override (compact)
   ═══════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 12px !important;
        margin-bottom: 8px !important;
    }

    .header h1 {
        font-size: 1.4rem !important;
    }

    .mode-card,
    .diff-card {
        padding: 10px 8px !important;
    }

    .start-btn {
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
    }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ═══════════════════════════════════════
   DARK MODE OVERRIDES (force consistent)
   ═══════════════════════════════════════ */
@media (prefers-color-scheme: light) {
    body {
        background: var(--bg-deep) !important;
    }
}

/* ═══════════════════════════════════════
   SELECTION
   ═══════════════════════════════════════ */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #fff;
}

/* ═══════════════════════════════════════
   FOCUS VISIBLE (a11y)
   ═══════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--neon-purple);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════
   FLOATING ORB PARTICLES
   ═══════════════════════════════════════ */
.orb-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
    top: -80px;
    left: -60px;
    animation: orbDrift1 15s ease-in-out infinite alternate;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
    bottom: 10%;
    right: -50px;
    animation: orbDrift2 18s ease-in-out infinite alternate;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
    top: 50%;
    left: 30%;
    animation: orbDrift3 12s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.15);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

@keyframes orbDrift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, -40px) scale(1.2);
    }

    100% {
        transform: translate(30px, -20px) scale(0.95);
    }
}

@keyframes orbDrift3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-40px, 20px) scale(1.05);
    }
}

/* ═══════════════════════════════════════
   SETTINGS GEAR ROTATION
   ═══════════════════════════════════════ */
#settingsBtnDesktop:hover {
    transform: scale(1.1) rotate(90deg) !important;
    transition: transform 0.4s var(--ease-spring) !important;
}

/* ═══════════════════════════════════════
   GAME FOOTER — Compact Floating
   ═══════════════════════════════════════ */
.game-footer {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    padding: 8px 12px !important;
    margin-top: 10px;
}

.game-footer .score {
    font-family: var(--mono-font) !important;
    font-size: 0.8rem !important;
}

/* ═══════════════════════════════════════
   CONTROLS — Glass Buttons Row
   ═══════════════════════════════════════ */
.controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.controls .btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
}

/* ═══════════════════════════════════════
   FEEDBACK — Animated Glass Card
   ═══════════════════════════════════════ */
.feedback {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px !important;
    margin-top: 12px;
    animation: slideUp 0.3s var(--ease-out) both;
}

/* ═══════════════════════════════════════
   ERROR INDICATOR — Neon Red
   ═══════════════════════════════════════ */
.error-indicator {
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 14px !important;
    color: #f87171;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

/* ═══════════════════════════════════════
   SIDEBAR CARDS — Modern Glass Override
   ═══════════════════════════════════════ */
.game-sidebar {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
}

.sidebar-card {
    background: var(--gradient-card) !important;
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--glow-sm) !important;
    padding: 14px !important;
    margin-bottom: 10px;
}

.sidebar-card h4 {
    font-family: var(--ui-font) !important;
    font-size: 0.75rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(148, 163, 184, 0.7);
    margin-bottom: 10px !important;
}

.progress-stat {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: var(--radius-sm) !important;
    transition: all var(--transition-fast);
}

.progress-stat:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
}

.progress-stat .stat-value {
    font-family: var(--mono-font) !important;
}

.sidebar-xp-bar {
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px !important;
    height: 6px !important;
}

.sidebar-xp-bar .xp-fill {
    background: var(--gradient-primary) !important;
    border-radius: 20px !important;
}

.sidebar-rule-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: var(--radius-sm) !important;
    transition: all var(--transition-fast);
}

.sidebar-rule-item:hover {
    background: rgba(99, 102, 241, 0.06) !important;
    border-color: rgba(99, 102, 241, 0.12) !important;
}

/* ═══════════════════════════════════════
   WORD POOL & ANSWER AREA — Labels
   ═══════════════════════════════════════ */
.word-pool h4,
.answer-area h4 {
    color: rgba(148, 163, 184, 0.5) !important;
}

/* ═══════════════════════════════════════
   LANDING PAGE (Premium Animated)
   ═══════════════════════════════════════ */
.landing-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
}

.landing-content {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    width: 100%;
}

/* Landing CTA Button */
.landing-btn {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 300px;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
}

.landing-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    30% {
        transform: translateX(100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.landing-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5);
}

.landing-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Landing Info — now uses .info-tag children */
.landing-info {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   SETUP MENU (Wizard Style)
   ═══════════════════════════════════════ */
.setup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0f172a;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.setup-top-bar {
    padding: 2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-icon-back {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.btn-icon-back:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.setup-top-bar h2 {
    margin-left: 2rem;
    color: white;
    font-size: 1.5rem;
}

.setup-scroll-area {
    flex: 1;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.setup-group {
    margin-bottom: 3rem;
}

.setup-group h3 {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* Level Pills */
.pill-selector {
    display: flex;
    gap: 1rem;
    background: #1e293b;
    padding: 0.5rem;
    border-radius: 16px;
    max-width: 400px;
    /* Sınırla */
}

.pill-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.pill-btn.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Grid Layouts for Setup */
.game-mode,
.difficulty {
    display: grid !important;
    /* Force grid override */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
}

/* Büyük Başlat Butonu */
.start-btn-large {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.2s;
    margin: 0 auto;
    /* block element */
    display: block;
}

.start-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.setup-actions {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.setup-secondary-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ═══ Setup Secondary Buttons (Mini Oyunlar + Gelişmiş Ayarlar) ═══ */
.setup-secondary-actions .btn-link {
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.setup-secondary-actions .btn-link::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    animation: btnShine 4s ease-in-out infinite;
}

.setup-secondary-actions .btn-link:active {
    transform: translateY(-1px) scale(0.97);
}

/* 🎯 Mini Games — Turuncu/Pembe/Kırmızı */
.setup-secondary-actions .btn-link#miniGamesBtn {
    background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
    color: white;
    box-shadow:
        0 4px 15px rgba(245, 158, 11, 0.4),
        0 0 20px rgba(239, 68, 68, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.setup-secondary-actions .btn-link#miniGamesBtn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(245, 158, 11, 0.5),
        0 0 40px rgba(239, 68, 68, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ⚙️ Gelişmiş Ayarlar — Cyan/Mavi/Mor */
.setup-secondary-actions .btn-link#advancedSettingsBtn {
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #0ea5e9);
    color: white;
    box-shadow:
        0 4px 15px rgba(59, 130, 246, 0.4),
        0 0 20px rgba(6, 182, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.setup-secondary-actions .btn-link#advancedSettingsBtn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(59, 130, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}