/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0c 0%, #1a0a0f 100%);
    color: #f5f5f5;
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px 80px;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HEADER ===== */
header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(90, 50, 50, 0.4), rgba(60, 30, 40, 0.3));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

header h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ffdd88;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(255, 100, 100, 0.3);
}

.age-restriction {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(255, 75, 75, 0.15);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 75, 75, 0.3);
}

/* ===== SECTIONS ===== */
section {
    margin-top: 35px;
    padding: 28px;
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 100, 100, 0.04));
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(255, 100, 100, 0.2);
}

/* TITLES */
section h2 {
    color: #ffdd88;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    margin-bottom: 16px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

section p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

/* LIST STYLE */
ul {
    margin-top: 20px;
    padding-left: 25px;
}

li {
    margin-bottom: 16px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

li strong {
    color: #ffdd88;
    font-weight: 600;
}

/* DISCLAIMER TEXT */
.disclaimer {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 221, 102, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffdd88;
    color: #ffdd88;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 500;
}

/* ===== BACK BUTTON ===== */
.back-container {
    margin-top: 50px;
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b30000, #8b0000);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 
        0 4px 15px rgba(179, 0, 0, 0.4),
        0 0 30px rgba(255, 75, 75, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn:hover {
    background: linear-gradient(135deg, #ff4b4b, #cc0000);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(255, 75, 75, 0.5),
        0 0 40px rgba(255, 75, 75, 0.3);
}

.back-btn:active {
    transform: translateY(-1px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px 60px;
    }

    header {
        padding: 25px 15px;
        margin-bottom: 35px;
    }

    section {
        padding: 20px;
        margin-top: 25px;
    }

    ul {
        padding-left: 20px;
    }

    .back-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px 50px;
    }

    header {
        padding: 20px 12px;
    }

    section {
        padding: 16px;
        border-left-width: 3px;
    }

    .age-restriction {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .back-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}
