:root {
    --color-black: #050505;
    --color-dark-red: #3a0000;
    --color-red: #8a0000;
    --color-neon-red: #ff0033;
    --color-text: #e0e0e0;
    --color-white: #ffffff;
    --color-gold: #ffd700;

    /* Premium Tokens */
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-pop: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow-red: 0 0 20px rgba(255, 0, 51, 0.4);
    --border-soft: 1px solid rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);

    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --gradient-bg: linear-gradient(135deg, var(--color-black) 0%, #1a0505 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(40, 10, 10, 0.8));
    --glow-shadow: 0 0 25px rgba(255, 0, 51, 0.5);
    --neon-border: 1px solid rgba(255, 0, 51, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-black);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--color-neon-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }

    background: rgba(0, 0, 0, 0.85);
    /* Dark semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #111;
    /* Dark background */
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-green {
    animation: pulse-green 2s infinite;
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    background: #25d366;
    color: white;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }


    /* Hide static CTAs on mobile to prioritize sticky bar */
    @media (max-width: 768px) {

        #ctaPrimary,
        .gender-section .btn,
        .section.nights .btn {
            display: none !important;
        }
    }