* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #fafafa;
    color: #262626;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Age Verification */
.age-verify-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-verify-modal.active {
    display: flex;
}

.verify-box {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.verify-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.verify-box h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.verify-box p {
    font-size: 1.05rem;
    color: #525252;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.verify-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.verify-btn.accept {
    background: #fb923c;
    color: white;
}

.verify-btn.accept:hover {
    background: #f97316;
    transform: translateY(-2px);
}

.verify-btn.decline {
    background: #e5e5e5;
    color: #404040;
}

.verify-btn.decline:hover {
    background: #d4d4d4;
}

/* Header */
.app-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fb923c;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #525252;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #fb923c;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: #fb923c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Intro Section */
.intro-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.intro-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fb923c;
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text h1 {
    font-size: 3rem;
    color: #262626;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.2rem;
    color: #525252;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.action-btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #fb923c;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

.action-btn:hover {
    background: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.4);
}

.intro-graphic {
    position: relative;
    height: 400px;
}

.graphic-element {
    position: absolute;
    font-size: 4rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.el-1 {
    top: 10%;
    left: 10%;
}

.el-2 {
    top: 50%;
    right: 15%;
    animation-delay: 0.7s;
}

.el-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 1.4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Advantages Section */
.advantages {
    padding: 5rem 2rem;
    background: white;
}

.advantages-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage {
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 20px;
    border: 2px solid #f5f5f5;
    transition: all 0.3s ease;
    text-align: center;
}

.advantage:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #fb923c;
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage h3 {
    font-size: 1.5rem;
    color: #262626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantage p {
    color: #737373;
    line-height: 1.8;
}

/* Game Display */
.game-display {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}

.display-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.display-header {
    text-align: center;
    margin-bottom: 3rem;
}

.display-header h2 {
    font-size: 2.5rem;
    color: #262626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.display-header p {
    font-size: 1.1rem;
    color: #737373;
}

.game-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 3px solid #fb923c;
}

.game-window {
    width: 100%;
    height: 650px;
    border: none;
}

/* Key Info Section */
.key-info {
    padding: 5rem 2rem;
    background: white;
}

.key-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.key-wrapper h2 {
    font-size: 2.5rem;
    color: #262626;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-box {
    padding: 2.5rem;
    background: #fff7ed;
    border-radius: 20px;
    border: 2px solid #fed7aa;
}

.info-box h4 {
    font-size: 1.3rem;
    color: #fb923c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p {
    color: #525252;
    line-height: 1.8;
}

/* Value Props */
.value-props {
    padding: 5rem 2rem;
    background: #fafafa;
}

.props-container {
    max-width: 1100px;
    margin: 0 auto;
}

.props-container h2 {
    font-size: 2.5rem;
    color: #262626;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.props-list {
    display: grid;
    gap: 2rem;
}

.prop {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.prop:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.prop-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #fb923c;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.prop-content h3 {
    font-size: 1.4rem;
    color: #262626;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.prop-content p {
    color: #737373;
    line-height: 1.8;
}

/* Responsible Play */
.responsible-play {
    padding: 5rem 2rem;
    background: white;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #fff7ed;
    border-radius: 20px;
}

.responsible-content h2 {
    font-size: 2.5rem;
    color: #262626;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsible-content p {
    font-size: 1.1rem;
    color: #525252;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.support-orgs {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.support-orgs a {
    padding: 1rem 2rem;
    background: #fb923c;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-orgs a:hover {
    background: #f97316;
    transform: translateY(-2px);
}

/* Play Page */
.play-main {
    min-height: 70vh;
}

.play-intro {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    padding: 4rem 2rem;
    text-align: center;
}

.play-intro h1 {
    font-size: 2.8rem;
    color: #262626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.play-intro p {
    font-size: 1.2rem;
    color: #525252;
}

.play-section {
    padding: 3rem 2rem;
    background: #fafafa;
}

.play-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.play-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.play-info h3 {
    font-size: 1.5rem;
    color: #fb923c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.info-item {
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    border-left: 4px solid #fb923c;
    color: #525252;
    line-height: 1.8;
}

.info-item strong {
    color: #262626;
    display: block;
    margin-bottom: 0.5rem;
}

.game-play-area {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 3px solid #fb923c;
    margin-bottom: 2.5rem;
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
}

.play-alert {
    background: #fff7ed;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #fb923c;
}

.play-alert p {
    color: #c2410c;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Legal Page */
.legal-main {
    padding: 4rem 2rem;
    background: #fafafa;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.8rem;
    color: #262626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.date-updated {
    color: #a3a3a3;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-item {
    margin-bottom: 2.5rem;
}

.legal-item h2 {
    font-size: 1.7rem;
    color: #fb923c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-item p {
    color: #525252;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-item ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-item li {
    color: #525252;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-item strong {
    color: #262626;
}

.legal-item a {
    color: #fb923c;
    text-decoration: underline;
}

.critical-notice {
    background: #fff7ed;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid #fb923c;
}

.critical-notice h2 {
    font-size: 1.8rem;
    color: #fb923c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.critical-notice p {
    font-size: 1.05rem;
    color: #c2410c;
    line-height: 1.8;
}

/* Footer */
.app-footer {
    background: #262626;
    padding: 3.5rem 2rem;
    color: white;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fb923c;
}

.footer-resources {
    margin-bottom: 2rem;
}

.footer-resources p {
    color: #a3a3a3;
    margin-bottom: 1rem;
}

.resource-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-links a {
    color: #fb923c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #f97316;
}

.footer-legal {
    color: #737373;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        display: block;
        margin: 1.5rem 0;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h1 {
        font-size: 2.3rem;
    }

    .intro-graphic {
        height: 300px;
    }

    .graphic-element {
        font-size: 2.5rem;
        padding: 1rem;
    }

    .advantages-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 450px;
    }

    .game-player {
        height: 550px;
    }

    .prop {
        flex-direction: column;
        gap: 1.5rem;
    }

    .verify-actions {
        flex-direction: column;
    }

    .support-orgs {
        flex-direction: column;
        align-items: center;
    }

    .legal-container {
        padding: 2.5rem 1.5rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}
