* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f1e 50%, #000000 100%);
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, #16213e 0%, #0f3460 100%);
    padding: 60px 50px;
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    border: 3px solid #e94560;
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
}

.age-icon {
    font-size: 90px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.age-modal-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-modal-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c4c4c4;
    line-height: 1.6;
}

.age-notice {
    font-style: italic;
    color: #ffd700;
    margin-top: 10px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 18px 40px;
    font-size: 17px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, #e94560 0%, #c91f40 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.5);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #ff5577 0%, #e94560 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.7);
}

.btn-deny {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
    color: white;
}

.btn-deny:hover {
    background: linear-gradient(135deg, #666666 0%, #444444 100%);
    transform: translateY(-3px);
}

.site-header {
    background: rgba(15, 15, 30, 0.9);
    border-bottom: 3px solid #e94560;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    color: #e94560;
    letter-spacing: 4px;
}

.brand-icon {
    font-size: 42px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 32px;
    height: 4px;
    background: #e94560;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #c4c4c4;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        padding-top: 120px;
        gap: 10px;
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 30px;
        font-size: 22px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero {
    padding: 120px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(15, 52, 96, 0.15) 100%);
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(233, 69, 96, 0.6);
}

.hero-text {
    font-size: 22px;
    color: #d0d0d0;
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(233, 69, 96, 0.2);
    border: 2px solid #e94560;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(233, 69, 96, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
}

.important-notices {
    padding: 90px 5%;
    background: rgba(15, 52, 96, 0.1);
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.7) 0%, rgba(15, 52, 96, 0.7) 100%);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #e94560;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 15px;
}

.notice-card p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
}

.featured-game {
    padding: 90px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.game-header {
    text-align: center;
    margin-bottom: 60px;
}

.game-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(233, 69, 96, 0.5);
}

.game-header p {
    font-size: 20px;
    color: #c4c4c4;
    font-style: italic;
}

.game-showcase {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.game-display {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e94560;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.5);
}

.game-display iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-details {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.7) 0%, rgba(15, 52, 96, 0.7) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e94560;
}

.game-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
}

.game-details p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 25px;
    line-height: 1.7;
}

.game-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.feature-label {
    font-weight: 700;
    color: #e94560;
}

.feature-value {
    color: #c4c4c4;
}

.play-button {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #c91f40 100%);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.play-button:hover {
    background: linear-gradient(135deg, #ff5577 0%, #e94560 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

.about-astralora {
    padding: 90px 5%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.08) 0%, rgba(15, 52, 96, 0.08) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.5) 0%, rgba(15, 52, 96, 0.5) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(233, 69, 96, 0.4);
}

.about-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
}

.about-block p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.statistics {
    padding: 100px 5%;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(233, 69, 96, 0.5);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.8) 100%);
    padding: 50px 60px;
    border-radius: 20px;
    border: 2px solid #e94560;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #c4c4c4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.safety-info {
    padding: 90px 5%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
}

.safety-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.7) 0%, rgba(15, 52, 96, 0.7) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #e94560;
    display: flex;
    gap: 35px;
    align-items: center;
}

.safety-icon {
    font-size: 70px;
    flex-shrink: 0;
}

.safety-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 15px;
}

.safety-text p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.8;
}

.site-footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 3px solid #e94560;
    padding: 70px 5% 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 16px;
    color: #c4c4c4;
    margin-bottom: 20px;
    line-height: 1.7;
}

.resource-links,
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-links a,
.footer-nav a {
    color: #e94560;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-links a:hover,
.footer-nav a:hover {
    color: #ff5577;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(233, 69, 96, 0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 15px;
    color: #999;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-weight: 700;
    color: #e94560;
}

.play-main .play-intro {
    padding: 90px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(15, 52, 96, 0.15) 100%);
}

.play-main .play-intro h1 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(233, 69, 96, 0.5);
}

.play-main .play-intro p {
    font-size: 20px;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
}

.game-area {
    padding: 70px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.game-player {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e94560;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.5);
}

.game-player iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.play-guidance {
    padding: 70px 5%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.08) 0%, rgba(15, 52, 96, 0.08) 100%);
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.guidance-card {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.6) 0%, rgba(15, 52, 96, 0.6) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(233, 69, 96, 0.4);
}

.guidance-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
}

.guidance-card ul {
    list-style: none;
}

.guidance-card li {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.guidance-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #e94560;
    font-size: 16px;
}

.reminder-banner {
    padding: 70px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.reminder-content {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.2) 0%, rgba(15, 52, 96, 0.2) 100%);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid #e94560;
    display: flex;
    gap: 30px;
    align-items: center;
}

.reminder-emoji {
    font-size: 65px;
    flex-shrink: 0;
}

.reminder-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 12px;
}

.reminder-text p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
}

.legal-main {
    padding: 70px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.6) 0%, rgba(15, 52, 96, 0.6) 100%);
    padding: 70px;
    border-radius: 20px;
    border: 2px solid #e94560;
}

.legal-wrapper h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 25px rgba(233, 69, 96, 0.5);
}

.legal-date {
    text-align: center;
    font-size: 17px;
    color: #999;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-article {
    margin-bottom: 45px;
}

.legal-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.legal-article h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ff5577;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-article p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-highlight {
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.2) 0%, rgba(15, 52, 96, 0.2) 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #e94560;
    margin-top: 40px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.summary-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.summary-box strong {
    display: block;
    color: #e94560;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.summary-box span {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .game-showcase {
        grid-template-columns: 1fr;
    }

    .game-display iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 18px;
    }

    .game-header h2,
    .section-title {
        font-size: 36px;
    }

    .notice-cards,
    .about-grid,
    .guidance-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
    }

    .game-player iframe {
        height: 400px;
    }

    .safety-panel,
    .reminder-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-wrapper {
        padding: 40px 25px;
    }

    .legal-wrapper h1 {
        font-size: 36px;
    }

    .legal-article h2 {
        font-size: 26px;
    }

    .age-modal-content {
        padding: 40px 30px;
    }

    .age-modal-content h2 {
        font-size: 28px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
