* {
    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: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.age-overlay {
    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-overlay.hidden {
    display: none;
}

.age-modal {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(206, 147, 216, 0.4);
    border: 2px solid #ce93d8;
}

.age-modal h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ce93d8;
}

.age-modal p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.yes-btn {
    background: #ce93d8;
    color: #1a0033;
}

.yes-btn:hover {
    background: #ba68c8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 147, 216, 0.5);
}

.no-btn {
    background: #424242;
    color: #e0e0e0;
}

.no-btn:hover {
    background: #616161;
}

.main-header {
    background: rgba(26, 0, 51, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ce93d8;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ce93d8;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ce93d8;
    border-radius: 3px;
    transition: all 0.3s;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ce93d8;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #ce93d8;
}

.main-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 0, 51, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #ce93d8;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
}

.home-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.hero-section {
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ce93d8 0%, #ba68c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    color: #bdbdbd;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
    color: #ce93d8;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #ce93d8;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(206, 147, 216, 0.5);
}

.info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: rgba(74, 20, 140, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #7b1fa2;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #ce93d8;
    box-shadow: 0 10px 30px rgba(206, 147, 216, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #ce93d8;
    margin-bottom: 1rem;
}

.game-section {
    margin: 5rem 0;
}

.game-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ce93d8;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #bdbdbd;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #7b1fa2;
    box-shadow: 0 20px 60px rgba(206, 147, 216, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.features-section {
    margin: 5rem 0;
}

.features-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ce93d8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: rgba(74, 20, 140, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #7b1fa2;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ce93d8;
}

.notice-section {
    margin: 5rem 0;
}

.notice-box {
    background: rgba(123, 31, 162, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ce93d8;
}

.notice-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ce93d8;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.notice-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ce93d8;
    font-weight: 900;
}

.additional-info {
    margin: 5rem 0;
}

.additional-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ce93d8;
    text-align: center;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.play-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.play-header {
    padding: 3rem 0;
    text-align: center;
}

.play-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ce93d8;
}

.play-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #bdbdbd;
}

.game-play-section {
    margin: 3rem 0;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #7b1fa2;
    box-shadow: 0 20px 60px rgba(206, 147, 216, 0.3);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.usage-notes {
    margin: 5rem 0;
}

.usage-notes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ce93d8;
}

.notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-card {
    background: rgba(74, 20, 140, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #7b1fa2;
}

.note-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ce93d8;
}

.play-reminder {
    margin: 4rem 0;
}

.reminder-box {
    background: rgba(123, 31, 162, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ce93d8;
    text-align: center;
}

.reminder-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ce93d8;
}

.reminder-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ce93d8;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #bdbdbd;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ce93d8;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.disclaimer-highlight {
    background: rgba(123, 31, 162, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ce93d8;
}

.emphasis {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ce93d8;
}

.disclaimer-footer {
    background: rgba(74, 20, 140, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #7b1fa2;
}

.main-footer {
    background: rgba(26, 0, 51, 0.95);
    border-top: 2px solid #ce93d8;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ce93d8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    color: #bdbdbd;
}

.support-links,
.footer-links {
    list-style: none;
    padding: 0;
}

.support-links li,
.footer-links li {
    margin-bottom: 0.8rem;
}

.support-links a,
.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover,
.footer-links a:hover {
    color: #ce93d8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #7b1fa2;
    color: #bdbdbd;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .play-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}
