* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(to bottom, #1a0a0a 0%, #330a00 100%);
    color: #f5f5f5;
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #330a00 0%, #661400 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 480px;
    border: 3px solid #ff4500;
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.5);
}

.flame-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.age-notice {
    color: #ffb399;
    font-size: 1rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.btn-confirm {
    background: #ff4500;
    color: white;
}

.btn-confirm:hover {
    background: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.btn-deny {
    background: #555;
    color: white;
}

.btn-deny:hover {
    background: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: rgba(26, 10, 10, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ff4500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    color: #ffb399;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.menu a:hover,
.menu a.active {
    color: #ff4500;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(102, 20, 0, 0.3) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #ff4500;
}

.hero-title {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.hero-text {
    font-size: 1.4rem;
    color: #ffb399;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(102, 20, 0, 0.2) 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ff4500;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-date {
    color: #ffb399;
    font-style: italic;
    font-size: 1rem;
}

/* Alert Section */
.alert-section {
    margin-bottom: 3rem;
}

.alert-box {
    background: rgba(255, 69, 0, 0.15);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #ff4500;
}

.alert-box h3 {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alert-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
}

.alert-item strong {
    color: #ff6b35;
}

/* Features */
.features {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.3rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffb399;
    margin-bottom: 2rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(102, 20, 0, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #ff4500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 0.75rem;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 3rem;
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.game-wrapper.large {
    padding: 0.5rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.game-info {
    text-align: center;
    margin-top: 1rem;
}

.game-info p {
    margin: 0.5rem 0;
    color: #ffb399;
}

/* About Section */
.about-section {
    background: rgba(102, 20, 0, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.about-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* Benefits */
.benefits {
    margin-bottom: 3rem;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit {
    background: rgba(255, 69, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Quick Info */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(255, 69, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ff4500;
}

.info-card h3 {
    color: #ff6b35;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

/* Tips Section */
.tips-section {
    margin-top: 3rem;
    background: rgba(102, 20, 0, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #ff4500;
}

.tip-card strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 0.5rem;
}

/* Legal Document */
.legal-document {
    background: rgba(102, 20, 0, 0.2);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.legal-document h2 {
    color: #ff6b35;
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.6rem;
}

.legal-document a {
    color: #ff6b35;
    text-decoration: underline;
}

.warning-box {
    background: rgba(255, 69, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ff4500;
    margin-bottom: 2rem;
}

.warning-box h2 {
    margin-top: 0;
}

/* Footer */
.footer {
    background: rgba(26, 10, 10, 0.95);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 2px solid #ff4500;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ff4500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    color: #ffb399;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(26, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
    }

    .menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .game-iframe {
        height: 450px;
    }

    .legal-document {
        padding: 1.5rem;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .age-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-banner {
        padding: 2.5rem 1rem;
    }

    .game-iframe {
        height: 400px;
    }

    .brand-name {
        font-size: 1.4rem;
    }
}
