@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary: #ff385c; /* Vibrant Pink/Red */
    --secondary: #bd1e59;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(30, 41, 59, 0.7);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Age Gate Overlay */
#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-content {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.age-gate-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.age-gate-content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.age-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.btn-yes {
    background-color: var(--primary);
    color: white;
}

.btn-yes:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.btn-no {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

/* Header */
header {
    padding: 1.5rem 1rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    padding: 6rem 1rem;
    text-align: center;
    max-width: 1000px;
    margin: 2rem auto;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/hero-1.png');
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #ff385c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Grid for Cities */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.city-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(255, 56, 92, 0.3);
}

.city-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.city-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.city-meta span {
    color: var(--primary);
    font-weight: 700;
}

/* Content Area */
.content-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Sticky Mobile Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.sticky-bar span {
    font-weight: 700;
    font-size: 1rem;
}

.sticky-cta {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Footer */
footer {
    padding: 4rem 1rem 6rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

footer a {
    margin: 0 0.5rem;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.25rem; }
    .nav-container { justify-content: center; }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    z-index: 10001;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

#cookie-banner h4 {
    color: var(--primary);
    font-size: 1.1rem;
}

#cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.6rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--primary);
    color: white;
}

.btn-accept:hover {
    background-color: var(--secondary);
}

.btn-decline {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
    #cookie-banner {
        bottom: 1rem;
        padding: 1rem;
    }
}
