:root {
    /* Golden Orange Color Palette (from logo) */
    --primary-color: #ffab39;
    --primary-hover: #ff9500;
    --accent-color: #ffc947;
    --accent-secondary: #ffb347;
    --text-color: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --bg-color: #1d1d20;
    --bg-secondary: #28282c;
    --bg-tertiary: #333338;
    --surface: #393940;
    --surface-hover: #3f3f46;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 171, 57, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(51, 51, 56, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #ffab39 0%, #ffc947 100%);
    --gradient-accent: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(135deg, #28282c 0%, #333338 100%);
    /* Animation Timings */
    --animation-slow: 1s;
    --animation-medium: 0.6s;
    --animation-fast: 0.3s;
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(255, 171, 57, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--gradient-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Modern button styles */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--animation-fast) cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.btn::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:hover::before {
    left: 100%;
}

.btn.primary {
    background: var(--gradient-primary);
    color: var(--bg-color);
    text-decoration: none;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border: 1px solid var(--border-hover);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 171, 57, 0.5);
}

.btn.secondary {
    background: var(--glass-bg);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(15px);
    text-decoration: none;
}

.btn.secondary:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

section {
    padding: 4rem 1rem;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: 10;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Modern card styles */
.card {
    background: rgba(51, 51, 56, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--animation-medium) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 171, 57, 0.3);
    background: rgba(51, 51, 56, 0.4);
}

/* Container styles */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-color);
}

/* Spacing utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animation classes */
.fade-in {
    animation: fadeIn var(--animation-medium) ease-in-out;
}

.slide-up {
    animation: slideUp var(--animation-medium) ease-out;
}

.slide-in-left {
    animation: slideInLeft var(--animation-medium) ease-out;
}

.slide-in-right {
    animation: slideInRight var(--animation-medium) ease-out;
}

.bounce {
    animation: bounce var(--animation-slow) ease infinite;
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hidden class for reveal animations */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--animation-medium) ease, 
                transform var(--animation-medium) ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-card, .game-card * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }
}