* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to right, #fff5f5 0%, #fee2e2 50%, #fef3c7 100%);
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Check Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(239, 68, 68, 0.95) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.warning-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #dc2626;
    font-weight: 700;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #4b5563;
    text-align: center;
}

.modal-question {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-top: 1.5rem !important;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
}

.btn-decline {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-decline:hover {
    background: #e5e7eb;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #dc2626;
}

.nav-item:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.hero-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill-icon {
    font-size: 1.5rem;
}

.pill-text {
    font-weight: 600;
}

/* Intro Text */
.intro-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 700;
}

.text-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.text-columns p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Game Embed */
.game-embed {
    margin-bottom: 3rem;
}

.embed-header {
    text-align: center;
    margin-bottom: 2rem;
}

.embed-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.8rem;
    font-weight: 900;
}

.embed-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.embed-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.game-embed-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.embed-footer {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.embed-footer p {
    color: #4b5563;
}

/* Value Props */
.value-props {
    margin-bottom: 3rem;
}

.value-props h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #dc2626;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prop-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #dc2626;
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #dc2626;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.prop-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Important Info */
.important-info {
    margin-bottom: 3rem;
}

.important-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #dc2626;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-block {
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid;
}

.info-block.warning {
    background: #fef3c7;
    border-color: #f59e0b;
}

.info-block.alert {
    background: #fee2e2;
    border-color: #dc2626;
}

.info-block.info {
    background: #dbeafe;
    border-color: #3b82f6;
}

.info-block h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-block.warning h3 {
    color: #92400e;
}

.info-block.alert h3 {
    color: #991b1b;
}

.info-block.info h3 {
    color: #1e40af;
}

.info-block p {
    line-height: 1.7;
}

.info-block.warning p {
    color: #78350f;
}

.info-block.alert p {
    color: #7f1d1d;
}

.info-block.info p {
    color: #1e3a8a;
}

/* Responsibility Statement */
.responsibility-statement {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 3px solid #fbbf24;
}

.responsibility-statement h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsibility-statement p {
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Play Page */
.play-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.play-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 900;
}

.play-hero p {
    font-size: 1.2rem;
    color: #6b7280;
}

.game-section {
    margin-bottom: 3rem;
}

.game-details {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.game-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 700;
}

.details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box ul li {
    color: #4b5563;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.detail-box ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.play-warning {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #fbbf24;
    margin-top: 2rem;
}

.play-warning p {
    color: #78350f;
    line-height: 1.7;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.legal-document h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.legal-document h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #dc2626;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-document p,
.legal-document ul,
.legal-document li {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-document ul {
    margin-left: 2rem;
    list-style: disc;
}

.doc-date {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 2rem !important;
}

.critical-notice {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #dc2626;
    margin: 2rem 0;
}

.critical-notice h2 {
    margin-top: 0 !important;
    color: #991b1b !important;
}

.critical-notice ul {
    list-style: none;
    margin-left: 0;
}

.critical-notice li {
    padding: 0.5rem 0;
    color: #7f1d1d !important;
}

.summary-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #3b82f6;
    margin-top: 2rem;
    text-align: center;
}

.summary-box p {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: white;
    border-top: 4px solid #dc2626;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-sections {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #6b7280;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .hero-container h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .game-embed-frame {
        height: 450px;
    }

    .text-columns {
        grid-template-columns: 1fr;
    }

    .props-grid,
    .info-blocks,
    .details-content {
        grid-template-columns: 1fr;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .intro-text,
    .game-details,
    .legal-document,
    .responsibility-statement {
        padding: 2rem 1.5rem;
    }
}
