/**
 * Steel Canvas Studio - Website Styles
 * Professional CSS architecture with modular design system
 * @version 1.0.0
 * @author Steel Canvas Studio
 */

/* ==========================================================================
   1. CSS RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-color: #C0C0C0;        /* Steel Grey */
    --secondary-color: #2d2d2d;      /* Deep Grey */
    --accent-color: #ff6b47;         /* Orange */
    --background-dark: #000000;      /* Pure Black */
    --background-light: #1a1a1a;     /* Dark Grey */
    --text-primary: #e8e8e8;         /* Light Grey */
    --text-secondary: #A9A9A9;       /* Medium Grey */
    --text-muted: #696969;           /* Muted Grey */
    --border-color: #708090;         /* Slate Grey */
    --border-light: #444;            /* Light Border */
    
    /* Gradients */
    --gradient-primary: linear-gradient(45deg, #708090, #778899);
    --gradient-secondary: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2F4F4F 100%);
    
    /* Visual Flow System - Seamless Gradients */
    --gradient-flow-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #2d2d2d 75%, #1a1a1a 100%);
    --gradient-flow-light: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 25%, #3a3a3a 50%, #2d2d2d 75%, #1a1a1a 100%);
    --gradient-flow-accent: linear-gradient(180deg, #1a1a1a 0%, rgba(255, 107, 71, 0.1) 50%, #1a1a1a 100%);
    --gradient-flow-steel: linear-gradient(180deg, #1a1a1a 0%, rgba(192, 192, 192, 0.1) 50%, #1a1a1a 100%);
    
    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    --glass-backdrop: blur(10px);
    
    /* Animation Properties */
    --animation-duration: 0.6s;
    --animation-delay: 0.1s;
    --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-3xl: 4rem;       /* 64px */
    --space-4xl: 5rem;       /* 80px */
    --space-5xl: 6rem;       /* 96px */
    
    /* Typography Scale */
    --font-xs: 0.75rem;      /* 12px */
    --font-sm: 0.875rem;     /* 14px */
    --font-base: 1rem;       /* 16px */
    --font-lg: 1.125rem;     /* 18px */
    --font-xl: 1.25rem;      /* 20px */
    --font-2xl: 1.5rem;      /* 24px */
    --font-3xl: 1.875rem;    /* 30px */
    --font-4xl: 2.25rem;     /* 36px */
    --font-5xl: 3rem;        /* 48px */
    --font-6xl: 3.75rem;     /* 60px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(112, 128, 144, 0.3);
    --shadow-glow-hover: 0 0 30px rgba(112, 128, 144, 0.5);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   3. SCROLLBAR STYLING
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: #778899;
}

/* ==========================================================================
   4. BASE TYPOGRAPHY & BODY
   ========================================================================== */

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-flow-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    font-size: var(--font-base);
    font-weight: var(--font-normal);
    min-height: 100vh;
}

/* ==========================================================================
   5. UTILITY CLASSES
   ========================================================================== */

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }
.grid-auto-fit { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

/* Typography Utilities */
.text-xs { font-size: var(--font-xs); }
.text-sm { font-size: var(--font-sm); }
.text-base { font-size: var(--font-base); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }
.text-2xl { font-size: var(--font-2xl); }
.text-3xl { font-size: var(--font-3xl); }
.text-4xl { font-size: var(--font-4xl); }
.text-5xl { font-size: var(--font-5xl); }

.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }

/* Color Utilities */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-color); }

/* Background Utilities */
.bg-dark { background-color: var(--background-dark); }
.bg-light { background-color: var(--background-light); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Border Utilities */
.border { border: 1px solid var(--border-color); }
.border-light { border: 1px solid var(--border-light); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* Transition Utilities */
.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Visibility Utilities */
.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   6. COMPONENT BASE CLASSES
   ========================================================================== */

/* Card Component Base */
.card {
    background: var(--gradient-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Button Component Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 44px; /* Accessibility: minimum touch target */
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Badge Component Base */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: var(--font-sm);
    font-weight: var(--font-bold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--gradient-primary);
    color: #ffffff;
}

.badge-accent {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    color: #000000;
}

/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */

header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-fixed);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.3));
    transition: all var(--transition-base);
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.5));
    transform: scale(1.05);
}

