@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;1,400&family=Barlow:wght@300;400;600&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
    --bg-black: #0b0907;
    --bg-bronze: #15110d;
    --accent-gold: #f5d200;
    --accent-orange: #ff9d00;
    --text-main: #e8e6e3;
    --text-muted: #a09c96;
    
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --glass-bg: rgba(21, 17, 13, 0.65);
    --glass-border: rgba(245, 210, 0, 0.15);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 157, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 210, 0, 0.05) 0%, transparent 50%);
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(var(--accent-gold) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: particleDrift 60s linear infinite;
}

@keyframes particleDrift {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.neon-text-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 5px rgba(245, 210, 0, 0.5), 0 0 10px rgba(245, 210, 0, 0.3);
}

.neon-text-orange {
    color: var(--accent-orange);
    text-shadow: 0 0 5px rgba(255, 157, 0, 0.5), 0 0 15px rgba(255, 157, 0, 0.3);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--accent-gold);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-glow);
    border-radius: 16px;
    padding: 2rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 9, 7, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    height: 30px;
    width: auto;
}

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

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* Buttons */
.btn-electric {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-black);
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(245, 210, 0, 0.4);
}

.btn-electric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: -1;
    transition: left 0.5s ease;
}

.btn-electric:hover {
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.6);
    transform: translateY(-2px);
}

.btn-electric:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    box-shadow: inset 0 0 10px rgba(245, 210, 0, 0.2);
}

.btn-outline:hover {
    background: rgba(245, 210, 0, 0.1);
    color: var(--accent-gold);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Using a fallback image via unspalsh, masked with gradients for the cinematic look */
    background: 
        linear-gradient(to bottom, rgba(11, 9, 7, 0.4) 0%, var(--bg-black) 100%),
        linear-gradient(to right, var(--bg-black) 0%, rgba(11, 9, 7, 0.2) 50%, var(--bg-black) 100%),
        url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    animation: floatUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Game Section */
.game-section {
    background: linear-gradient(to bottom, var(--bg-black), var(--bg-bronze));
    position: relative;
}

.game-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-orange));
    box-shadow: 0 0 40px rgba(245, 210, 0, 0.15);
}

.game-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

.section-header .subtitle {
    font-family: var(--font-mono);
    color: var(--accent-orange);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 157, 0, 0.15);
    border-color: rgba(255, 157, 0, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(245, 210, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 210, 0, 0.3);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-gold);
}

/* Stats Section */
.stats-section {
    background: url('https://images.unsplash.com/photo-1600521605604-00624b480ed5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 9, 7, 0.85);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(255, 157, 0, 0.4);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Pages (Legal, About, Contact) */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-bronze), var(--bg-black));
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
}

.content-section {
    padding: 4rem 0;
    min-height: 50vh;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    margin-top: 2rem;
    color: var(--accent-gold);
}

.content-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-block li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 157, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-info p {
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--bg-bronze);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    border: 1px solid #333;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(245, 210, 0, 0.2); }
    50% { box-shadow: 0 0 40px rgba(245, 210, 0, 0.5); }
    100% { box-shadow: 0 0 20px rgba(245, 210, 0, 0.2); }
}

.pulse-animation {
    animation: pulseGlow 3s infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for placeholder, would need JS for mobile menu */
    .hero-content h1 { font-size: 2.8rem; }
    .section-header h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .glass-panel { padding: 1.5rem; }
}