* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a1e;
    color: #e0e7ff;
    line-height: 1.6;
}

/* Age Verifier */
.age-verifier {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

.age-verifier.hidden {
    display: none;
}

.verifier-content {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    padding: 60px 50px;
    border-radius: 0;
    text-align: center;
    max-width: 550px;
    position: relative;
    box-shadow: 0 0 100px rgba(99, 102, 241, 0.4), inset 0 0 100px rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.verifier-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #3b82f6, #6366f1);
    opacity: 0.5;
    filter: blur(20px);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verifier-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8));
}

.verifier-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(to right, #818cf8, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verifier-notice {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.verifier-detail {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #c4b5fd;
}

.verifier-info {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #818cf8;
    font-weight: 700;
    letter-spacing: 2px;
}

.verifier-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-confirm {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
}

.btn-deny {
    background: transparent;
    border-color: #ef4444;
    color: #ef4444;
}

.btn-deny:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-3px);
}

/* Header */
.main-header {
    background: rgba(10, 10, 30, 0.95);
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-tag {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #818cf8;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    transition: 0.3s;
}

.main-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu-link {
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.menu-link:hover {
    color: #ffffff;
}

.menu-link:hover::before {
    width: 100%;
}

/* Content Limiter */
.content-limiter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Zone */
.hero-zone {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(99,102,241,0.3)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #818cf8;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(to right, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subline {
    font-size: 1.3rem;
    margin-bottom: 45px;
    color: #c4b5fd;
    line-height: 1.9;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.8);
}

.hero-graphics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 20s linear infinite;
}

.orbit-ring.delay-1 {
    width: 75%;
    height: 75%;
    animation-delay: -7s;
}

.orbit-ring.delay-2 {
    width: 50%;
    height: 50%;
    animation-delay: -14s;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mission Zone */
.mission-zone {
    padding: 100px 40px;
    background: #0f0f27;
}

.mission-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.visual-box {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.box-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #6366f1;
}

.box-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.box-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.box-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.box-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.box-content {
    font-size: 6rem;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8));
}

.zone-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
}

.zone-title.centered {
    text-align: center;
}

.title-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    margin-bottom: 30px;
}

.title-line.centered {
    margin-left: auto;
    margin-right: auto;
}

.zone-paragraph {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #c4b5fd;
    line-height: 1.9;
}

/* Pillars Zone */
.pillars-zone {
    padding: 100px 40px;
    background: #0a0a1e;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.5) 0%, rgba(49, 46, 129, 0.3) 100%);
    padding: 40px 35px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: 0.5s;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.3);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.card-heading {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #818cf8;
    font-weight: 700;
}

.card-body {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

/* Showcase Zone */
.showcase-zone {
    padding: 100px 40px;
    background: #0f0f27;
}

.showcase-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #c4b5fd;
    max-width: 900px;
    margin: 30px auto 50px;
    line-height: 1.9;
}

.showcase-frame {
    background: rgba(10, 10, 30, 0.5);
    padding: 30px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 30px;
}

.showcase-embed {
    width: 100%;
    height: 700px;
    border: none;
}

.showcase-tip {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(99, 102, 241, 0.1);
    padding: 30px;
    border-left: 4px solid #6366f1;
}

.tip-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.showcase-tip p {
    font-size: 1.2rem;
    color: #c4b5fd;
    line-height: 1.8;
}

/* Mandate Zone */
.mandate-zone {
    padding: 100px 40px;
    background: #0a0a1e;
}

.mandate-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(239, 68, 68, 0.1);
    padding: 60px 50px;
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.mandate-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fca5a5;
    font-weight: 900;
    letter-spacing: 3px;
}

.mandate-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mandate-block h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fca5a5;
    font-weight: 700;
}

.mandate-block p {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

/* Tech Zone */
.tech-zone {
    padding: 100px 40px;
    background: #0f0f27;
}

.tech-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    display: flex;
    gap: 30px;
    align-items: start;
    background: rgba(30, 27, 75, 0.3);
    padding: 35px;
    border-left: 4px solid #6366f1;
}

.tech-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.tech-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #818cf8;
    font-weight: 700;
}

.tech-desc {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

/* Play Pages */
.play-intro-zone {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.play-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
    color: #ffffff;
}

.play-description {
    text-align: center;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 30px auto 0;
    color: #c4b5fd;
    line-height: 1.9;
}

.play-display-zone {
    padding: 80px 40px;
    background: #0f0f27;
}

.play-window {
    background: rgba(10, 10, 30, 0.5);
    padding: 30px;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.play-embed {
    width: 100%;
    height: 800px;
    border: none;
}

.play-instructions-zone {
    padding: 80px 40px;
    background: #0a0a1e;
}

.instructions-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.instruction-item {
    text-align: center;
}

.instruction-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.instruction-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #818cf8;
    font-weight: 700;
}

.instruction-text {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

.play-technical-zone {
    padding: 80px 40px;
    background: #0f0f27;
}

.technical-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.technical-card {
    background: rgba(30, 27, 75, 0.3);
    padding: 35px;
    border-left: 4px solid #6366f1;
}

.technical-label {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #818cf8;
    font-weight: 700;
}

.technical-info {
    font-size: 1.1rem;
    color: #c4b5fd;
    line-height: 1.8;
}

.play-alert-zone {
    padding: 80px 40px;
    background: #0a0a1e;
}

.alert-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.1);
    padding: 50px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    text-align: center;
}

.alert-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #6ee7b7;
    font-weight: 900;
    letter-spacing: 3px;
}

.alert-message {
    font-size: 1.2rem;
    color: #c4b5fd;
    line-height: 1.9;
}

/* Legal Pages */
.legal-intro-zone {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.legal-heading {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
    color: #ffffff;
}

.legal-timestamp {
    text-align: center;
    font-size: 1.1rem;
    color: #c4b5fd;
}

.legal-text-zone {
    padding: 80px 40px;
    background: #0f0f27;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 30, 0.5);
    padding: 60px 50px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.legal-document h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #818cf8;
    font-weight: 700;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #c4b5fd;
    line-height: 1.9;
}

.legal-document ul {
    margin-bottom: 30px;
    padding-left: 40px;
    color: #c4b5fd;
}

.legal-document li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background: #0a0a1e;
    padding: 80px 40px 30px;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #818cf8;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-copy {
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #c4b5fd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #818cf8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    color: #9ca3af;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .menu-trigger {
        display: flex;
    }
    
    .main-menu {
        position: fixed;
        top: 88px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 30, 0.98);
        width: 100%;
        padding: 40px;
        transition: 0.3s;
        border-top: 2px solid rgba(99, 102, 241, 0.3);
    }
    
    .main-menu.active {
        right: 0;
    }
    
    .hero-headline, .play-title {
        font-size: 3rem;
    }
    
    .mission-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zone-title {
        font-size: 2.2rem;
    }
    
    .showcase-embed, .play-embed {
        height: 500px;
    }
    
    .legal-document {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .verifier-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .verifier-buttons {
        flex-direction: column;
    }
    
    .hero-headline, .play-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .legal-heading {
        font-size: 2.5rem;
    }
}