.logo h1 {
    color: var(--primary-color);
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #A9A9A9;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #C0C0C0;
    background: rgba(112, 128, 144, 0.2);
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.3);
}

.nav-links a.active {
    color: #C0C0C0;
    background: rgba(112, 128, 144, 0.3);
    box-shadow: 0 0 20px rgba(112, 128, 144, 0.4);
    font-weight: 600;
}

/* ==========================================================================
   8. HERO SECTIONS
   ========================================================================== */

.hero {
    height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #C0C0C0;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #A9A9A9;
    font-weight: 400;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-bounce);
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(112, 128, 144, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.cta-button:hover::before {
    width: 120px;
    height: 120px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(112, 128, 144, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.about, .games, .contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Visual Flow System - Seamless Section Transitions */
.about {
    background: #2d2d2d;
    backdrop-filter: var(--glass-backdrop);
}

.games {
    background: #1a1a1a;
    backdrop-filter: var(--glass-backdrop);
}

.contact {
    background: #0a0a0a;
    backdrop-filter: var(--glass-backdrop);
}

/* Add flowing background elements */
.about::before,
.games::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    animation: breathe 6s ease-in-out infinite;
    z-index: 1;
}

.games::before {
    background: radial-gradient(ellipse at center, rgba(255, 107, 71, 0.03) 0%, transparent 70%);
    animation-delay: 2s;
}

.contact::before {
    background: radial-gradient(ellipse at center, rgba(192, 192, 192, 0.08) 0%, transparent 70%);
    animation-delay: 4s;
}

/* Ensure content is above background animations */
.about .container,
.games .container,
.contact .container {
    position: relative;
    z-index: 2;
}

.about h2, .games h2, .contact h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #C0C0C0;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #A9A9A9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.game-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid #444;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Make news cards clickable */
.news-card-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-card-clickable:hover {
    transform: translateY(-3px);
    border-color: #ff6b47;
    box-shadow: 0 8px 25px rgba(255, 107, 71, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #708090;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
}

.game-card.featured {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, #2F4F4F 0%, #4682B4 100%);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.5);
}

.game-card h3 {
    color: #C0C0C0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.release-date {
    color: #A9A9A9;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.game-card p {
    color: #A9A9A9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-links {
    margin-top: 2rem;
}

.game-button {
    display: inline-block;
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-bounce);
    margin: 0 8px;
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.3);
    position: relative;
    overflow: hidden;
}

.game-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.game-button:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(112, 128, 144, 0.6);
}

.game-button:hover::before {
    width: 100px;
    height: 100px;
}

.game-button:active {
    transform: translateY(-1px) scale(0.98);
}

.game-button.secondary {
    background: transparent;
    color: #C0C0C0;
    border: 1px solid #708090;
}

.game-button.secondary:hover {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    border-color: #C0C0C0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #708090;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    border-color: #C0C0C0;
    box-shadow: 0 10px 25px rgba(112, 128, 144, 0.3);
}

.contact-item h4 {
    color: #C0C0C0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item a {
    color: #A9A9A9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #C0C0C0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.contact > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #A9A9A9;
    text-align: center;
}

