* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.8;
}

/* Header */
header {
    background: #0d0d0d;
    border-bottom: 3px solid #FF8C00;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF8C00;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    width: 50px;
    height: 50px;
    border: 4px solid #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-symbol::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #FF8C00;
    border-radius: 50%;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #FF8C00;
    border-bottom-color: #FF8C00;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FF8C00;
    display: block;
    transition: all 0.3s;
}

/* Main Content */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

h1 {
    font-size: 3.5rem;
    color: #FF8C00;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    color: #FFA500;
    margin: 50px 0 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.6rem;
    color: #FFB84D;
    margin: 25px 0 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #c0c0c0;
}

/* Alert Boxes */
.alert-primary {
    background: linear-gradient(135deg, #FF8C0020 0%, #FFA50020 100%);
    border: 2px solid #FF8C00;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.alert-primary strong {
    color: #FF8C00;
}

.alert-warning {
    background: #2a2200;
    border: 2px solid #FFD700;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    color: #FFD700;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background: #262626;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
    text-align: center;
}

.info-card:hover {
    border-color: #FF8C00;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    margin-top: 0;
}

.info-card p {
    color: #999;
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    background: #262626;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    border: 2px solid #333;
}

.game-embed {
    width: 100%;
    max-width: 900px;
    height: 650px;
    margin: 30px auto;
    display: block;
    border: 4px solid #FF8C00;
    border-radius: 8px;
    background: #000;
}

/* Footer */
footer {
    background: #0d0d0d;
    border-top: 3px solid #FF8C00;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.support-section h3 {
    color: #FF8C00;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.support-section p {
    margin-bottom: 20px;
    color: #999;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.support-links a {
    color: #FFA500;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.support-links a:hover {
    color: #FF8C00;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-content {
    background: #1a1a1a;
    border: 3px solid #FF8C00;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.5);
}

.age-gate-content h2 {
    color: #FF8C00;
    margin-bottom: 25px;
    margin-top: 0;
}

.age-gate-content p {
    color: #c0c0c0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.age-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-confirm {
    background: #FF8C00;
    color: #000;
}

.age-btn-confirm:hover {
    background: #FFA500;
    transform: scale(1.05);
}

.age-btn-deny {
    background: #333;
    color: #999;
}

.age-btn-deny:hover {
    background: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0d0d0d;
        transition: right 0.3s;
        padding-top: 80px;
        border-left: 3px solid #FF8C00;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid #262626;
    }

    .main-nav a {
        display: block;
        padding: 25px 40px;
        border-bottom: none;
    }

    .site-logo {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .game-embed {
        height: 450px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
