* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #1a1410 0%, #2d2416 100%);
    color: #f5e6d3;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Verification */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #2d2416 0%, #3d3020 100%);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    border: 2px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-question {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.age-info {
    color: #d4af37;
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.age-btn.confirm {
    background: #ffd700;
    color: #1a1410;
}

.age-btn.confirm:hover {
    background: #ffed4e;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.age-btn.decline {
    background: #4a3f2f;
    color: #f5e6d3;
}

.age-btn.decline:hover {
    background: #3a2f1f;
}

/* Top Navigation */
.top-nav {
    background: rgba(26, 20, 16, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #ffd700;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
}

.hero-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: #d4af37;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ffd700;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Critical Notice */
.critical-notice {
    margin-bottom: 3rem;
}

.notice-wrapper {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #ffd700;
}

.notice-title {
    font-size: 1.8rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.notice-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.notice-box strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Value Propositions */
.value-props {
    margin-bottom: 3rem;
}

.prop-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prop-item {
    display: flex;
    gap: 1rem;
    background: rgba(45, 36, 22, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.prop-item:hover {
    border-color: #ffd700;
    transform: translateX(5px);
}

.prop-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.prop-content h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* About Celesthor */
.about-celesthor {
    background: rgba(45, 36, 22, 0.4);
    padding: 2rem;
    border-radius: 10px;
}

.about-celesthor p {
    margin-bottom: 1rem;
}

/* Featured Game */
.featured-game {
    background: rgba(45, 36, 22, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.game-embed {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.game-details {
    text-align: center;
}

.game-details p {
    margin: 0.5rem 0;
    color: #d4af37;
}

.game-details strong {
    color: #ffd700;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(45, 36, 22, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.benefit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

/* Instructions */
.instructions {
    margin-bottom: 2rem;
}

.instruction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.instruction-card {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ffd700;
}

.instruction-card h3 {
    color: #ffd700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* Play Area */
.play-area {
    margin-bottom: 3rem;
}

.play-wrapper {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 12px;
}

/* Gameplay Tips */
.gameplay-tips {
    background: rgba(45, 36, 22, 0.4);
    padding: 2.5rem;
    border-radius: 12px;
}

.tips-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.tip-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page-header {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #ffd700;
}

.legal-page-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #d4af37;
    font-style: italic;
}

.legal-document {
    background: rgba(45, 36, 22, 0.3);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.legal-document h2 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.6rem;
}

.disclaimer-warning {
    background: rgba(255, 215, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ffd700;
    margin-bottom: 2rem;
}

.disclaimer-warning h2 {
    margin-top: 0;
}

/* Footer */
.footer {
    background: rgba(26, 20, 16, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #ffd700;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-copy {
    margin-top: 1rem;
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(26, 20, 16, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .game-iframe {
        height: 450px;
    }

    .legal-document {
        padding: 1.5rem;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem;
    }

    .game-iframe {
        height: 400px;
    }

    .brand-text {
        font-size: 1.3rem;
    }
}
