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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #001e3c 0%, #003d5c 50%, #001e3c 100%);
    color: #e0f2f7;
    min-height: 100vh;
}

.top-header {
    background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    border-bottom-color: white;
    opacity: 1;
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.content-wrapper {
    min-height: calc(100vh - 100px);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23003d5c" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 4px solid #06B6D4;
}

.hero-overlay h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-lead {
    font-size: 1.4rem;
    color: #b3e5fc;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #06B6D4;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #b3e5fc;
}

.key-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.principle-card {
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
}

.principle-card.danger {
    background: linear-gradient(135deg, #c62828 0%, #ef5350 100%);
}

.principle-card.success {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
}

.principle-card.warning {
    background: linear-gradient(135deg, #f57c00 0%, #ffb74d 100%);
}

.principle-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.principle-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.principle-card p {
    line-height: 1.7;
    color: white;
}

.game-feature {
    margin-bottom: 4rem;
}

.feature-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #06B6D4;
    margin-bottom: 1rem;
}

.feature-header p {
    font-size: 1.2rem;
    color: #b3e5fc;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto 2rem;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(6, 182, 212, 0.3);
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-info-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border-left: 4px solid #06B6D4;
    border-radius: 8px;
}

.game-info-box p {
    color: #b3e5fc;
    line-height: 1.6;
}

.platform-features {
    margin-bottom: 4rem;
}

.platform-features h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #06B6D4;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feat-card {
    background: rgba(8, 145, 178, 0.2);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.feat-card:hover {
    border-color: #06B6D4;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.feat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feat-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #06B6D4;
    margin-bottom: 1rem;
}

.feat-card p {
    color: #b3e5fc;
    line-height: 1.6;
}

.about-virtual {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(8, 145, 178, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.about-virtual h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #06B6D4;
    margin-bottom: 2rem;
    text-align: center;
}

.virtual-explainer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b3e5fc;
    margin-bottom: 1.5rem;
}

.commitment-block {
    margin-bottom: 4rem;
}

.commitment-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #06B6D4;
    margin-bottom: 2rem;
    text-align: center;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b3e5fc;
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.commitment-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #b3e5fc;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: bold;
    font-size: 1.2rem;
}

.page-title {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.page-title h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.page-title p {
    font-size: 1.2rem;
    color: #b3e5fc;
}

.play-guide {
    margin-bottom: 3rem;
}

.play-guide h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #06B6D4;
    text-align: center;
    margin-bottom: 2rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.step-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(6, 182, 212, 0.5);
    margin-bottom: 1rem;
}

.step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #06B6D4;
    margin-bottom: 1rem;
}

.step p {
    color: #b3e5fc;
    line-height: 1.6;
}

.game-area {
    margin-bottom: 3rem;
}

.game-window {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(6, 182, 212, 0.3);
}

.game-window iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.tech-info {
    margin-bottom: 3rem;
}

.tech-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #06B6D4;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tech-item {
    padding: 2rem;
    background: rgba(8, 145, 178, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    text-align: center;
}

.tech-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #06B6D4;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #b3e5fc;
    line-height: 1.6;
}

.play-reminders-section {
    max-width: 900px;
    margin: 0 auto;
}

.reminder-panel {
    background: rgba(6, 182, 212, 0.15);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #06B6D4;
}

.reminder-panel h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: #06B6D4;
    margin-bottom: 1.5rem;
}

.reminder-panel ul {
    list-style: none;
    padding-left: 0;
}

.reminder-panel li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #b3e5fc;
    line-height: 1.6;
}

.reminder-panel li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #06B6D4;
    font-size: 1.5rem;
}

.legal-document {
    background: rgba(8, 145, 178, 0.1);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.legal-document h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: #06B6D4;
    margin: 2.5rem 0 1rem 0;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    line-height: 1.8;
    color: #b3e5fc;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-document li {
    color: #b3e5fc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.alert-box {
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.alert-box.critical {
    background: rgba(198, 40, 40, 0.2);
    border: 2px solid #ef5350;
}

.alert-box.confirm {
    background: rgba(6, 182, 212, 0.2);
    border: 2px solid #06B6D4;
}

.alert-box h2 {
    margin-top: 0 !important;
}

.site-footer {
    background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-links {
    list-style: none;
    padding: 0;
}

.support-links li {
    margin-bottom: 0.75rem;
}

.support-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-links a:hover {
    text-decoration: underline;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.gate-panel {
    background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(6, 182, 212, 0.5);
}

.gate-symbol {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.gate-panel h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.gate-panel p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.gate-actions button {
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #2e7d32;
    color: white;
}

.btn-confirm:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

.btn-decline {
    background: #c62828;
    color: white;
}

.btn-decline:hover {
    background: #8e0000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .intro-section h2,
    .feature-header h2,
    .platform-features h2,
    .page-title h1 {
        font-size: 2rem;
    }
    
    .game-embed iframe,
    .game-window iframe {
        height: 400px;
    }
    
    .gate-panel {
        margin: 1rem;
        padding: 2rem;
    }
    
    .gate-actions {
        flex-direction: column;
    }
}
