* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #16213e, #0f3460);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.site-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-family: 'Cinzel', serif;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: #ffd700;
}

.main-nav a:hover::before {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.page-content {
    padding: 0;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(255, 215, 0, 0.2));
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 22px;
    color: #d0d0d0;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
}

.feature-symbol {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.feature-item p {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffd700;
}

.critical-info {
    padding: 80px 0;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffd700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.info-block {
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.gold-block {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(155, 89, 182, 0.1));
}

.purple-block {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(255, 215, 0, 0.1));
}

.dark-block {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(155, 89, 182, 0.2));
}

.block-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.info-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 18px;
}

.info-block p {
    line-height: 1.9;
    color: #d0d0d0;
}

.game-chamber {
    padding: 80px 0;
    background: rgba(155, 89, 182, 0.05);
}

.chamber-desc {
    text-align: center;
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 50px;
}

.game-portal {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.game-portal iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.portal-notes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #d0d0d0;
}

.note-icon {
    font-size: 28px;
}

.realm-info {
    padding: 80px 0;
}

.realm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.realm-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.realm-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #9b59b6;
    margin-bottom: 20px;
}

.realm-card p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: #c0c0c0;
}

.play-intro {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3), rgba(255, 215, 0, 0.2));
    padding: 70px 0;
    text-align: center;
}

.play-intro h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
}

.play-tagline {
    font-size: 20px;
    color: #d0d0d0;
}

.play-zone {
    padding: 70px 0;
}

.game-frame {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-guidance {
    padding: 70px 0;
    background: rgba(155, 89, 182, 0.05);
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.guidance-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.guidance-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
}

.guidance-card p {
    line-height: 1.9;
    color: #c0c0c0;
}

.legal-chamber {
    padding: 70px 0;
}

.legal-chamber h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
}

.document-date {
    font-style: italic;
    color: #888;
    margin-bottom: 50px;
}

.legal-scroll {
    max-width: 950px;
    background: rgba(26, 26, 46, 0.7);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-scroll h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #9b59b6;
    margin-top: 35px;
    margin-bottom: 18px;
}

.legal-scroll h2:first-child {
    margin-top: 0;
}

.legal-scroll p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: #d0d0d0;
}

.site-footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding: 60px 0 25px;
    margin-top: 80px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    color: #b0b0b0;
}

.resource-list {
    list-style: none;
    margin-top: 15px;
}

.resource-list li {
    margin: 12px 0;
}

.resource-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover {
    color: #ffd700;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

.footer-seal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #888;
}

.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.hidden {
    display: none;
}

.modal-inner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 55px;
    border-radius: 20px;
    text-align: center;
    max-width: 520px;
    margin: 20px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
}

.modal-symbol {
    font-size: 72px;
    margin-bottom: 25px;
}

.modal-inner h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 25px;
}

.modal-inner p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.modal-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.modal-actions button {
    flex: 1;
    font-family: 'Cinzel', serif;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: linear-gradient(135deg, #ffd700, #9b59b6);
    color: white;
}

.confirm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.decline-btn {
    background: #3a3a52;
    color: #999;
}

.decline-btn:hover {
    background: #4a4a62;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        font-size: 20px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-lead {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .info-blocks,
    .realm-grid,
    .guidance-grid {
        grid-template-columns: 1fr;
    }
    
    .game-portal iframe,
    .game-frame iframe {
        height: 500px;
    }
    
    .modal-inner {
        padding: 40px;
    }
    
    .modal-inner h2 {
        font-size: 28px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .legal-scroll {
        padding: 35px;
    }
}
