/* Neon Luxury Theme - Modern Agency Design */

/* removed import */

/* CSS Variables */
:root {
    /* Colors - Bright Neon Theme */
    --color-bg-dark: #0a0118;
    --color-bg-purple: #1a0033;
    --color-bg-pantone-white: #F4F5F1;
    --color-accent-pink: #ff4cf0;
    --color-accent-yellow: #ffd21c;
    --color-accent-teal: #00ffc6;
    --color-accent-blue: #3b82f6;
    --color-accent-orange: #f97316;
    --color-accent-purple: #a855f7;
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0d4f7;
    --color-text-muted: #9d8bb3;

    /* Glass Effect */
    --glass-bg: rgba(45, 10, 78, 0.4);
    --glass-border: rgba(255, 76, 240, 0.3);
    --glass-blur: blur(10px);

    /* Glow Effects */
    --glow-pink: 0 0 30px rgba(255, 76, 240, 0.6);
    --glow-yellow: 0 0 30px rgba(255, 210, 28, 0.6);
    --glow-teal: 0 0 30px rgba(0, 255, 198, 0.6);
    --glow-blue: 0 0 30px rgba(59, 130, 246, 0.6);
    --glow-purple: 0 0 30px rgba(168, 85, 247, 0.6);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Theme-specific Button Gradient (Default: Neon Luxury) */
    --btn-primary-gradient: linear-gradient(135deg,
            var(--color-bg-purple) 0%,
            var(--color-accent-purple) 50%,
            var(--color-accent-pink) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-pantone-white);
    color: var(--color-text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 76, 240, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}




/* ========== AVANT-GARDE BUTTON STYLES ========== */

/* Base Button Structure */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    /* Pill shape for modern look */
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: 200% auto;
}

/* Primary Button - Neon Gradient */
.btn-primary {
    background-image: var(--btn-primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 76, 240, 0.6);
    /* Use defined glow var if possible */
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

/* Secondary Button - Glassmorphism */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle glass */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-yellow);
    color: var(--color-accent-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Info Button - Teal Glow (Game History) */
.btn-info {
    background: rgba(0, 255, 198, 0.1);
    border: 1px solid rgba(0, 255, 198, 0.3);
    color: var(--color-accent-teal);
}

.btn-info:hover {
    background: rgba(0, 255, 198, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 198, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Danger Button - Red/Orange Warning */
.btn-danger {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--color-accent-orange);
}

.btn-danger:hover {
    background: rgba(249, 115, 22, 0.2);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Small Button Variant */
.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
    min-height: 36px;
    /* Ensure clickable */
}

/* Disabled State */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    filter: grayscale(100%);
}

/* Ripple effect container (optional if JS added later, style prep) */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}