* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #2d1b4e 0%, #1a0f2e 100%);
    color: #e8e8e8;
    line-height: 1.8;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Modal Overlay for Age Verification */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #3d2666 0%, #2d1b4e 100%);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 50px;
    max-width: 550px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.4);
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 2.2em;
    margin-bottom: 25px;
}

.modal-body p {
    font-size: 1.15em;
    margin-bottom: 15px;
}

.modal-small {
    font-size: 0.95em;
    color: #ccc;
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-size: 1.15em;
    font-family: 'Cinzel', serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: #ffd700;
    color: #2d1b4e;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: #663399;
    color: #fff;
}

.btn-secondary:hover {
    background: #7d3db8;
    transform: translateY(-3px);
}

/* Navigation */
.main-navigation {
    background: rgba(29, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffd700;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2em;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 400;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 4em;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.35em;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: #ffd700;
    color: #2d1b4e;
    text-decoration: none;
    font-size: 1.25em;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
}

.hero-cta:hover {
    background: #ffed4e;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

/* Welcome Section */
.welcome-section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.9;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(61, 38, 102, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ffd700;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3.5em;
    display: block;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6em;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.05em;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 90px 0;
    background: rgba(0, 0, 0, 0.2);
}

.game-embed {
    max-width: 1300px;
    margin: 0 auto 40px;
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: 4px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.game-alerts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.alert {
    padding: 25px;
    border-radius: 12px;
    font-size: 1.1em;
}

.alert-warning {
    background: rgba(255, 100, 50, 0.15);
    border: 2px solid #ff6432;
}

.alert-info {
    background: rgba(102, 51, 153, 0.3);
    border: 2px solid #663399;
}

/* About Platform */
.about-platform {
    padding: 90px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.experience-item {
    text-align: center;
    padding: 35px;
}

.exp-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5em;
    font-weight: 800;
    color: rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
}

.experience-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6em;
    color: #ffd700;
    margin-bottom: 15px;
}

.experience-item p {
    font-size: 1.05em;
    line-height: 1.8;
}

/* Important Notices */
.important-notices {
    padding: 90px 0;
    background: rgba(0, 0, 0, 0.2);
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.notice-box {
    border-radius: 15px;
    padding: 40px;
    border: 3px solid;
}

.age-notice {
    background: rgba(255, 100, 50, 0.1);
    border-color: #ff6432;
}

.entertainment-notice {
    background: rgba(102, 51, 153, 0.2);
    border-color: #663399;
}

.free-notice {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.notice-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.age-notice h3 {
    color: #ff6432;
}

.entertainment-notice h3 {
    color: #9966cc;
}

.free-notice h3 {
    color: #ffd700;
}

/* Page Header */
.page-header {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5em;
    color: #ffd700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto;
}

/* Game Display */
.game-display {
    padding: 50px 0 90px;
}

.game-frame-container {
    max-width: 1400px;
    margin: 0 auto;
}

.full-game-iframe {
    width: 100%;
    height: 850px;
    border: 4px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Gameplay Information */
.gameplay-information {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 45px;
}

.info-col {
    background: rgba(61, 38, 102, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 35px;
}

.info-col h3 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.info-col p {
    line-height: 1.8;
}

.play-reminder {
    background: rgba(255, 100, 50, 0.15);
    border: 3px solid #ff6432;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.play-reminder p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Legal Document */
.legal-document {
    padding: 70px 0;
}

.legal-document h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5em;
    color: #ffd700;
    margin-bottom: 15px;
}

.document-date {
    font-style: italic;
    color: #aaa;
    margin-bottom: 50px;
    font-size: 1.05em;
}

.legal-text {
    max-width: 1100px;
}

.legal-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2em;
    color: #ffd700;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-text h3, .legal-text h4 {
    color: #ffed4e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-text p {
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05em;
}

.legal-text ul {
    margin-left: 35px;
    margin-bottom: 18px;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-text a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: #ffd700;
}

/* Footer */
.site-footer {
    background: rgba(29, 15, 46, 0.95);
    padding: 70px 0 25px;
    border-top: 3px solid #ffd700;
    margin-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-column p {
    line-height: 1.8;
    font-size: 1.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #e8e8e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
}

.support-links a {
    color: #9966cc;
}

.support-links a:hover {
    color: #b380ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #aaa;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(29, 15, 46, 0.98);
        flex-direction: column;
        padding: 90px 35px;
        transition: right 0.3s ease;
        border-left: 3px solid #ffd700;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4em;
        padding: 18px 0;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-text {
        font-size: 1.15em;
    }

    .section-header h2 {
        font-size: 2.2em;
    }

    .feature-cards, .experience-grid, .notices-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 550px;
    }

    .full-game-iframe {
        height: 650px;
    }

    .page-header h1 {
        font-size: 2.5em;
    }

    .legal-document h1 {
        font-size: 2.5em;
    }

    .legal-text h2 {
        font-size: 1.6em;
    }
}
