* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 50%, #1a0033 100%);
    color: #e0d4f7;
    line-height: 1.6;
    min-height: 100vh;
}

.age-gate {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(145deg, #2d1b4e, #1a0033);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.age-gate-content h2 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #FFD700;
    color: #1a0033;
}

.btn-confirm:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-deny {
    background: #666;
    color: #fff;
}

.btn-deny:hover {
    background: #888;
}

header {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #FFD700;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-icon {
    font-size: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    margin: 4px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e0d4f7;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(26, 0, 51, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #FFD700;
        gap: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(123, 44, 191, 0.2);
    border-radius: 20px;
    border: 2px solid #7B2CBF;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.hero-subtitle {
    font-size: 20px;
    color: #e0d4f7;
}

.intro-section, .info-section {
    margin: 40px 0;
}

.content-block {
    background: rgba(45, 27, 78, 0.5);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.content-block h2 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 20px;
}

.content-block p {
    margin-bottom: 15px;
    font-size: 16px;
}

.notice-section {
    margin: 50px 0;
}

.notice-card {
    background: rgba(255, 69, 0, 0.1);
    border: 3px solid #FF4500;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.notice-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.notice-card h3 {
    color: #FFA500;
    font-size: 26px;
    margin-bottom: 20px;
}

.notice-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.notice-list li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.notice-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 20px;
}

.game-section {
    margin: 50px 0;
    text-align: center;
}

.game-section h2 {
    color: #FFD700;
    font-size: 30px;
    margin-bottom: 30px;
}

.game-container {
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #7B2CBF;
    margin-bottom: 20px;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-note {
    color: #e0d4f7;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-box {
    background: rgba(45, 27, 78, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #7B2CBF;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 14px;
}

.info-section h2 {
    color: #FFD700;
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.info-section p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.play-hero {
    text-align: center;
    padding: 40px 20px;
    background: rgba(123, 44, 191, 0.2);
    border-radius: 15px;
    margin-bottom: 40px;
}

.play-hero h1 {
    font-size: 38px;
    color: #FFD700;
    margin-bottom: 10px;
}

.play-hero p {
    font-size: 18px;
}

.game-play-section {
    margin: 40px 0;
}

.game-container-full {
    background: #000;
    padding: 15px;
    border-radius: 15px;
    border: 3px solid #FFD700;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .game-frame-full {
        height: 500px;
    }
}

.game-info {
    margin: 50px 0;
}

.game-info h2 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: rgba(45, 27, 78, 0.5);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.info-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    font-size: 14px;
}

.reminder-section {
    margin: 40px 0;
}

.reminder-box {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid #FFA500;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.reminder-box p {
    font-size: 16px;
    color: #e0d4f7;
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(123, 44, 191, 0.2);
    border-radius: 15px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #e0d4f7;
    font-size: 16px;
}

.legal-content {
    background: rgba(45, 27, 78, 0.4);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #7B2CBF;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #FFD700;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #FFA500;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin: 10px 0;
}

.disclaimer-highlight {
    background: rgba(123, 44, 191, 0.2);
    border: 2px solid #FFD700;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #FFD700;
    padding: 40px 5%;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #e0d4f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-note {
    color: #b8a8d0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
