* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0a0118;
    color: #e9d5ff;
    line-height: 1.7;
}

.age-verification {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.97), rgba(236, 72, 153, 0.97));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(15px);
}

.age-verification.hidden {
    display: none;
}

.verification-panel {
    background: #1e1b4b;
    padding: 4rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 2px solid #8b5cf6;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.verification-icon {
    font-size: 4rem;
    color: #c084fc;
    margin-bottom: 1.5rem;
}

.verification-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #c084fc;
    margin-bottom: 1rem;
}

.verification-text {
    font-size: 1.1rem;
    color: #d8b4fe;
    margin-bottom: 1rem;
}

.verification-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    margin: 2rem 0;
}

.age-notice {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e9d5ff;
    margin-bottom: 2rem;
}

.verification-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verify-accept, .verify-decline {
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.verify-accept {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
}

.verify-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.verify-decline {
    background: #312e81;
    color: #d8b4fe;
}

.verify-decline:hover {
    background: #4c1d95;
}

.site-header {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8b5cf6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c084fc;
}

.primary-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-option {
    color: #d8b4fe;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

.nav-option:hover, .nav-option.current {
    color: #c084fc;
}

.nav-option::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.3s;
}

.nav-option:hover::before, .nav-option.current::before {
    width: 100%;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.trigger-bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-trigger.open .trigger-bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-trigger.open .trigger-bar:nth-child(2) {
    opacity: 0;
}

.menu-trigger.open .trigger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.showcase-banner {
    position: relative;
    background: linear-gradient(135deg, #1e1b4b 0%, #0a0118 100%);
    padding: 8rem 2.5rem;
    text-align: center;
    overflow: hidden;
}

.banner-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
    pointer-events: none;
}

.banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-heading {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #c084fc;
    line-height: 1.2;
}

.showcase-text {
    font-size: 1.35rem;
    color: #d8b4fe;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-action {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.showcase-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
}

.info-container, .gaming-container, .distinction-container, .philosophy-container, .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.essential-info {
    padding: 6rem 0;
    background: #0a0118;
}

.info-heading {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #c084fc;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-block {
    background: #1e1b4b;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid;
    transition: all 0.3s;
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.info-block.violet {
    border-color: #8b5cf6;
}

.info-block.purple {
    border-color: #a78bfa;
}

.info-block.pink {
    border-color: #ec4899;
}

.block-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
    color: #c084fc;
}

.info-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #e9d5ff;
}

.info-block p {
    color: #d8b4fe;
    line-height: 1.8;
}

.featured-gaming {
    padding: 6rem 0;
    background: #1e1b4b;
}

.gaming-heading {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #c084fc;
}

.gaming-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #d8b4fe;
}

.gaming-presentation {
    background: #0a0118;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #8b5cf6;
    margin-bottom: 2.5rem;
}

.gaming-frame {
    width: 100%;
    height: 700px;
    border-radius: 10px;
}

.gaming-guidance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guidance-item {
    background: #0a0118;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    color: #d8b4fe;
}

.distinction-section {
    padding: 6rem 0;
    background: #0a0118;
}

.distinction-heading {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #c084fc;
}

.distinction-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.distinction-item {
    background: #1e1b4b;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #4c1d95;
    transition: all 0.3s;
}

.distinction-item:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.distinction-marker {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.distinction-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e9d5ff;
}

.distinction-item p {
    color: #d8b4fe;
    line-height: 1.7;
}

.philosophy-section {
    padding: 6rem 0;
    background: #1e1b4b;
}

.philosophy-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: #0a0118;
    padding: 4rem;
    border-radius: 15px;
    border: 2px solid #8b5cf6;
}

.philosophy-heading {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #c084fc;
}

.philosophy-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #d8b4fe;
}

.site-footer {
    background: #0a0118;
    padding: 4rem 0 2rem;
    border-top: 2px solid #8b5cf6;
}

.footer-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-segment h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #c084fc;
}

.footer-segment p {
    color: #a78bfa;
    margin-bottom: 1rem;
}

.footer-segment a {
    display: block;
    color: #d8b4fe;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.footer-segment a:hover {
    color: #c084fc;
    padding-left: 0.5rem;
}

.footer-emphasis {
    color: #8b5cf6;
    font-weight: 700;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4c1d95;
    color: #a78bfa;
}

@media (max-width: 1024px) {
    .primary-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e1b4b;
        flex-direction: column;
        padding: 2rem 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
        display: none;
        border-bottom: 2px solid #8b5cf6;
    }
    
    .primary-navigation.open {
        display: flex;
    }
    
    .menu-trigger {
        display: flex;
    }
    
    .showcase-heading {
        font-size: 2.8rem;
    }
    
    .gaming-frame {
        height: 500px;
    }
}

@media (max-width: 640px) {
    .verification-panel {
        margin: 1.5rem;
        padding: 2.5rem;
    }
    
    .verification-panel h2 {
        font-size: 2rem;
    }
    
    .showcase-banner {
        padding: 5rem 1.5rem;
    }
    
    .showcase-heading {
        font-size: 2rem;
    }
    
    .showcase-text {
        font-size: 1.15rem;
    }
    
    .info-container, .gaming-container, .distinction-container, .philosophy-container, .footer-container {
        padding: 0 1.5rem;
    }
    
    .info-heading, .gaming-heading, .distinction-heading {
        font-size: 2rem;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .gaming-presentation {
        padding: 1rem;
    }
    
    .gaming-frame {
        height: 400px;
    }
    
    .gaming-guidance {
        grid-template-columns: 1fr;
    }
    
    .distinction-layout {
        grid-template-columns: 1fr;
    }
    
    .philosophy-panel {
        padding: 2.5rem;
    }
    
    .footer-segments {
        grid-template-columns: 1fr;
    }
}
