* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-inner {
    width: 100%;
    max-width: 550px;
    padding: 20px;
}

.age-modal-box {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.5);
    border: 3px solid #fff;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.age-modal-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 3px;
}

.modal-main-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-sub-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.modal-disclaimer {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn-accept, .modal-btn-reject {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid #fff;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-btn-accept {
    background: #0d0d0d;
    color: #fff;
}

.modal-btn-accept:hover {
    background: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.modal-btn-reject {
    background: #dc2626;
    color: white;
}

.modal-btn-reject:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Header */
.site-header {
    background: #0d0d0d;
    border-bottom: 3px solid #f97316;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #f97316;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.toggle-bar {
    width: 30px;
    height: 3px;
    background: #f97316;
    transition: 0.3s;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav-item:hover {
    color: #f97316;
    border-bottom-color: #f97316;
}

/* Content Wrapper */
.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: #0d0d0d;
    color: #ffffff;
    padding: 20px 50px;
    border: 3px solid #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-cta:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.visual-element {
    font-size: 5rem;
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

.visual-element:nth-child(2) {
    animation-delay: 0.7s;
}

.visual-element:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Sections */
.overview-section {
    padding: 100px 40px;
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.heading-underline {
    width: 150px;
    height: 4px;
    background: #f97316;
    margin: 0 auto;
}

.overview-text {
    max-width: 1000px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #d1d5db;
}

/* Cards Section */
.cards-section {
    padding: 100px 40px;
    background: #0d0d0d;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: #1a1a1a;
    padding: 40px;
    border: 3px solid #f97316;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
    border-color: #fb923c;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.card-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #f97316;
}

.card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

/* Game Display */
.game-display {
    padding: 100px 40px;
    background: #1a1a1a;
}

.game-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-frame-wrapper {
    background: #0d0d0d;
    padding: 30px;
    border: 3px solid #f97316;
    margin-bottom: 30px;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
}

.game-note {
    text-align: center;
    font-size: 1.2rem;
    color: #f97316;
    padding: 25px;
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid #f97316;
}

/* Warnings Section */
.warnings-section {
    padding: 100px 40px;
    background: #0d0d0d;
}

.warning-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(234, 88, 12, 0.1);
    padding: 50px;
    border: 3px solid #f97316;
}

.warning-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #f97316;
    font-weight: 900;
    letter-spacing: 3px;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.warning-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fb923c;
    font-weight: 700;
}

.warning-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 40px;
    background: #1a1a1a;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-block {
    text-align: center;
}

.benefit-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.3);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.benefit-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
}

.benefit-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

/* Play Page */
.play-banner {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    padding: 80px 40px;
    text-align: center;
}

.play-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.play-subtitle {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.play-area {
    padding: 80px 40px;
    background: #1a1a1a;
}

.play-frame-container {
    background: #0d0d0d;
    padding: 30px;
    border: 3px solid #f97316;
}

.play-frame {
    width: 100%;
    height: 750px;
    border: none;
}

.guide-section {
    padding: 80px 40px;
    background: #0d0d0d;
}

.guide-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.guide-item {
    text-align: center;
}

.guide-step {
    display: inline-block;
    background: #f97316;
    color: #0d0d0d;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.guide-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f97316;
    font-weight: 700;
}

.guide-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.tech-info {
    padding: 80px 40px;
    background: #1a1a1a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: #0d0d0d;
    padding: 35px;
    border-left: 4px solid #f97316;
}

.tech-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f97316;
    font-weight: 700;
}

.tech-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.play-notice {
    padding: 80px 40px;
    background: #0d0d0d;
}

.notice-banner {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.1);
    padding: 50px;
    border: 3px solid #10b981;
    text-align: center;
}

.notice-heading {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #10b981;
    font-weight: 900;
}

.notice-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #d1d5db;
}

/* Legal Pages */
.legal-banner {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    padding: 80px 40px;
    text-align: center;
}

.legal-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.legal-date {
    font-size: 1.2rem;
    opacity: 0.9;
}

.legal-content-section {
    padding: 80px 40px;
    background: #1a1a1a;
}

.legal-document {
    max-width: 1000px;
    margin: 0 auto;
    background: #0d0d0d;
    padding: 60px;
    border: 3px solid #f97316;
}

.legal-document h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #f97316;
    font-weight: 700;
    letter-spacing: 1px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #d1d5db;
    line-height: 1.9;
}

.legal-document ul {
    margin-bottom: 30px;
    padding-left: 40px;
    color: #d1d5db;
}

.legal-document li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #0d0d0d;
    padding: 80px 40px 30px;
    border-top: 3px solid #f97316;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #f97316;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-list a:hover {
    color: #f97316;
}

.footer-bar {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    color: #9ca3af;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 90px;
        right: -100%;
        flex-direction: column;
        background: #0d0d0d;
        width: 100%;
        padding: 40px;
        transition: 0.3s;
        border-top: 3px solid #f97316;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .visual-element {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .game-frame, .play-frame {
        height: 500px;
    }
    
    .legal-document {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .age-modal-box {
        padding: 40px 25px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-cta {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .legal-title, .play-title {
        font-size: 2.5rem;
    }
}
