@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1a1a1d 0%, #2d1b1e 50%, #1a1a1d 100%);
    color: #f0f0f0;
    min-height: 100vh;
}

/* Top Header Bar */
.top-bar {
    background: linear-gradient(90deg, #ff4500 0%, #ff6b35 100%);
    padding: 0.5rem 0;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.5);
}

/* Main Header */
.main-header {
    background: rgba(26, 26, 29, 0.95);
    border-bottom: 4px solid #ff4500;
    position: sticky;
    top: 0;
    z-index: 5000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.7);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.brand-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    color: #ff4500;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
}

/* Hamburger Button */
.nav-hamburger {
    display: none;
    background: #ff4500;
    border: none;
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Content Area */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
}

h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: #ff4500;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 6px;
    text-shadow: 0 0 40px rgba(255, 69, 0, 0.7);
    line-height: 1.1;
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: #ff6b35;
    margin: 3rem 0 1.5rem;
    letter-spacing: 3px;
}

h3 {
    font-family: 'Bebas Neue', cursive;
    color: #ff8c61;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

p {
    line-height: 1.95;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    font-size: 1.08rem;
}

/* Alert Boxes */
.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.alert-box {
    background: linear-gradient(135deg, rgba(45, 27, 30, 0.9) 0%, rgba(26, 26, 29, 0.9) 100%);
    border: 3px solid #ff4500;
    border-radius: 18px;
    padding: 2.8rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.alert-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.4);
    border-color: #ff6b35;
}

.alert-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
}

/* Game Display */
.game-display {
    background: linear-gradient(135deg, rgba(26, 26, 29, 0.95) 0%, rgba(45, 27, 30, 0.95) 100%);
    border-radius: 30px;
    padding: 3.5rem;
    margin: 4rem 0;
    border: 4px solid #ff4500;
    box-shadow: 0 12px 45px rgba(255, 69, 0, 0.3);
}

.game-display h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.game-viewer {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Info Block */
.info-block {
    background: rgba(45, 27, 30, 0.6);
    border-left: 6px solid #ff4500;
    padding: 2.8rem;
    margin: 3rem 0;
    border-radius: 15px;
}

.info-block ul {
    margin-left: 2.8rem;
    margin-top: 1.8rem;
}

.info-block li {
    margin: 1.2rem 0;
    line-height: 1.9;
    color: #d0d0d0;
}

.info-block li strong {
    color: #ff6b35;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-top: 4px solid #ff4500;
    padding: 3.5rem 3rem 2.5rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.footer-navigation a {
    color: #ff4500;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.footer-navigation a:hover {
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.8);
}

.footer-copyright {
    color: #999;
    margin-top: 2.5rem;
    font-size: 0.95rem;
}

/* 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: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.open {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, rgba(45, 27, 30, 0.98) 0%, rgba(26, 26, 29, 0.98) 100%);
    padding: 4.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 650px;
    border: 5px solid #ff4500;
    box-shadow: 0 25px 70px rgba(255, 69, 0, 0.5);
}

.age-gate-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: #ff4500;
}

.age-gate-box p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.age-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-action-btn {
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.age-yes {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: #fff;
}

.age-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
}

.age-no {
    background: transparent;
    border: 3px solid #ff4500;
    color: #f0f0f0;
}

.age-no:hover {
    background: #ff4500;
    border-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-hamburger {
        display: block;
    }

    .main-nav ul {
        position: fixed;
        top: 130px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 130px);
        background: rgba(26, 26, 29, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem;
        transition: right 0.3s ease;
        border-left: 4px solid #ff4500;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .main-nav ul.open {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 1.2rem;
    }

    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    main {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .game-viewer {
        height: 500px;
    }

    .age-gate-box {
        margin: 1.5rem;
        padding: 3rem;
    }

    .age-actions {
        flex-direction: column;
    }
}
