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

:root {
    --bg-color: #fdffff;         /* Priority 1: Primary BG */
    --primary-red: #b10f2e;     /* Priority 2: Highlights, Primary CTAs */
    --dark-burgundy: #570000;   /* Priority 3: Headers, Card titles, Primary Borders */
    --deep-dark: #280000;       /* Priority 4: Body text, Main headings */
    --terracotta: #de7c5a;      /* Priority 5: Badges, Secondary elements, Hover states */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--deep-dark);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-dark);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
    transition: all 0.2s ease-in-out;
}

/* Top Announcement Bar */
.announcement-bar {
    background-color: var(--dark-burgundy);
    color: var(--bg-color);
    text-align: center;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary-red);
}

.announcement-bar span {
    color: var(--terracotta);
    font-weight: 600;
}

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--dark-burgundy);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-burgundy);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-dark);
    padding: 4px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-red);
    color: var(--bg-color);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-red);
    box-shadow: 0 2px 4px rgba(87, 0, 0, 0.1);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--bg-color);
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--deep-dark);
    transition: all 0.2s ease;
}

/* Simple Hero Section with Background Image */
.hero-section {
    position: relative;
    padding: 80px 24px;
    /* border-bottom: 2px solid var(--dark-burgundy); */
    background-image: linear-gradient(rgba(40, 0, 0, 0.75), rgba(40, 0, 0, 0.75)), url('assets/dehradun_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-color);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 0, 0, 0.35);
    z-index: 1;
}

.hero-container.hero-simple {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.hero-centered {
    margin: 0 auto;
    text-align: center;
}

.hero-simple .hero-tagline {
    color: var(--terracotta);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.hero-simple .hero-title {
    color: var(--bg-color);
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-simple .hero-title span {
    color: var(--terracotta);
}

.hero-simple .hero-desc {
    font-size: 1rem;
    color: var(--bg-color);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--bg-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--bg-color);
    color: var(--primary-red);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--terracotta);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--terracotta);
}

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

/* Info Bar (Dehradun climate / elevation theme detail) */
.dehradun-stats {
    background-color: var(--bg-color);
    /* border-bottom: 1px solid var(--dark-burgundy); */
    padding: 16px 24px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-item {
    text-align: center;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-red);
}

.stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-dark);
    opacity: 0.8;
}

/* SEO Content Wall Section (Long Text Wall on Top) */
.content-wall-section {
    background-color: var(--bg-color);
    padding: 5px 24px;
    /* border-bottom: 1px solid var(--dark-burgundy); */
}

.content-wall-container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wall-text p {
    font-size: 0.95rem;
    color: var(--deep-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
    opacity: 0.95;
}

.content-wall-text h2 {
    font-size: 1.4rem;
    color: var(--dark-burgundy);
    margin-top: 30px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.content-wall-text h3 {
    font-size: 1.15rem;
    color: var(--primary-red);
    margin-top: 24px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* Featured Long Profiles (6 Horizontal Cards) */
.long-profiles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px;
    /* border-bottom: 1px solid var(--dark-burgundy); */
}

.long-profiles-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.profile-card-long {
    display: flex;
    /* border: 4px solid var(--primary-red); */
    background-color: var(--bg-color);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card-long:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 0, 0, 0.12);
}

.profile-long-img-container {
    width: 220px;
    height: 220px;
    position: relative;
    flex-shrink: 0;
    /* background-color: var(--deep-dark); */
}

.profile-long-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 4%; 
}

.badge-long {
    position: absolute;
    bottom: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    color: var(--bg-color);
    border-radius: 2px;
    z-index: 10;
}

.badge-left {
    left: 10px;
    background-color: var(--primary-red);
}

.badge-right {
    right: 10px;
    background-color: var(--terracotta);
}

.profile-long-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.profile-long-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.profile-long-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-burgundy);
    font-weight: 700;
    line-height: 1.3;
}
 

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(222, 124, 90, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(222, 124, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(222, 124, 90, 0);
    }
}

