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

body {
    font-family: 'Inter', sans-serif;
    background: #1A1A1A;
    color: #F5F5F5;
    line-height: 1.6;
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.95), rgba(197, 17, 98, 0.95));
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.active {
    display: flex;
}

.age-card {
    background: #FFFFFF;
    max-width: 500px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.age-header {
    background: linear-gradient(135deg, #FF1744, #C51162);
    padding: 40px;
    text-align: center;
    color: white;
}

.age-symbol {
    font-size: 4em;
    display: block;
    margin-bottom: 15px;
}

.age-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
}

.age-body {
    padding: 40px;
    color: #333;
}

.age-primary {
    font-size: 1.15em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

.age-secondary {
    color: #666;
    font-size: 0.95em;
}

.age-actions {
    padding: 0 40px 40px;
    display: flex;
    gap: 15px;
}

.btn-confirm, .btn-deny {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm {
    background: linear-gradient(135deg, #FF1744, #C51162);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 23, 68, 0.4);
}

.btn-deny {
    background: #E0E0E0;
    color: #666;
}

.btn-deny:hover {
    background: #D0D0D0;
}

.page-container {
    min-height: 100vh;
}

.site-header {
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FF1744;
    backdrop-filter: blur(10px);
}

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

.brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #FF1744;
    letter-spacing: 1px;
}

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

.bar {
    width: 30px;
    height: 3px;
    background: #FF1744;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.main-nav {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item:hover, .nav-item.active {
    color: #FF1744;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF1744;
    transition: width 0.3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
    width: 100%;
}

.hero-area {
    background: linear-gradient(135deg, #FF1744 0%, #C51162 50%, #880E4F 100%);
    padding: 140px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5em;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

.hero-button {
    display: inline-block;
    padding: 20px 60px;
    background: #1A1A1A;
    color: #FF1744;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #FF1744;
}

.hero-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.4);
    background: #FF1744;
    color: #1A1A1A;
}

.content-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
}

.about-section {
    background: #222222;
}

.section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3em;
    color: #FF1744;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.text-content p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #D0D0D0;
    margin-bottom: 25px;
}

.game-section {
    background: #1A1A1A;
}

.section-subtext {
    text-align: center;
    font-size: 1.2em;
    color: #999;
    margin-bottom: 50px;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.3);
    border: 3px solid #FF1744;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.principles-section {
    background: #222222;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.principle-card {
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.red-theme {
    background: linear-gradient(145deg, rgba(255, 23, 68, 0.15), rgba(197, 17, 98, 0.1));
    border: 2px solid rgba(255, 23, 68, 0.4);
}

.blue-theme {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.15), rgba(21, 101, 192, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.4);
}

.yellow-theme {
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.15), rgba(255, 160, 0, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.4);
}

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

.principle-emoji {
    font-size: 4em;
    margin-bottom: 25px;
}

.principle-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7em;
    color: #FF1744;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.advantages-section {
    background: #1A1A1A;
}

.advantages-list {
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 5px solid #FF1744;
}

.advantage-marker {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #FF1744;
    line-height: 1;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6em;
    color: #FF1744;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.advantage-content p {
    color: #B0B0B0;
    line-height: 1.7;
}

.closing-cta {
    background: linear-gradient(135deg, #FF1744 0%, #C51162 50%, #880E4F 100%);
    padding: 120px 30px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5em;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.4em;
    margin-bottom: 50px;
}

.site-footer {
    background: #0D0D0D;
    padding: 70px 30px 30px;
    border-top: 3px solid #FF1744;
}

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

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    color: #FF1744;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-transform: uppercase;
}

.footer-col p {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #FF1744;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 23, 68, 0.2);
    color: #666;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 73px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 40px 30px;
        transition: right 0.3s ease;
        border-left: 3px solid #FF1744;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-text {
        font-size: 1.2em;
    }

    .section-heading {
        font-size: 2.2em;
    }

    .game-frame {
        height: 450px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-marker {
        font-size: 2.5em;
    }

    .age-actions {
        flex-direction: column;
    }
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
    background: #222222;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5em;
    color: #FF1744;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.date-stamp {
    color: #666;
    margin-bottom: 40px;
}

.page-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    color: #FF1744;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-content p {
    color: #D0D0D0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.play-banner {
    background: linear-gradient(135deg, #FF1744 0%, #C51162 100%);
    padding: 100px 30px;
    text-align: center;
    color: white;
}

.play-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.play-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
}

.play-section {
    padding: 80px 30px;
    background: #1A1A1A;
}

.game-details {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 5px solid #FF1744;
}

.game-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8em;
    color: #FF1744;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.game-details p {
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 15px;
}