* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #1a0a00;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    color: #f5deb3;
    line-height: 1.7;
    min-height: 100vh;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
}

header {
    background: rgba(139, 69, 19, 0.4);
    border-bottom: 3px solid #daa520;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-symbol {
    font-size: 48px;
    background: linear-gradient(135deg, #daa520, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    font-size: 42px;
    font-weight: 700;
    color: #daa520;
    font-style: italic;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: #daa520;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    color: #f5deb3;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #daa520;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #daa520;
}

.banner-section {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(218, 165, 32, 0.1), transparent);
}

.banner-section h1 {
    font-size: 64px;
    font-weight: 900;
    color: #daa520;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.banner-section p {
    font-size: 24px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.alert-box {
    max-width: 1000px;
    margin: 50px auto;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6), rgba(218, 165, 32, 0.3));
    border: 3px solid #daa520;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.alert-box h2 {
    font-size: 36px;
    color: #ff6b00;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.alert-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.alert-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.alert-text {
    font-size: 20px;
    line-height: 1.7;
}

.game-showcase {
    padding: 70px 30px;
}

.game-showcase h2 {
    font-size: 48px;
    text-align: center;
    color: #daa520;
    margin-bottom: 40px;
    font-style: italic;
}

.game-frame-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.5), rgba(0, 0, 0, 0.5));
    padding: 30px;
    border-radius: 25px;
    border: 3px solid #daa520;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.game-frame-wrapper iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

.text-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.text-content h2 {
    font-size: 44px;
    color: #daa520;
    margin-bottom: 30px;
    font-style: italic;
}

.text-content h1 {
    font-size: 52px;
    color: #daa520;
    margin-bottom: 30px;
    font-style: italic;
}

.text-content p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.text-content ul {
    list-style: none;
    margin: 30px 0;
}

.text-content ul li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 20px;
    line-height: 1.7;
}

.text-content ul li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 24px;
}

.bottom-section {
    background: rgba(139, 69, 19, 0.3);
    padding: 50px 30px;
    text-align: center;
    border-top: 3px solid #daa520;
    margin-top: 80px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #daa520;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-navigation a:hover {
    color: #ff6b00;
}

.copyright {
    font-size: 17px;
    color: #f5deb3;
    opacity: 0.85;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #8b4513, #1a0a00);
    border: 4px solid #daa520;
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

.age-gate-box h2 {
    font-size: 42px;
    color: #daa520;
    margin-bottom: 25px;
    font-style: italic;
}

.age-gate-box p {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-button {
    padding: 18px 50px;
    font-size: 22px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
}

.age-button.confirm {
    background: linear-gradient(135deg, #228B22, #32CD32);
    color: white;
}

.age-button.deny {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: white;
}

.age-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(26, 10, 0, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: left 0.4s;
        border-top: 3px solid #daa520;
    }

    .main-nav.open {
        left: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .banner-section h1 {
        font-size: 42px;
    }

    .banner-section p {
        font-size: 20px;
    }

    .game-frame-wrapper iframe {
        height: 500px;
    }

    .age-gate-box {
        padding: 40px;
        margin: 20px;
    }

    .age-gate-box h2 {
        font-size: 32px;
    }

    .age-actions {
        flex-direction: column;
    }

    .brand-text {
        font-size: 32px;
    }

    .brand-symbol {
        font-size: 36px;
    }
}
