@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

/* Header */
.top-bar {
    background: linear-gradient(90deg, #c62828 0%, #ff6f00 100%);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

header {
    background: #1a1a1a;
    border-bottom: 3px solid #c62828;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #ff6f00;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(198, 40, 40, 0.5);
}

.brand-icon {
    color: #c62828;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.main-nav ul li a {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    background: #2a2a2a;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.main-nav ul li a:hover {
    background: linear-gradient(90deg, #c62828 0%, #ff6f00 100%);
    border-color: #ff6f00;
    transform: skewX(-5deg);
}

.nav-toggle {
    display: none;
    background: #c62828;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.3s;
}

/* Main Content */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
}

.banner-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 60px;
    margin-bottom: 60px;
    border-left: 8px solid #ff6f00;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.1));
}

.banner-section h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    color: #ff6f00;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.banner-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

/* Alert Boxes */
.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.alert-box {
    background: #1a1a1a;
    padding: 35px;
    border: 3px solid #c62828;
    position: relative;
    transition: all 0.3s;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c62828 0%, #ff6f00 100%);
}

.alert-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
}

.alert-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #ff6f00;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.alert-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

/* Game Area */
.game-area {
    background: #1a1a1a;
    padding: 60px;
    margin: 60px 0;
    border: 4px solid #c62828;
    box-shadow: 0 0 40px rgba(198, 40, 40, 0.3);
}

.game-area h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    color: #ff6f00;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 640px;
    border: 4px solid #ff6f00;
    margin: 0 auto;
    display: block;
    background: #000000;
}

/* Info Section */
.info-section {
    background: #1a1a1a;
    padding: 50px;
    margin-bottom: 40px;
    border-left: 8px solid #ff6f00;
}

.info-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #ff6f00;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.info-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #c62828;
    margin: 35px 0 20px;
    letter-spacing: 2px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #cccccc;
}

.info-section ul {
    margin-left: 35px;
    margin-bottom: 20px;
}

.info-section ul li {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 500;
}

.info-section strong {
    color: #ff6f00;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 4px solid #c62828;
    padding: 60px 40px;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #ff6f00;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6f00;
}

.footer-text {
    color: #888888;
    font-size: 14px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 70px 60px;
    border: 5px solid #c62828;
    text-align: center;
    max-width: 600px;
    position: relative;
}

.age-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #c62828 0%, #ff6f00 100%);
}

.age-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #ff6f00;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.age-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #cccccc;
}

.age-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-button {
    padding: 18px 50px;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-accept {
    background: linear-gradient(90deg, #c62828 0%, #ff6f00 100%);
    color: white;
    border: 3px solid #ff6f00;
}

.age-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.age-reject {
    background: #2a2a2a;
    color: #888888;
    border: 3px solid #444444;
}

.age-reject:hover {
    background: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .main-nav.active {
        max-height: 500px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }

    .main-nav ul li a {
        transform: none;
    }

    .banner-section {
        padding: 50px 30px;
    }

    .banner-section h1 {
        font-size: 48px;
    }

    .game-area {
        padding: 35px 20px;
    }

    .game-wrapper {
        height: 500px;
    }

    .info-section {
        padding: 35px 25px;
    }

    .age-content {
        padding: 50px 30px;
        margin: 20px;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-button {
        width: 100%;
    }
}