footer {
    background: #000000;
    padding: 3rem 0;
    border-top: 1px solid #708090;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

footer p {
    color: #696969;
    margin: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

footer a {
    color: #A9A9A9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
}

footer a:hover {
    color: #C0C0C0;
    background: rgba(112, 128, 144, 0.1);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

@media (max-width: 768px) {
    .footer-links {
        gap: 1rem;
    }
    
    footer a {
        font-size: 0.8rem;
    }
}

.copyright-page, .legal-page, .status-page, .docs-page, .cookies-page {
    padding-top: 100px;
    min-height: 100vh;
}

.copyright-content, .legal-content, .status-content, .docs-content, .cookies-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.copyright-content h1 {
    color: #C0C0C0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.copyright-content h2 {
    color: #C0C0C0;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.copyright-content p {
    color: #A9A9A9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.copyright-content a {
    color: #C0C0C0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.copyright-content a:hover {
    color: #ffffff;
    border-bottom-color: #C0C0C0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.copyright-notice {
    text-align: center;
    font-weight: 600;
    color: #C0C0C0 !important;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #708090;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid #708090;
    color: #C0C0C0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(192, 192, 192, 0.2);
    border-color: #C0C0C0;
    transform: scale(1.05);
}

.mobile-menu-btn:focus {
    outline: 2px solid #C0C0C0;
    outline-offset: 2px;
}

.mobile-nav-overlay {
    display: none;
}

.mobile-nav-menu {
    display: none; /* Hidden by default on desktop */
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    max-width: 90vw;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(10px);
    border: 2px solid #708090;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.mobile-nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-header {
    display: none; /* Hide the header for dropdown style */
}

.mobile-close-btn {
    display: none; /* Hide close button for dropdown style */
}

.mobile-nav-links {
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    color: #e8e8e8;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(112, 128, 144, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

.mobile-nav-links a:hover {
    color: #ff6b47;
    background: rgba(255, 107, 71, 0.1);
    transform: translateX(5px);
}

.mobile-nav-links a.active {
    color: #ff6b47;
    background: rgba(255, 107, 71, 0.15);
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        background: rgba(192, 192, 192, 0.1);
        border: 1px solid #708090;
        color: #C0C0C0;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: all 0.3s ease;
        z-index: 1001;
        position: relative;
        font-size: 1.5rem;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(192, 192, 192, 0.2);
        border-color: #C0C0C0;
        transform: scale(1.05);
    }
    
    .mobile-menu-btn:active {
        background: rgba(255, 107, 71, 0.3);
        border-color: #ff6b47;
        transform: scale(0.95);
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-menu {
        display: block; /* Show on mobile */
    }
    
    .mobile-nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .about, .games, .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-content, .legal-content, .status-content, .docs-content, .cookies-content {
        padding: 2rem 1rem;
    }
}

/* Games page specific styles */
.games-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2F4F4F 100%);
}

.games-hero::before {
    background: radial-gradient(circle at 30% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #708090;
    transition: all 0.3s ease;
    text-align: center;
}

.philosophy-item:hover {
    transform: translateY(-4px);
    border-color: #C0C0C0;
    box-shadow: 0 10px 25px rgba(112, 128, 144, 0.3);
}

.philosophy-item h4 {
    color: #C0C0C0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.philosophy-item p {
    color: #A9A9A9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact CTA styles */
.contact-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-card {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-backdrop);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-width: 500px;
    width: 100%;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    background: var(--glass-bg);
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(192, 192, 192, 0.2);
}

.contact-card h3 {
    color: #C0C0C0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.contact-card p {
    color: #A9A9A9;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(112, 128, 144, 0.3);
    margin-bottom: 1rem;
    min-width: 200px;
    justify-content: center;
}

.contact-button:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(112, 128, 144, 0.5);
    border-color: rgba(192, 192, 192, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-email {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-response {
    color: #696969 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* Fix text cutoff issues with proper padding for all pages */
main {
    padding-top: 90px; /* Account for fixed header height (nav padding + logo height + border) */
}

/* Hero sections need special handling to start from top but avoid cutoff */
.hero {
    margin-top: -90px; /* Negative margin to start from top */
    padding-top: 90px; /* Padding to prevent content cutoff */
}

/* Page-specific padding for non-hero sections */
.news-page,
.community-page,
.support-page,
.game-page,
.copyright-page,
.legal-page,
.status-page,
.docs-page,
.cookies-page {
    padding-top: 90px;
    min-height: calc(100vh - 90px);
}

/* Content sections that start immediately after header */
.news-header,
.community-header,
.support-header,
.game-header {
    padding-top: 2rem;
}

/* Ensure all main content areas have proper spacing */
.container {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for games page */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-item {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-button {
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 180px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Fix mobile text cutoff */
    main {
        padding-top: 80px; /* Slightly less on mobile due to smaller nav */
    }
    
    .hero {
        margin-top: -80px;
        padding-top: 80px;
    }
    
    /* Mobile padding for page-specific classes */
    .news-page,
    .community-page,
    .support-page,
    .game-page,
    .copyright-page,
    .legal-page,
    .status-page,
    .docs-page,
    .cookies-page {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
}

/* Modern News page styles */
.news-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2F4F4F 100%);
    padding: 6rem 0 4rem 0;
    margin-top: -90px;
    padding-top: calc(6rem + 90px);
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.news-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.news-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.news-hero h1 {
    color: #C0C0C0;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.news-hero-subtitle {
    color: #A9A9A9;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Story Section */
.featured-story {
    padding: 5rem 0 4rem 0;
    background: #000000;
}

.featured-story h2 {
    color: #C0C0C0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.featured-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid #708090;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
    transform: translateY(-4px);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192, 192, 192, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.featured-content {
    position: relative;
    z-index: 2;
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-badge.announcement {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
}

.category-badge.development {
    background: linear-gradient(45deg, #4682B4, #5F9EA0);
    color: #ffffff;
}

.category-badge.community {
    background: linear-gradient(45deg, #2F4F4F, #708090);
    color: #ffffff;
}

.featured-label {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-content h3 {
    color: #C0C0C0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #A9A9A9;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-excerpt {
    color: #A9A9A9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Pulse Animation - Disabled */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Global Hyperlink Styling */
a {
    color: #ff6b47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8a70;
}

a:visited {
    color: #C0C0C0;
}

/* Navigation links override */
.nav-links a, .mobile-nav-links a {
    color: #e8e8e8;
}

.nav-links a:hover, .mobile-nav-links a:hover {
    color: #ff6b47;
}

.nav-links a.active, .mobile-nav-links a.active {
    color: #ff6b47;
}

/* Enhanced Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    max-width: 100%;
}

.footer-links a {
    color: #A9A9A9;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    flex: 1;
    text-align: center;
    min-width: 80px;
}

.footer-links a:hover {
    color: #ff6b47;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b47;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 80%;
}

/* Clean Footer Section */
.clean-footer {
    background: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid #444;
}

.clean-footer .container {
    text-align: center;
}

.clean-footer h2 {
    color: #C0C0C0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.clean-footer p {
    color: #A9A9A9;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.clean-footer .copyright {
    color: #666;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

/* Background Effect Classes - Simplified */
.bg-effect-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bg-effect-radial {
    /* Disabled - was causing unwanted visual effects */
    display: none;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(112, 128, 144, 0.2);
    color: #C0C0C0;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(112, 128, 144, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(112, 128, 144, 0.3);
    border-color: #C0C0C0;
}

.read-more-btn {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 20px rgba(112, 128, 144, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(112, 128, 144, 0.5);
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-header h2 {
    color: #C0C0C0;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.news-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #708090;
    color: #A9A9A9;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    border-color: #C0C0C0;
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid #708090;
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 15px 35px rgba(112, 128, 144, 0.3);
    transform: translateY(-6px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 0 2rem;
}

.card-date {
    color: #A9A9A9;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-content {
    padding: 1rem 2rem 2rem 2rem;
}

.card-content h3 {
    color: #C0C0C0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-excerpt {
    color: #A9A9A9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(112, 128, 144, 0.2);
}

.read-time {
    color: #696969;
    font-size: 0.85rem;
    font-style: italic;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: #000000;
}

.newsletter-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 4rem;
    border: 1px solid #708090;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
}

.newsletter-content h2 {
    color: #C0C0C0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.newsletter-content p {
    color: #A9A9A9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.newsletter-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Newsletter and press buttons now use consistent styling */

.btn-icon {
    font-size: 1.1rem;
}

.newsletter-note {
    color: #696969 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* Community page specific styles */
.community-header h1 {
    color: #C0C0C0;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.community-subtitle {
    color: #A9A9A9;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.platform-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #708090;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.platform-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 10px 25px rgba(112, 128, 144, 0.3);
    transform: translateY(-4px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 30px;
    height: 30px;
}

.discord .platform-icon {
    background: #5865F2;
    color: white;
}

.reddit .platform-icon {
    background: #FF4500;
    color: white;
}

.twitter .platform-icon {
    background: #1DA1F2;
    color: white;
}

.tiktok .platform-icon {
    background: #000000;
    color: white;
}

.instagram .platform-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.platform-content h3 {
    color: #C0C0C0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.platform-content p {
    color: #A9A9A9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(112, 128, 144, 0.2);
    color: #C0C0C0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.platform-button {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.platform-button:hover {
    background: linear-gradient(45deg, #778899, #B0C4DE);
    transform: translateY(-2px);
}

.placeholder-note {
    display: block;
    font-size: 0.8rem;
    color: #696969;
    font-style: italic;
    margin-top: 0.5rem;
}

.community-guidelines,
.community-events {
    margin: 4rem 0;
}

.community-guidelines h2,
.community-events h2 {
    color: #C0C0C0;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.guidelines-content p,
.events-content p {
    color: #A9A9A9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-item {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #708090;
    text-align: center;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    border-color: #C0C0C0;
    box-shadow: 0 10px 25px rgba(112, 128, 144, 0.3);
}

.guideline-item h3 {
    color: #C0C0C0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guideline-item p {
    color: #A9A9A9;
    line-height: 1.6;
    text-align: left;
}

.event-placeholder {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #708090;
    max-width: 600px;
    margin: 0 auto;
}

.event-placeholder h3 {
    color: #C0C0C0;
    margin-bottom: 1rem;
    text-align: center;
}

.event-placeholder ul {
    color: #A9A9A9;
    text-align: left;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.event-placeholder li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Support page specific styles */
.support-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2F4F4F 100%);
    padding: 6rem 0 4rem 0;
    margin-top: -90px;
    padding-top: calc(6rem + 90px);
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.support-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.support-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.support-hero h1 {
    color: #C0C0C0;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.support-hero-subtitle {
    color: #A9A9A9;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Support Mission Section */
.support-mission {
    padding: 5rem 0;
    background: #000000;
}

.support-mission h2 {
    color: #C0C0C0;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.mission-content p {
    color: #A9A9A9;
    font-size: 1.2rem;
    line-height: 1.7;
}

.support-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #708090;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: #C0C0C0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.benefit-card p {
    color: #A9A9A9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Patreon Section */
.patreon-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.patreon-section h2 {
    color: #C0C0C0;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.patreon-featured-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #4682B4 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid #C0C0C0;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.patreon-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.4);
}

.patreon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #B8860B, #DAA520);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.patreon-content {
    text-align: center;
}

.patreon-content h3 {
    color: #C0C0C0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.patreon-content p {
    color: #A9A9A9;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.patron-tiers {
    margin-bottom: 2.5rem;
}

.tier-preview h4 {
    color: #C0C0C0;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-tag {
    background: rgba(192, 192, 192, 0.1);
    color: #C0C0C0;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(192, 192, 192, 0.2);
    border-color: #C0C0C0;
}

.patreon-cta {
    margin-top: 2rem;
}

/* Patreon button now uses cta-button styling */

.patreon-icon {
    font-size: 1.4rem;
}

/* Alternative Support Section */
.alternative-support {
    padding: 5rem 0;
    background: #000000;
}

.alternative-support h2 {
    color: #C0C0C0;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.section-subtitle {
    color: #A9A9A9;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.support-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.support-method-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #708090;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-method-card:hover {
    transform: translateY(-8px);
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.support-method-card h3 {
    color: #C0C0C0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.support-method-card p {
    color: #A9A9A9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.method-actions {
    margin-top: 1.5rem;
}

/* Method buttons now use game-button secondary styling */

/* Transparency Section */
.transparency-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.transparency-section h2 {
    color: #C0C0C0;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.transparency-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid #708090;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.transparency-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
}

.transparency-content p {
    color: #A9A9A9;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.fund-allocation-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.allocation-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(112, 128, 144, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(112, 128, 144, 0.2);
    transition: all 0.3s ease;
}

.allocation-item:hover {
    background: rgba(112, 128, 144, 0.15);
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

.allocation-visual {
    flex-shrink: 0;
}

.percentage-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #708090, #778899);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(112, 128, 144, 0.3);
}

.percentage-circle .percentage {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.allocation-details h4 {
    color: #C0C0C0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.allocation-details p {
    color: #A9A9A9;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Gratitude Section */
.gratitude-section {
    padding: 5rem 0;
    background: #000000;
}

.gratitude-card {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 4rem;
    border: 1px solid #708090;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.gratitude-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 20px 40px rgba(112, 128, 144, 0.3);
    transform: translateY(-4px);
}

.gratitude-card h2 {
    color: #C0C0C0;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.gratitude-card p {
    color: #A9A9A9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gratitude-cta {
    margin-top: 2rem;
}

/* Placeholder note styling */
.placeholder-note {
    display: block;
    font-size: 0.85rem;
    color: #696969;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.4;
}

/* Game page specific styles */
.game-page {
    padding-top: 90px;
    min-height: calc(100vh - 90px);
}

.game-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2F4F4F 100%);
    padding: 4rem 0;
    margin-top: -90px;
    padding-top: calc(4rem + 90px);
}

.game-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.game-info h1 {
    color: #C0C0C0;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.game-tagline {
    color: #A9A9A9;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.game-status {
    margin-bottom: 2rem;
}

.status-badge {
    background: linear-gradient(45deg, #708090, #778899);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.5);
}

.game-description {
    color: #A9A9A9;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for new page styles */
@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .signup-actions,
    .newsletter-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .support-benefits,
    .support-methods-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .fund-allocation-chart {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .allocation-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .community-header h1,
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Support page mobile adjustments */
    .support-hero {
        padding: 4rem 0 3rem 0;
        margin-top: -80px;
        padding-top: calc(4rem + 80px);
    }
    
    .support-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .support-mission,
    .patreon-section,
    .alternative-support,
    .transparency-section,
    .gratitude-section {
        padding: 3rem 0;
    }
    
    .support-mission h2,
    .patreon-section h2,
    .alternative-support h2,
    .transparency-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .mission-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .support-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .patreon-featured-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .patreon-content h3 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .benefit-tag {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    /* Patreon button responsive styling removed - using cta-button */
    
    .support-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-method-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .method-icon {
        font-size: 2.5rem;
    }
    
    /* Method button responsive styling removed - using game-button secondary */
    
    .transparency-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .gratitude-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .gratitude-card h2 {
        font-size: 1.8rem;
    }
    
    .percentage-circle {
        width: 60px;
        height: 60px;
    }
    
    .percentage-circle .percentage {
        font-size: 1rem;
    }
    
    /* Mobile responsive for news page */
    .news-hero {
        padding: 4rem 0 3rem 0;
        margin-top: -80px;
        padding-top: calc(4rem + 80px);
    }
    
    .news-hero h1 {
        font-size: 2.5rem;
    }
    
    .news-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .featured-story {
        padding: 3rem 0;
    }
    
    .featured-story h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .featured-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .featured-content h3 {
        font-size: 1.8rem;
    }
    
    .featured-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .news-section {
        padding: 3rem 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .news-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        margin: 0 1rem;
    }
    
    .card-header,
    .card-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    /* Newsletter and press button responsive styling removed - using consistent buttons */
    
    /* Ensure consistent button styling on mobile */
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-button.secondary {
        width: 100%;
        text-align: center;
    }
}
    
    /* Game page mobile adjustments */
    .game-page {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
    
    .game-hero {
        margin-top: -80px;
        padding-top: calc(3rem + 80px);
        padding-bottom: 3rem;
    }
    
    .game-info h1 {
        font-size: 2.5rem;
    }
    
    .game-tagline {
        font-size: 1.2rem;
    }
}

/* Community page specific styles */
.platform-icon-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-icon-header svg {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.game-card:hover .platform-icon-header svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.community-feature {
    background: rgba(112, 128, 144, 0.2);
    color: #C0C0C0;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(112, 128, 144, 0.3);
    transition: all 0.3s ease;
}

.community-feature:hover {
    background: rgba(112, 128, 144, 0.3);
    border-color: #C0C0C0;
}

.placeholder-note {
    font-size: 0.8rem;
    color: #696969;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
    line-height: 1.4;
}

/* Enhanced game card hover effects for community page */
.game-card .platform-features {
    transition: all 0.3s ease;
}

.game-card:hover .platform-features .community-feature {
    background: rgba(112, 128, 144, 0.25);
    border-color: rgba(192, 192, 192, 0.5);
}

/* Mobile responsive adjustments for community features */
@media (max-width: 768px) {
    .platform-features {
        justify-content: flex-start;
    }
    
    .community-feature {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .platform-icon-header svg {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   VISUAL FLOW SYSTEM - ANIMATIONS & EFFECTS
   ========================================================================== */

/* Breathing animation for background elements */
@keyframes breathe {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Fade-in animations for scroll-triggered effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Floating animation for geometric elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse animation - Disabled duplicate */
@keyframes pulse-accent {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* Enhanced glassmorphism hover effects */
.game-card:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(192, 192, 192, 0.2);
    transition: all var(--transition-smooth);
}

/* SVG Wave Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 10;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transition: height 0.3s ease;
}

.section-divider .shape-fill {
    fill: var(--background-dark);
}

/* Clean Section Styling */
section {
    position: relative;
}

/* Specific divider colors for seamless flow */
.games .section-divider .shape-fill {
    fill: var(--background-light);
}

.contact .section-divider .shape-fill {
    fill: var(--background-dark);
}

.hero .section-divider .shape-fill {
    fill: var(--background-light);
}

.about .section-divider .shape-fill {
    fill: var(--background-dark);
}

/* Article Page Styling */
.article-page {
    margin-top: 80px;
}

.article-hero {
    padding: 6rem 0 4rem 0;
    position: relative;
}

.article-content {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h2 {
    color: #C0C0C0;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
}

.article-content h3 {
    color: #ff6b47;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    color: #e8e8e8;
}

.article-content li strong {
    color: #C0C0C0;
}

.article-intro {
    font-size: 1.3rem !important;
    color: #C0C0C0 !important;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 3rem !important;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(255, 107, 71, 0.1) 100%);
    border-left: 4px solid #ff6b47;
    border-radius: 0 8px 8px 0;
}

.article-section {
    margin-bottom: 4rem;
}

/* Clickable Related Article Cards */
.related-article-card {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.related-article-card:hover {
    border-color: #ff6b47;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 71, 0.2);
}

.related-article-card h4 {
    color: #C0C0C0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.related-article-card:hover h4 {
    color: #ff6b47;
}

.related-article-card p {
    color: #A9A9A9;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.related-article-card:hover p {
    color: #e8e8e8;
}

.related-article-card .read-time {
    color: #ff6b47;
    font-size: 0.8rem;
}

/* Floating geometric elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1), transparent);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Reduce motion for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Disable resource-intensive effects */
    .floating-circle,
    .floating-elements {
        display: none; /* Hide floating elements on mobile for performance */
    }
    
    body {
        background-attachment: scroll; /* Fix for mobile iOS */
        background: var(--background-dark); /* Fallback solid background */
    }
    
    /* Optimize section backgrounds */
    .about::before,
    .games::before,
    .contact::before {
        display: none; /* Disable breathing animations on mobile */
    }
    
    /* Reduce section divider complexity */
    .section-divider svg {
        height: 30px;
    }
    
    /* Simplified hover effects for touch devices */
    .game-card:hover,
    .contact-card:hover {
        transform: translateY(-2px); /* Reduced hover effect */
        transition: transform 0.2s ease;
    }
    
    /* Optimize button interactions for touch */
    .game-button:hover,
    .cta-button:hover {
        transform: translateY(-1px) scale(1.01); /* Gentler hover effects */
    }
    
    .game-button::before,
    .cta-button::before {
        display: none; /* Remove ripple effects on mobile */
    }
    
    /* Reduce backdrop-filter for better performance */
    .game-card,
    .contact-card {
        backdrop-filter: none;
        background: rgba(47, 79, 79, 0.8); /* Solid fallback */
    }
    
    /* Optimize scroll animations */
    .animate-on-scroll {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Additional performance optimizations for older mobile devices */
@media (max-width: 480px) {
    /* Further reduce animations */
    .hero::before,
    .hero::after {
        display: none;
    }
    
    /* Simplified gradients */
    .about,
    .games,
    .contact {
        background: var(--background-light) !important;
    }
    
    /* Remove complex shadows */
    .game-card,
    .contact-card,
    .game-button,
    .cta-button {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }
}

/* Extra small mobile devices - improve dropdown for narrow screens */
@media (max-width: 480px) {
    .mobile-nav-menu {
        width: 250px;
        max-width: 85vw;
        right: 5px;
    }
    
    .mobile-nav-links a {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
    
    nav {
        padding: var(--space-sm) var(--space-md);
    }
}