.profile-long-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-dark);
    opacity: 0.8;
    margin: 8px 0;
}

.profile-long-desc {
    font-size: 0.85rem;
    color: var(--deep-dark);
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 16px;
}

.profile-long-actions {
    display: flex;
    gap: 12px;
}

/* Gallery Section */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: var(--deep-dark);
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--deep-dark);
    opacity: 0.75;
    max-width: 600px;
    margin: 8px auto 0 auto;
}

/* Grid Layout for Profiles (4px solid borders) */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.profile-card {
    background-color: var(--bg-color);
    border: 4px solid var(--primary-red);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(87, 0, 0, 0.1);
}

.profile-img-container {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background-color: var(--deep-dark);
}

.profile-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-img-container img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-red);
    color: var(--bg-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    z-index: 10;
}

.profile-badge.elite {
    background-color: var(--terracotta);
}

.profile-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.profile-keyword {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark-burgundy);
    margin-bottom: 4px;
    font-weight: 700;
}

.profile-name-span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
}

.profile-age {
    font-size: 0.85rem;
    color: var(--deep-dark);
    font-weight: 500;
    opacity: 0.85;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.profile-tag {
    font-size: 0.7rem;
    background-color: var(--bg-color);
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 500;
}

.profile-desc {
    font-size: 0.8rem;
    color: var(--deep-dark);
    opacity: 0.9;
    margin-bottom: 16px;
    flex-grow: 1;
}

.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-card-primary {
    background-color: var(--primary-red);
    color: var(--bg-color);
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid var(--primary-red);
    display: block;
}

.btn-card-primary:hover {
    background-color: var(--bg-color);
    color: var(--primary-red);
}

.btn-card-secondary {
    background-color: var(--bg-color);
    border: 1px solid var(--dark-burgundy);
    color: var(--dark-burgundy);
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2px;
    display: block;
}

.btn-card-secondary:hover {
    background-color: var(--dark-burgundy);
    color: var(--bg-color);
}

/* Service/About Us Section */
.about-section {
    background-color: var(--bg-color);
    /* border-top: 1px solid var(--dark-burgundy); */
    /* border-bottom: 1px solid var(--dark-burgundy); */
    padding: 50px 24px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--deep-dark);
}

.about-text h3 span {
    color: var(--primary-red);
}

.about-text p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.feature-box {
    border-left: 3px solid var(--primary-red);
    padding-left: 12px;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-burgundy);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.8rem;
    opacity: 0.8;
}

.about-info-box {
    border: 1px solid var(--dark-burgundy);
    padding: 24px;
    background-color: var(--bg-color);
}

.about-info-box h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 12px;
    /* border-bottom: 1px solid var(--dark-burgundy); */
    padding-bottom: 8px;
}

.about-info-box ul {
    list-style: none;
}

.about-info-box li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-info-box li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

/* Booking Process Section */
.process-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.process-card {
    border: 1px solid var(--dark-burgundy);
    padding: 24px;
    text-align: center;
    position: relative;
}

.process-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    border: 2px solid var(--bg-color);
}

.process-card .h4 {
    font-size: 1.15rem;
    font-weight: 900;
    margin: 16px 0 8px 0;
    color: var(--dark-burgundy);
}

.process-card p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Testimonials / Reviews Improved Section */
.reviews-section {
    background-color: var(--bg-color);
    /* border-top: 1px solid var(--dark-burgundy); */
    /* border-bottom: 1px solid var(--dark-burgundy); */
    padding: 50px 24px;
}

.reviews-section h2{font-weight: 900;}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.review-card {
    border: 1px solid var(--dark-burgundy);
    border-top: 4px solid var(--primary-red);
    padding: 24px;
    background-color: var(--bg-color);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--terracotta);
    line-height: 1;
    opacity: 0.25;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(87, 0, 0, 0.08);
}

.review-stars {
    color: var(--terracotta);
    font-size: 1rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.review-user {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-burgundy);
}

