@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, #2d1a1a 0%, #1a0f0f 100%);
    color: #fff5f0;
    min-height: 100vh;
    line-height: 1.75;
}

.header-section {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 4px solid #e74c3c;
}

.header-container {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
}

.brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #e74c3c;
    text-decoration: none;
    text-shadow: 2px 2px 0 #c0392b;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    color: #f5d0c5;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #e74c3c;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    background: #e74c3c;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-toggle.clicked span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.clicked span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.clicked span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

.content-area {
    padding-top: 90px;
}

.landing-section {
    padding: 90px 25px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(231, 76, 60, 0.15) 0%, transparent 60%);
}

.landing-section h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 28px;
    text-shadow: 3px 3px 0 #c0392b;
}

.landing-text {
    font-size: 1.2rem;
    color: #f5d0c5;
    max-width: 780px;
    margin: 0 auto 45px;
}

.alert-group {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.alert-box {
    background: rgba(231, 76, 60, 0.2);
    border: 3px solid #e74c3c;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.95rem;
}

.alert-box span {
    margin-right: 10px;
}

.slot-area {
    padding: 70px 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.slot-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.3rem;
    text-align: center;
    color: #e74c3c;
    margin-bottom: 45px;
    text-shadow: 2px 2px 0 #c0392b;
}

.slot-container {
    background: linear-gradient(145deg, #3d2222, #2d1a1a);
    border-radius: 25px;
    padding: 28px;
    border: 4px solid rgba(231, 76, 60, 0.4);
    box-shadow: 0 0 50px rgba(231, 76, 60, 0.2);
}

.slot-frame {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 15px;
}

.perks-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1450px;
    margin: 0 auto;
    padding: 70px 25px;
}

.perk-card {
    background: rgba(61, 34, 34, 0.8);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 5px solid #e74c3c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.25);
}

.perk-emoji {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.perk-card h3 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.perk-card p {
    color: #f5d0c5;
    font-size: 0.95rem;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 25px;
}

.about-box {
    background: rgba(45, 26, 26, 0.9);
    padding: 38px;
    border-radius: 20px;
    border-left: 6px solid #e74c3c;
}

.about-box h3 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.about-box p {
    color: #f5d0c5;
    line-height: 1.8;
}

.footer-area {
    background: #140a0a;
    padding: 55px 25px 30px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    margin-bottom: 35px;
}

.help-links h4 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.help-links a {
    color: #f5d0c5;
    margin: 0 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.help-links a:hover {
    color: #e74c3c;
}

.quick-links {
    margin-bottom: 28px;
}

.quick-links a {
    color: #9a7570;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: #e74c3c;
}

.copyright-text {
    color: #5a3f3c;
    font-size: 0.85rem;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-overlay.hidden {
    display: none;
}

.age-dialog {
    background: linear-gradient(145deg, #3d2222, #2d1a1a);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 4px solid #e74c3c;
    box-shadow: 0 0 70px rgba(231, 76, 60, 0.4);
}

.age-dialog h2 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 22px;
}

.age-dialog p {
    color: #f5d0c5;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-dialog .highlight {
    color: #e74c3c;
    font-weight: 700;
}

.dialog-buttons {
    margin-top: 32px;
    display: flex;
    gap: 18px;
    justify-content: center;
}

.dialog-btn {
    padding: 14px 42px;
    border-radius: 15px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dialog-btn.accept {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.dialog-btn.decline {
    background: transparent;
    border: 3px solid #9a7570;
    color: #f5d0c5;
}

.dialog-btn:hover {
    transform: scale(1.05);
}

.inner-header {
    padding: 115px 25px 55px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(231, 76, 60, 0.2) 0%, transparent 60%);
}

.inner-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: #e74c3c;
    text-shadow: 2px 2px 0 #c0392b;
}

.text-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 25px;
}

.text-section h2 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 1.5rem;
    margin: 42px 0 18px;
}

.text-section h2:first-of-type {
    margin-top: 0;
}

.text-section p {
    color: #f5d0c5;
    margin-bottom: 16px;
}

.text-section ul {
    color: #f5d0c5;
    margin: 18px 0;
    padding-left: 28px;
}

.text-section li {
    margin-bottom: 12px;
}

.hint-box {
    background: rgba(231, 76, 60, 0.15);
    border-left: 5px solid #e74c3c;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 38px;
}

@media (max-width: 1024px) {
    .perks-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a0f0f;
        padding: 22px;
        display: none;
        border-bottom: 4px solid #e74c3c;
    }

    .main-nav.visible {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .landing-section h1 {
        font-size: 2.2rem;
    }

    .alert-group {
        flex-direction: column;
        align-items: center;
    }

    .slot-frame {
        height: 380px;
    }

    .perks-row {
        grid-template-columns: 1fr;
    }

    .age-dialog {
        margin: 20px;
        padding: 35px 22px;
    }

    .dialog-buttons {
        flex-direction: column;
    }
}
