* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a0033 0%, #2d0a4d 50%, #1a0033 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: linear-gradient(135deg, #4a0e78 0%, #6b1fa8 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.5);
    border: 2px solid #8a2be2;
}

.age-modal-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.age-modal-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-agree, .btn-decline {
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.btn-agree {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.btn-agree:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.btn-decline {
    background: #444;
    color: #fff;
}

.btn-decline:hover {
    background: #666;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #8a2be2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    font-size: 2em;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8em;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8a2be2 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: #00ff88;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ff88;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #b8b8b8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #8a2be2 0%, #00ff88 100%);
    color: #000;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #00ff88;
    letter-spacing: 2px;
}

.info-section p {
    font-size: 1.15em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #d0d0d0;
}

/* Notices Section */
.notices-section {
    padding: 80px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.notice-card {
    background: rgba(138, 43, 226, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #8a2be2;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.notice-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #00ff88;
    letter-spacing: 1px;
}

.notice-card p {
    font-size: 1.05em;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #00ff88;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #b8b8b8;
    margin-bottom: 40px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #8a2be2;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #00ff88;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #8a2be2;
}

.feature-item p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* Responsibility Section */
.responsibility-section {
    padding: 80px 0;
    background: rgba(138, 43, 226, 0.1);
    text-align: center;
}

.responsibility-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #00ff88;
    letter-spacing: 2px;
}

.responsibility-section p {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Play Page Styles */
.play-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.play-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.play-hero p {
    font-size: 1.3em;
    color: #b8b8b8;
}

.game-play-section {
    padding: 60px 0;
}

.game-info {
    background: rgba(138, 43, 226, 0.2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid #8a2be2;
}

.game-info h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2em;
    margin-bottom: 20px;
    color: #00ff88;
    letter-spacing: 1px;
}

.game-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #d0d0d0;
    line-height: 1.7;
}

.game-container-full {
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #8a2be2;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

.content-section h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3em;
    margin-bottom: 20px;
    color: #00ff88;
    letter-spacing: 2px;
}

.update-date {
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

.content-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2em;
    margin: 40px 0 20px;
    color: #8a2be2;
    letter-spacing: 1px;
}

.content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #d0d0d0;
}

.content-section ul {
    margin: 20px 0 20px 40px;
    color: #d0d0d0;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.disclaimer-highlight {
    background: rgba(138, 43, 226, 0.2);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #00ff88;
    margin: 30px 0;
}

.disclaimer-highlight h2 {
    margin-top: 0;
    color: #00ff88;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
    border-top: 2px solid #8a2be2;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #888;
    margin-top: 15px;
}

.footer-links h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #00ff88;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 15px 40px;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-modal-content h2 {
        font-size: 2em;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-agree, .btn-decline {
        width: 100%;
    }
}