.review-user span {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--deep-dark);
    opacity: 0.7;
}

/* Locations Chips Section */
.locations-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.location-chip {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--terracotta);
    color: var(--dark-burgundy);
    border-radius: 40px;
    background-color: var(--bg-color);
}

.location-chip:hover {
    background-color: var(--terracotta);
    color: var(--bg-color);
    border-color: var(--terracotta);
}

/* FAQ Accordion Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 24px;
}

.faq-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--dark-burgundy);
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-burgundy);
    background-color: var(--bg-color);
}

.faq-header:hover {
    background-color: rgba(222, 124, 90, 0.05);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-red);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: var(--bg-color);
}

.faq-content p {
    padding: 16px;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(87, 0, 0, 0.1);
}

/* Modal styles removed - booking now goes directly to calling */

/* Footer Section */
footer {
    background-color: var(--deep-dark);
    color: var(--bg-color);
    border-top: 3px solid var(--primary-red);
    padding: 40px 24px 20px 24px;
}

.footer-simple-inline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-color);
    letter-spacing: 0.05em;
}

.footer-inline-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-inline-links a {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--bg-color);
    transition: all 0.2s ease;
}

.footer-inline-links a:hover {
    color: var(--terracotta);
    opacity: 1;
}

.footer-socials-inline {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 32px;
    height: 32px;
    border: 1px solid var(--bg-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.footer-social-link:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(253, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .process-grid, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-card {
        padding-top: 32px;
    }
    
    .footer-simple-inline {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        /* border-bottom: 1px solid var(--dark-burgundy); */
        padding: 20px;
        gap: 16px;
    }
    .cta-button{
        display: none;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .header-container {
        padding: 12px 16px;
    }
    
    .profile-card-long {
        flex-direction: column;
    }
    .profile-long-img-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: none;
        /* border-bottom: 4px solid var(--primary-red); */
    }
    .profile-long-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-simple .hero-title {
    
    font-size:2rem;
        
    }
}

/* ==========================================
   18+ Age Verification Modal Styles
   ========================================== */
body.age-gate-active {
    overflow: hidden;
    height: 100vh;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 0, 0, 0.9); /* --deep-dark background with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* overlay everything */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.age-gate-card {
    background-color: var(--bg-color); /* #fdffff */
    border: 3px solid var(--dark-burgundy); /* #570000 */
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(87, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-gate-overlay.show .age-gate-card {
    transform: scale(1);
}

.age-gate-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-red); /* #b10f2e */
    color: var(--bg-color); /* #fdffff */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 24px;
    border: 3px solid var(--dark-burgundy); /* #570000 */
    animation: agePulse 2s infinite;
}

.age-gate-title {
    font-size: 1.8rem;
    color: var(--dark-burgundy); /* #570000 */
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.age-gate-text {
    color: var(--deep-dark); /* #280000 */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.age-gate-actions {
    display: flex;
    gap: 16px;
}

.btn-gate-enter {
    flex: 1;
    padding: 14px 20px;
    background-color: var(--primary-red); /* #b10f2e */
    color: var(--bg-color); /* #fdffff */
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gate-enter:hover {
    background-color: var(--bg-color);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(177, 15, 46, 0.25);
}

.btn-gate-exit {
    flex: 1;
    padding: 14px 20px;
    background-color: transparent;
    color: var(--terracotta); /* #de7c5a */
    border: 2px solid var(--terracotta);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gate-exit:hover {
    background-color: var(--terracotta);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(222, 124, 90, 0.25);
}

@keyframes agePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(177, 15, 46, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(177, 15, 46, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(177, 15, 46, 0);
    }
}

@media (max-width: 480px) {
    .age-gate-card {
        padding: 30px 20px;
    }
    
    .age-gate-title {
        font-size: 1.5rem;
    }
    
    .age-gate-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-gate-enter, .btn-gate-exit {
        width: 100%;
        padding: 12px 16px;
    }
}
