:root {
    --bg-primary: #0a0a0d;
    --bg-secondary: #141417;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --accent-primary: #ffd700;
    --accent-secondary: #f8e88b;
    --text-primary: #f5f5f5;
    --text-secondary: #9ca3af;
    --container-width: 1400px;
    --transition: all 0.3s ease;
    --border-glow: 0 0 15px rgba(255, 215, 0, 0.2);
    --gold-gradient: linear-gradient(135deg, #ffd700, #f8e88b);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section {
    padding: 100px 0;
}

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); text-align: center; }

p {
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn-premium {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: #fff;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 13, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-primary);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 13, 0.8), rgba(10, 10, 13, 0.8)), url('images/hero-bg-abstract.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 120px;
}

.hero-content {
    max-width: 900px;
}

.legal-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Game Section */
.game-section {
    background-color: var(--bg-secondary);
}

.game-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), var(--border-glow);
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.glass-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* Legal & Responsible Gaming */
.legal-box {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.rg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.rg-item {
    padding: 15px 25px;
    background: var(--bg-glass);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: var(--accent-primary);
}

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

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .game-container { width: 95%; aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .game-container { width: 100%; border-radius: 0; aspect-ratio: 1 / 1; }
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-primary);
}