@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom right, #4a0e0e 0%, #8b1538 50%, #4a0e0e 100%);
    color: #fff;
    min-height: 100vh;
}

/* Top Navigation */
.top-bar {
    background: rgba(20, 0, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e91e63;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(233, 30, 99, 0.4);
}

.navbar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.brand {
    font-size: 2rem;
    font-weight: 800;
    color: #e91e63;
    text-decoration: none;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.7);
    letter-spacing: 3px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e91e63;
    font-size: 2rem;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navigation ul li a {
    text-decoration: none;
    color: #ffc4d6;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.navigation ul li a:hover {
    color: #fff;
    background: rgba(233, 30, 99, 0.3);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
}

/* Main Content Area */
.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.banner {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(139, 21, 56, 0.2) 100%);
    border: 3px solid #e91e63;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(5px);
}

.banner h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner p {
    font-size: 1.15rem;
    line-height: 2;
    color: #ffc4d6;
    margin-bottom: 1rem;
}

.alert-box {
    background: rgba(139, 21, 56, 0.5);
    border: 2px solid #ff4081;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-box h2 {
    color: #ff4081;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.alert-box ul {
    list-style: none;
}

.alert-box ul li {
    padding: 1rem;
    margin: 0.8rem 0;
    background: rgba(233, 30, 99, 0.2);
    border-radius: 10px;
    border-left: 5px solid #e91e63;
}

.alert-box ul li strong {
    color: #ff4081;
}

.game-area {
    background: rgba(20, 0, 10, 0.8);
    border: 3px solid #e91e63;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.4);
}

.game-area h2 {
    color: #ff4081;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(233, 30, 99, 0.6);
}

.game-iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: inset 0 0 30px rgba(233, 30, 99, 0.3);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.4) 0%, rgba(74, 14, 14, 0.4) 100%);
    border: 2px solid #e91e63;
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.5);
    border-color: #ff4081;
}

.feature-card h3 {
    color: #ff4081;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #ffc4d6;
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer Styling */
.bottom-footer {
    background: rgba(10, 0, 5, 0.95);
    border-top: 3px solid #e91e63;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
}

.bottom-footer h3 {
    color: #ff4081;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-links {
    list-style: none;
}

.support-links li {
    margin: 1rem 0;
}

.support-links a {
    color: #ffc4d6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #ff4081;
}

/* Age Verification Modal */
.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.verify-modal.active {
    display: flex;
}

.verify-content {
    background: linear-gradient(135deg, #8b1538 0%, #4a0e0e 100%);
    border: 4px solid #e91e63;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 80px rgba(233, 30, 99, 0.6);
}

.verify-content h2 {
    color: #ff4081;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(233, 30, 99, 0.7);
}

.verify-content p {
    color: #ffc4d6;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.verify-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-btn.accept {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
}

.verify-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.6);
}

.verify-btn.reject {
    background: #333;
    color: #fff;
}

.verify-btn.reject:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-btn {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(to bottom, #8b1538 0%, #4a0e0e 100%);
        transition: left 0.3s;
        padding: 5rem 2rem;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.7);
    }

    .navigation.show {
        left: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .navigation ul li a {
        font-size: 1.3rem;
        display: block;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner {
        padding: 2rem;
    }

    .game-iframe {
        height: 450px;
    }

    .wrapper {
        padding: 1rem;
    }

    .verify-content {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-btns {
        flex-direction: column;
    }
}

.page-content {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(139, 21, 56, 0.2) 100%);
    border: 3px solid #e91e63;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(5px);
}

.page-content h1 {
    color: #e91e63;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.page-content h2 {
    color: #ff4081;
    font-size: 1.7rem;
    margin: 2rem 0 1.5rem 0;
    font-weight: 700;
}

.page-content p {
    color: #ffc4d6;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.page-content ul, .page-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffc4d6;
}

.page-content li {
    margin: 0.8rem 0;
    line-height: 1.8;
}
