@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Raleway:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #ff6b9d;
    --purple: #c44569;
    --gold: #feca57;
    --dark: #2d132c;
    --card: #3a1847;
    --light: #fff5f7;
    --sparkle: #ffb8d1;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #2d132c, #1a0822);
    color: var(--light);
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 69, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(196, 69, 105, 0.4), rgba(45, 19, 44, 0.8));
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--pink);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(255, 107, 157, 0.3);
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--pink), var(--gold), var(--sparkle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    position: relative;
}

.brand::after {
    content: "✨";
    position: absolute;
    right: -30px;
    top: -5px;
    font-size: 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--gold);
}

/* Banner */
.banner {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(254, 202, 87, 0.1));
    margin-bottom: 3rem;
    position: relative;
}

.banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.banner p {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 0 auto;
    color: var(--sparkle);
}

/* Main */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

.alert-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(196, 69, 105, 0.2));
    border: 3px solid var(--pink);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.3);
}

.alert-box h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.alert-box ul {
    list-style: none;
}

.alert-box li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.alert-box li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, var(--card), #2d132c);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(254, 202, 87, 0.1), transparent);
    transition: 0.5s;
}

.feature-card:hover::before {
    top: -20%;
    right: -20%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--pink);
    margin-bottom: 1rem;
    font-size: 1.7rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

.game-showcase {
    background: var(--card);
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    text-align: center;
    border: 3px solid var(--pink);
    box-shadow: 0 15px 60px rgba(196, 69, 105, 0.4);
}

.game-showcase h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.game-showcase iframe {
    width: 100%;
    max-width: 850px;
    height: 650px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.text-block {
    background: linear-gradient(135deg, var(--card), rgba(45, 19, 44, 0.8));
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 5px solid var(--gold);
}

.text-block h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--pink);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.text-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--card), var(--dark));
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--pink);
    position: relative;
    z-index: 1;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--light);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 10px;
    border: 2px solid var(--pink);
    transition: all 0.3s;
    font-weight: 500;
}

.footer-nav a:hover {
    background: var(--pink);
    color: var(--dark);
    transform: scale(1.05);
}

/* Age Verification */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 19, 44, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-modal.active {
    display: flex;
}

.verify-box {
    background: linear-gradient(135deg, var(--card), var(--dark));
    padding: 3.5rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 80px rgba(255, 107, 157, 0.5);
}

.verify-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verify-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.verify-buttons button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.accept-btn {
    background: linear-gradient(135deg, var(--pink), var(--gold));
    color: var(--dark);
}

.accept-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.6);
}

.decline-btn {
    background: rgba(255, 107, 157, 0.2);
    color: var(--light);
    border: 2px solid var(--pink);
}

.decline-btn:hover {
    background: var(--purple);
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: linear-gradient(135deg, var(--card), var(--dark));
        transition: right 0.3s;
        padding-top: 80px;
        border-left: 3px solid var(--pink);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    nav li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    }

    .banner h1 {
        font-size: 2.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .game-showcase iframe {
        height: 450px;
    }

    .text-block {
        padding: 2rem;
    }
}
