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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #fff7ed, #ffedd5);
    color: #292524;
    line-height: 1.7;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.age-gate-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid #ea580c;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.age-gate-card h2 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-gate-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-note {
    background: #fff7ed;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #fb923c;
    margin: 1.5rem 0;
    text-align: left;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-yes, .btn-no {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.btn-yes {
    background: #ea580c;
    color: white;
}

.btn-yes:hover {
    background: #c2410c;
    transform: scale(1.05);
}

.btn-no {
    background: #e7e5e4;
    color: #57534e;
}

.btn-no:hover {
    background: #d6d3d1;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo svg {
    height: 60px;
}

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

.menu-btn span {
    width: 30px;
    height: 3px;
    background: #ea580c;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.nav-item {
    color: #78716c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-item:hover {
    color: #ea580c;
    background: #fff7ed;
}

.nav-item.active {
    color: #ea580c;
    background: #ffedd5;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.banner-content h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Content Wrap */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Alerts Row */
.alerts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alert-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.alert-card.red {
    background: #fef2f2;
    border: 3px solid #ef4444;
}

.alert-card.yellow {
    background: #fefce8;
    border: 3px solid #eab308;
}

.alert-card.orange {
    background: #fff7ed;
    border: 3px solid #f97316;
}

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

.alert-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* About Block */
.about-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.about-block h2 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #57534e;
}

/* Game Area */
.game-area {
    margin-bottom: 3rem;
}

.game-area h2 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #57534e;
}

.game-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.game-hints {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hint-box {
    background: #fff7ed;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #fb923c;
}

/* Perks Section */
.perks-section {
    margin-bottom: 3rem;
}

.perks-section h2 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.perk-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid #fb923c;
}

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

.perk-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perk-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.perk-card p {
    color: #78716c;
}

/* Responsibility Block */
.responsibility-block {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #eab308;
    margin-bottom: 3rem;
}

.responsibility-block h2 {
    font-family: 'Quicksand', sans-serif;
    color: #92400e;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.responsibility-block p {
    color: #78350f;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Play Tips */
.play-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tip-icon {
    font-size: 3rem;
}

.tip-text h3 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.tip-text p {
    color: #78716c;
}

/* Play Reminders */
.play-reminders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.reminder-card {
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
}

.reminder-card.fun {
    background: #f0fdf4;
    border-color: #22c55e;
}

.reminder-card.break {
    background: #dbeafe;
    border-color: #3b82f6;
}

.reminder-card.balance {
    background: #fef3c7;
    border-color: #eab308;
}

/* Legal Page */
.legal-page {
    padding: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 4px solid #fb923c;
}

.legal-header h1 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #a8a29e;
    font-size: 1rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-family: 'Quicksand', sans-serif;
    color: #ea580c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block p {
    color: #57534e;
    margin-bottom: 0.75rem;
}

.big-warning {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ef4444;
    margin-bottom: 2rem;
}

.big-warning h2 {
    color: #dc2626;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.big-warning p {
    color: #7f1d1d;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #292524, #44403c);
    color: #e7e5e4;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Quicksand', sans-serif;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #57534e;
    color: #a8a29e;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-item {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .game-embed {
        height: 400px;
    }
    
    .game-hints {
        grid-template-columns: 1fr;
    }
    
    .play-tips {
        grid-template-columns: 1fr;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .content-wrap {
        padding: 2rem 1rem;
    }
}
