* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to right, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.top-nav {
    background: linear-gradient(90deg, #d32f2f 0%, #f44336 100%);
    box-shadow: 0 2px 15px rgba(211, 47, 47, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.brand-icon {
    font-size: 2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.toggle-bar {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffeb3b;
    transition: width 0.3s;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: #ffeb3b;
}

main {
    max-width: 100%;
}

.hero {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.9) 0%, rgba(244, 67, 54, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d32f2f" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-background {
    width: 100%;
    padding: 4rem 2rem;
}

.hero-text-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-container h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 1.4rem;
    color: #ffeb3b;
    margin-bottom: 2.5rem;
}

.hero-button {
    display: inline-block;
    background: #ffeb3b;
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.5);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 235, 59, 0.7);
    background: #fff176;
}

.core-info {
    padding: 5rem 2rem;
    background: #2d2d2d;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem;
    color: #f44336;
    text-align: center;
    margin-bottom: 3rem;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-box {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid #f44336;
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.info-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.6rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.game-showcase {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.game-container {
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #f44336;
    box-shadow: 0 10px 40px rgba(244, 67, 54, 0.4);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-notice {
    margin-top: 2rem;
    text-align: center;
    background: rgba(255, 235, 59, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #ffeb3b;
}

.game-notice p {
    color: #ffeb3b;
    font-weight: 600;
}

.features {
    padding: 5rem 2rem;
    background: #2d2d2d;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid #f44336;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.disclaimers {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.disclaimer-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 10px;
    border: 3px solid #ffeb3b;
}

.disclaimer-panel h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffeb3b;
    margin-bottom: 2rem;
}

.disclaimer-points {
    list-style-position: inside;
    line-height: 2;
}

.disclaimer-points li {
    margin-bottom: 1rem;
}

.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 4rem 2rem 2rem;
    border-top: 4px solid #f44336;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block h4 {
    font-family: 'Russo One', sans-serif;
    color: #f44336;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.resource-links,
.legal-links {
    list-style: none;
}

.resource-links li,
.legal-links li {
    margin-bottom: 0.8rem;
}

.resource-links a,
.legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-links a:hover,
.legal-links a:hover {
    color: #f44336;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 67, 54, 0.3);
    color: #808080;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #f44336;
    box-shadow: 0 10px 50px rgba(244, 67, 54, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #f44336;
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-accept,
.btn-reject {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: linear-gradient(90deg, #d32f2f 0%, #f44336 100%);
    color: #ffffff;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.5);
}

.btn-reject {
    background: #424242;
    color: #e0e0e0;
}

.btn-reject:hover {
    background: #616161;
}

.play-header {
    background: linear-gradient(90deg, #d32f2f 0%, #f44336 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.play-header h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.play-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.play-game {
    padding: 4rem 2rem;
    background: #1a1a1a;
}

.play-details {
    padding: 4rem 2rem;
    background: #2d2d2d;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 10px;
}

.details-container h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #f44336;
    margin-bottom: 2rem;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    text-align: center;
}

.detail-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.play-warning {
    background: rgba(255, 235, 59, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #ffeb3b;
    margin-top: 2rem;
}

.play-warning p {
    color: #ffeb3b;
    font-weight: 600;
    text-align: center;
}

.legal-content {
    padding: 4rem 2rem;
    background: #2d2d2d;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 4rem 3rem;
    border-radius: 10px;
}

.legal-wrapper h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #808080;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-article {
    margin-bottom: 2.5rem;
}

.legal-article h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.legal-article h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.4rem;
    color: #f44336;
    margin-bottom: 0.8rem;
}

.legal-article ul {
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-article li {
    margin-bottom: 0.8rem;
}

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-summary {
    background: rgba(244, 67, 54, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    border: 3px solid #f44336;
    margin-top: 3rem;
}

.legal-summary h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.warning-box {
    background: rgba(255, 235, 59, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    border: 3px solid #ffeb3b;
    margin-bottom: 3rem;
}

.warning-box h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: linear-gradient(180deg, #d32f2f 0%, #f44336 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-text-container h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .game-iframe {
        height: 500px;
    }

    .info-row,
    .features-layout {
        grid-template-columns: 1fr;
    }

    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .play-header h1 {
        font-size: 2.5rem;
    }

    .legal-wrapper {
        padding: 2.5rem 2rem;
    }

    .legal-wrapper h1 {
        font-size: 2.2rem;
    }
}
