:root {
    --bg-color: #0f0f12;
    --card-color: #1a1a1f;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --text-white: #ffffff;
    --text-gray: #a0a0a5;
    --max-width: 1150px;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    color: var(--bg-color);
}

/* Header */
.site-header {
    background-color: var(--card-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    position: absolute;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/dark-gold-ring-pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 18, 0.8), rgba(15, 15, 18, 1));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 12px 36px;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.game-container {
    width: 100%;
    background-color: var(--card-color);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    background-color: #000;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--card-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.legal-box {
    background-color: var(--card-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.legal-box h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-list li {
    color: var(--text-gray);
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.legal-list li::before {
    content: '•';
    color: var(--accent-gold);
    margin-right: 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--card-color);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--card-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-white);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: #08080a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-brand {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--card-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .site-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .game-container iframe {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .game-container iframe {
        aspect-ratio: 1 / 1;
    }
}