:root {
    --bg-primary: #05070d;
    --bg-secondary: #0b1220;
    --card-bg: rgba(59, 130, 246, 0.08);
    --accent-primary: #3b82f6;
    --accent-secondary: #60a5fa;
    --accent-highlight: #facc15;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --gradient-zeus: linear-gradient(135deg, #3b82f6, #facc15);
    --glass-border: rgba(59, 130, 246, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

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

section {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    section { padding: 70px 0; }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 13, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, var(--accent-primary), var(--accent-highlight)) 1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 8px var(--accent-primary));
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-zeus);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-zeus);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.5);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/zeus-temple-silhouette-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    background: var(--gradient-zeus);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.legal-badge {
    display: inline-block;
    background: rgba(250, 204, 21, 0.1);
    color: var(--accent-highlight);
    border: 1px solid var(--accent-highlight);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Game Section */
.game-container {
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 20px;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
    position: relative;
    margin-top: -50px;
}

.game-container::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: var(--gradient-zeus);
    z-index: -1;
    opacity: 0.3;
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

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

/* Info Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 22px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-highlight);
    background: rgba(59, 130, 246, 0.12);
}

.glass-card h3 {
    color: var(--accent-highlight);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    border: 1px dashed var(--glass-border);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-wrapper {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 20px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Animations */
@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 0.99;
        filter: drop-shadow(0 0 1px rgba(59, 130, 246, 0.5));
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
        filter: none;
    }
}

.lightning-flicker {
    animation: flicker 3s linear infinite;
}

/* Page Headers */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    text-align: center;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.content-page h2 {
    color: var(--accent-highlight);
    margin: 40px 0 20px;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 22px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}