* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.gate-content {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.6);
}

.gate-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.gate-header p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-confirm, .btn-deny {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: white;
    color: #dc2626;
}

.btn-confirm:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.btn-deny {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 2px solid white;
}

.btn-deny:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Main Header */
.main-header {
    background: #151515;
    border-bottom: 3px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-text {
    font-size: 2rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    color: white;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-btn span {
    width: 30px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #dc2626;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #dc2626;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Zone */
.hero-zone {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 8rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.4rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #dc2626;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Essential Info */
.essential-info {
    padding: 5rem 0;
    background: #1a1a1a;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-box {
    text-align: center;
    padding: 2rem;
    background: #0a0a0a;
    border: 2px solid #dc2626;
    border-radius: 5px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.info-box p {
    color: #b0b0b0;
}

/* About Omnithor */
.about-omnithor {
    padding: 6rem 0;
    background: #0a0a0a;
}

.about-omnithor h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-main p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    background: #1a1a1a;
    padding: 1.5rem;
    border-left: 4px solid #dc2626;
    border-radius: 5px;
}

.point h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.point p {
    color: #b0b0b0;
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 0;
    background: #1a1a1a;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.showcase-frame {
    border: 3px solid #dc2626;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.showcase-frame iframe {
    width: 100%;
    height: 750px;
    border: none;
}

/* Power Features */
.power-features {
    padding: 6rem 0;
    background: #0a0a0a;
}

.power-features h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border: 2px solid #333;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #dc2626;
    transform: translateY(-10px);
}

.feature-badge {
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
    color: #dc2626;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.feature-card p {
    color: #b0b0b0;
}

/* Responsibility Block */
.responsibility-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.responsibility-inner {
    text-align: center;
}

.responsibility-inner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.responsibility-inner p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

/* Play Page */
.play-header-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    text-align: center;
}

.play-header-section h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.play-header-section p {
    font-size: 1.2rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.play-game-section {
    padding: 3rem 0;
    background: #1a1a1a;
}

.full-game-container {
    border: 3px solid #dc2626;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.full-game-container iframe {
    width: 100%;
    height: 850px;
    border: none;
}

.play-info-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.play-info-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.panel {
    background: #1a1a1a;
    padding: 2rem;
    border-left: 4px solid #dc2626;
    border-radius: 5px;
}

.panel h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
}

.panel p {
    color: #b0b0b0;
}

/* Legal Document */
.legal-document {
    padding: 5rem 0;
    background: #0a0a0a;
}

.legal-document h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.document-date {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-document h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.legal-document p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.alert-banner {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 3rem;
    color: white;
}

.alert-banner h2 {
    color: white;
    margin-top: 0;
}

.alert-banner p {
    color: white;
}

/* Main Footer */
.main-footer {
    background: #151515;
    border-top: 3px solid #dc2626;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #888;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #151515;
        width: 100%;
        padding: 2rem;
        border-top: 3px solid #dc2626;
        transition: right 0.3s;
    }

    .main-nav.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .showcase-frame iframe {
        height: 550px;
    }

    .full-game-container iframe {
        height: 650px;
    }

    .play-header-section h1 {
        font-size: 3rem;
    }

    .legal-document h1 {
        font-size: 3rem;
    }
}
