/* ============================================
   ASP.NET VALIDATION THEME OVERRIDES
   CRITICAL: Must be at top to override default themes
   ============================================ */

/* Hide ASP.NET hidden fields */
.aspNetHidden {
    display: none !important;
}

/* Force our form styles over ASP.NET defaults */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    padding: 0.8rem 1rem !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: #9d22ae !important;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1) !important;
}

/* Override inline width styles when needed */
input[style*="width:150px"],
input[style*="width: 150px"] {
    width: 100% !important;
}

input[style*="width:80px"],
input[style*="width: 80px"],
input[style*="width:50px"],
input[style*="width: 50px"] {
    width: auto !important;
    min-width: 80px !important;
}

/* Fix small inputs */
.form-input-small {
    width: 100px !important;
    max-width: 150px !important;
}

/* Submit buttons */
input[type="submit"],
input[type="button"],
button[type="submit"] {
    padding: 1rem 3rem !important;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4) !important;
    transition: all 0.3s ease !important;
    width: auto !important;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6) !important;
}

/* Checkboxes */
input[type="checkbox"] {
    width: auto !important;
    margin-right: 0.5rem !important;
    cursor: pointer !important;
}

/* Fix FormView table layout issues */
table[id*="FormView"] {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
}

table[id*="FormView"] td {
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

table[id*="FormView"] tr {
    border: none !important;
    background: none !important;
}

/* Validators */
span[id*="Validator"],
span[data-val="true"] {
    color: #fb7185 !important;
    font-size: 0.9rem !important;
    margin-left: 0.5rem !important;
}

/* Validation summary */
div[id*="ValidationSummary"] {
    background: rgba(251, 113, 133, 0.1) !important;
    border: 1px solid var(--accent-coral) !important;
    border-radius: 10px !important;
    padding: 1rem 1.5rem !important;
    margin-bottom: 2rem !important;
    color: var(--accent-coral) !important;
}

div[id*="ValidationSummary"] ul {
    margin: 0 !important;
    padding-left: 1.5rem !important;
}

div[id*="ValidationSummary"] li {
    margin: 0.5rem 0 !important;
    color: var(--accent-coral) !important;
}

/* ============================================
   END ASP.NET OVERRIDES
   ============================================ */

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

:root {
    --primary-purple: #7c3aed;
    --deep-purple: #5b21b6;
    --dark-purple: #2e1065;
    --accent-rose: #e879f9;
    --accent-coral: #fb7185;
    --accent-gold: #fbbf24;
    --text-light: #ffffff;
    --text-gray: #d1d5db;
    --text-muted: #9ca3af;
    --background-dark: #0f0f0f;
    --background-medium: #1a1a1a;
    --background-light: #262626;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.logo span {
    color: #9d22ae;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

.nav-links .cta-button:hover {
    color: white !important;
}

.mobile-menu .cta-button:hover {
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #9d22ae;
}

.mobile-menu .cta-button {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.cta-button {
    background: #7d1b8e;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.5);
    background: #c855d9;
    color: white;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #e6d9f5;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

.btn-secondary {
    background: transparent;
    padding: 1rem 2.5rem;
    border: 2px solid #9d22ae;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 0;
}

.btn-secondary:hover {
    background: #9d22ae;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.4);
}

/* Section Styles */
section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: url('images/speeddating2.jpg') center/cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.15);
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #e6d9f5;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.stat-item:nth-child(1) h4 {
    color: var(--accent-rose);
}

.stat-item:nth-child(2) h4 {
    color: var(--accent-rose);
}

.stat-item:nth-child(3) h4 {
    color: var(--accent-rose);
}

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.event-card {
    background: var(--background-medium);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

.event-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #9d22ae 0%, #7d1b8e 100%);
    position: relative;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-card:nth-child(1) .event-badge {
    background: var(--primary-purple);
}

.event-card:nth-child(2) .event-badge {
    background: var(--accent-rose);
}

.event-card:nth-child(3) .event-badge {
    background: var(--accent-coral);
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details span::before {
    content: '•';
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.event-button {
    display: block;
    text-align: center;
    background: #9d22ae;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.event-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.5);
    background: #7d1b8e;
}

/* Features Section */
.features {
    background: rgba(26, 26, 26, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-item:nth-child(1) .feature-icon {
    background: #9d22ae;
}

.feature-item:nth-child(2) .feature-icon {
    background: #9d22ae;
}

.feature-item:nth-child(3) .feature-icon {
    background: #9d22ae;
}

.feature-item:nth-child(4) .feature-icon {
    background: #9d22ae;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6d9f5;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--background-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:nth-child(1)::before {
    color: var(--primary-purple);
}

.testimonial-card:nth-child(2)::before {
    color: var(--accent-rose);
}

.testimonial-card:nth-child(3)::before {
    color: var(--accent-coral);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-light);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: #231934;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 2rem 2rem 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn-secondary {
    background: white;
    color: #9d22ae;
    border: none;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: 0;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--background-medium);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company + Contact Info Column */
.footer-section.company-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-info h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.company-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
}

.contact-info ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info ul li a:hover {
    color: var(--primary-purple);
}

/* Quick Links - 2 column layout */
.footer-section.quick-links {
    display: flex;
    flex-direction: column;
}

.footer-section.quick-links ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem 2.5rem;
    list-style: none;
    justify-content: start;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #9d22ae;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:nth-child(1):hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.social-links a:nth-child(2):hover {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    transform: translateY(-3px);
}

.social-links a:nth-child(3):hover {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
    transform: translateY(-3px);
}

.social-links a:nth-child(4):hover {
    background: var(--deep-purple);
    border-color: var(--deep-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    #testimonials {
        display: none;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* About Page Specific Styles */
.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating3.jpg') center/cover;
    height: 60vh;
}

.hero-about h1 {
    font-size: 3.5rem;
}

.hero-about p {
    font-size: 1.3rem;
}

.about-page-content {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}


.about-intro h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(157, 34, 174, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-section h3 {
    font-size: 1.8rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}


/* Two-Column Layout for About Page */
.content-wrapper-two-col {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.about-main-content {
    max-width: 800px;
}

.about-main-content .about-intro {
    text-align: left;
}

.about-main-content .about-intro h2 {
    text-align: left;
}

.about-main-content .about-intro p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.about-main-content .about-section {
    text-align: left;
}

.about-main-content .about-section .about-icon {
    text-align: left;
}

.about-main-content .about-section h3 {
    text-align: left;
    margin-left: 0;
}

.about-main-content .about-section p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

/* Sidebar Styles */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--background-medium);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.sidebar-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    color: #9d22ae;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-stat {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-stat:last-child {
    border-bottom: none;
}

.sidebar-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-rose);
    margin-bottom: 0.3rem;
}

.sidebar-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 0.7rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.7rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(157, 34, 174, 0.3);
}

/* Responsive - Stack on Mobile */
@media (max-width: 1024px) {
    .content-wrapper-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

    .about-main-content {
        max-width: 100%;
    }
}

.sidebar-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(157, 34, 174, 0.2);
    border: 1px solid #9d22ae;
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sidebar-link:hover {
    background: #9d22ae;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

/* Testimonials Page Styles */
.hero-testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating4.jpg') center/cover;
    height: 60vh;
}

.hero-testimonials h1 {
    font-size: 3.5rem;
}

.hero-testimonials p {
    font-size: 1.3rem;
}

.testimonials-page-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-intro h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.testimonials-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card-full {
    background: var(--background-medium);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.highlight-testimonial {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(157, 34, 174, 0.3);
}

.testimonial-card-full .testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author-full {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author-full strong {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author-full span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-testimonials h1 {
        font-size: 2.5rem;
    }

    .testimonials-grid-page {
        grid-template-columns: 1fr;
    }

    .testimonials-intro h2 {
        font-size: 2rem;
    }
}

/* FAQ Page Styles */
.hero-faq {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating5.jpg') center/cover;
    height: 60vh;
}

.hero-faq h1 {
    font-size: 3.5rem;
}

.hero-faq p {
    font-size: 1.3rem;
}

.faq-page-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.faq-intro a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--background-medium);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(157, 34, 174, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(157, 34, 174, 0.1);
}

.faq-question span:first-child {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
    flex: 1;
}

.faq-icon {
    color: #9d22ae;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #9d22ae;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-faq h1 {
        font-size: 2.5rem;
    }

    .faq-intro h2 {
        font-size: 2rem;
    }

    .faq-question span:first-child {
        font-size: 1rem;
    }
}

/* Why Choose Us Page Styles */
.hero-whychoose {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating6.jpg') center/cover;
    height: 60vh;
}

.hero-whychoose h1 {
    font-size: 3.5rem;
}

.hero-whychoose p {
    font-size: 1.3rem;
}

.whychoose-page-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.whychoose-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.whychoose-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.reasons-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-card {
    background: var(--background-medium);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.highlight-reason {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(157, 34, 174, 0.4);
}

.reason-number {
    min-width: 60px;
    height: 60px;
    background: #9d22ae;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.6rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.reason-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.reason-content a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.reason-content a:hover {
    text-decoration: underline;
}

.whychoose-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 34, 174, 0.3);
}

.whychoose-cta h2 {
    font-size: 2.2rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.whychoose-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-whychoose h1 {
        font-size: 2.5rem;
    }

    .reason-card {
        flex-direction: column;
        padding: 2rem;
    }

    .reason-number {
        margin: 0 auto;
    }

    .reason-content h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .reason-content p {
        font-size: 1rem;
        text-align: center;
    }

    .whychoose-cta h2 {
        font-size: 1.8rem;
    }
}

/* What is Speed Dating Page Styles */
.hero-whatissd {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating7.jpg') center/cover;
    height: 60vh;
}

.hero-whatissd h1 {
    font-size: 3.5rem;
}

.hero-whatissd p {
    font-size: 1.3rem;
}

.whatissd-page-content {
    padding: 4rem 2rem;
}

.whatissd-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.whatissd-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.whatissd-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.whatissd-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.whatissd-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.whatissd-section h3 {
    font-size: 1.8rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.whatissd-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.whatissd-section p:last-child {
    margin-bottom: 0;
}

.whatissd-section a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.whatissd-section a:hover {
    text-decoration: underline;
}

.how-it-works-visual {
    background: rgba(26, 26, 26, 0.3);
    padding: 4rem 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-whatissd h1 {
        font-size: 2.5rem;
    }

    .whatissd-intro p {
        font-size: 1.1rem;
    }

    .whatissd-section {
        padding: 2rem;
    }

    .whatissd-section h3 {
        font-size: 1.5rem;
    }

    .whatissd-section p {
        font-size: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Careers Page Styles */
.hero-careers {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating9.jpg') center/cover;
    height: 60vh;
}

.hero-careers h1 {
    font-size: 3.5rem;
}

.hero-careers p {
    font-size: 1.3rem;
}

.careers-page-content {
    padding: 4rem 2rem;
}

.careers-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.careers-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.careers-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.careers-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.careers-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.careers-section h3 {
    font-size: 1.8rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.careers-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.careers-section p:last-child {
    margin-bottom: 0;
}

.careers-section a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.careers-section a:hover {
    text-decoration: underline;
}

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.responsibilities-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.responsibilities-list li:last-child {
    border-bottom: none;
}

.responsibilities-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9d22ae;
    font-weight: bold;
    font-size: 1.3rem;
}

.terms-section {
    background: rgba(157, 34, 174, 0.05);
    border-color: rgba(157, 34, 174, 0.2);
}

.why-work-section {
    background: rgba(26, 26, 26, 0.3);
    padding: 4rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-careers h1 {
        font-size: 2.5rem;
    }

    .careers-intro p {
        font-size: 1.1rem;
    }

    .careers-section {
        padding: 2rem;
    }

    .careers-section h3 {
        font-size: 1.5rem;
    }

    .careers-section p {
        font-size: 1rem;
    }

    .responsibilities-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Gallery Page Styles */
.hero-videos {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating10.jpg') center/cover;
    height: 60vh;
}

.hero-videos h1 {
    font-size: 3.5rem;
}

.hero-videos p {
    font-size: 1.3rem;
}

.videos-page-content {
    padding: 4rem 2rem;
}

.content-wrapper-videos {
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.video-item h3 {
    font-size: 1.8rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    align-items: start;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    display: flex;
    align-items: center;
}

.video-description p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-videos h1 {
        font-size: 2.5rem;
    }

    .video-item {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .video-item h3 {
        font-size: 1.5rem;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-description p {
        font-size: 1rem;
    }
}

/* Venues Page Styles */
.hero-venues {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating11.jpg') center/cover;
    height: 60vh;
}

.hero-venues h1 {
    font-size: 3.5rem;
}

.hero-venues p {
    font-size: 1.3rem;
}

.venues-page-content {
    padding: 4rem 2rem;
}

.venues-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.venues-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.venues-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.venues-section h3 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 2rem;
    text-align: center;
}

.venue-benefit {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.venue-benefit:last-child {
    margin-bottom: 0;
}

.venue-benefit:hover {
    transform: translateX(10px);
    border-color: rgba(157, 34, 174, 0.3);
    background: rgba(157, 34, 174, 0.05);
}

.venue-benefit-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.venue-benefit-content h4 {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 0.8rem;
}

.venue-benefit-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.venues-cta-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 20px;
    border: 1px solid rgba(157, 34, 174, 0.3);
    text-align: center;
}

.venues-cta-section .venues-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.venues-cta-section h3 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
}

.venues-cta-section p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.venues-cta-section p:last-child {
    margin-bottom: 0;
}

.venues-cta-section a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.venues-cta-section a:hover {
    text-decoration: underline;
}

.venue-stats-section {
    background: rgba(26, 26, 26, 0.3);
    padding: 4rem 2rem;
}

.venue-stats-section .stats {
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-venues h1 {
        font-size: 2.5rem;
    }

    .venues-intro p {
        font-size: 1.1rem;
    }

    .venues-section {
        padding: 2rem;
    }

    .venues-section h3 {
        font-size: 1.7rem;
    }

    .venue-benefit {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .venue-benefit-icon {
        margin: 0 auto 1rem;
    }

    .venue-benefit-content h4 {
        font-size: 1.3rem;
    }

    .venue-benefit-content p {
        font-size: 1rem;
    }

    .venues-cta-section {
        padding: 2rem;
    }

    .venues-cta-section h3 {
        font-size: 1.7rem;
    }

    .venues-cta-section p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating8.jpg') center/cover;
    height: 60vh;
}

.hero-contact h1 {
    font-size: 3.5rem;
}

.hero-contact p {
    font-size: 1.3rem;
}

.contact-page-content {
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-medium);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #e6d9f5;
    margin-bottom: 0.8rem;
}

.contact-info-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.contact-info-card a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: var(--background-medium);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 0.8rem;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.validation-summary {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #fb7185;
}

.validation-summary ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e6d9f5;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #9d22ae;
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.field-validator {
    color: #fb7185;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.secure-badge img {
    height: 21px;
}

.confirmation-message {
    text-align: center;
    padding: 3rem;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.confirmation-message label {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6d9f5;
    display: block;
    margin-bottom: 1rem;
}

.confirmation-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-contact h1 {
        font-size: 2.5rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .btn-submit {
        width: 100%;
    }

    .form-actions {
        align-items: stretch;
    }

    .secure-badge {
        justify-content: center;
    }
}

/* Tell a Friend Page Styles */
.hero-tellafriend {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating12.jpg') center/cover;
    height: 60vh;
}

.hero-tellafriend h1 {
    font-size: 3.5rem;
}

.hero-tellafriend p {
    font-size: 1.3rem;
}

.tellafriend-page-content {
    padding: 4rem 2rem;
}

.tellafriend-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tellafriend-form-section {
    background: var(--background-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
}

.required-field::after {
    content: ' *';
    color: #fb7185;
    font-weight: bold;
}

.friends-gridview {
    width: 100%;
    border: none;
}

.friends-gridview td {
    padding: 0;
    border: none;
}

.additional-friends {
    margin-top: 1.5rem;
}

.add-more-section {
    margin-top: 1.5rem;
    text-align: center;
}

.add-more-link {
    display: inline-block;
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #9d22ae;
    border-radius: 25px;
    transition: all 0.3s;
    background: transparent;
}

.add-more-link:hover {
    background: #9d22ae;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
}

.error-message {
    display: block;
    color: #fb7185;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-tellafriend h1 {
        font-size: 2.5rem;
    }

    .tellafriend-form-section {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

/* Gift Certificate Pages Styles */
.hero-gift, .hero-gift-register {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating13.jpg') center/cover;
    height: 60vh;
}

.hero-gift h1, .hero-gift-register h1 {
    font-size: 3.5rem;
}

.hero-gift p, .hero-gift-register p {
    font-size: 1.3rem;
}

/* Gift Marketing Page */
.gift-page-content {
    padding: 4rem 2rem;
}

.gift-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.gift-intro-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 20px;
    border: 1px solid rgba(157, 34, 174, 0.3);
    margin-bottom: 3rem;
}

.gift-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gift-intro-card h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.gift-price {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9d22ae;
}

.gift-features-section {
    background: var(--background-medium);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
}

.gift-features-section h3 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 2rem;
    text-align: center;
}

.gift-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s;
}

.gift-feature:last-child {
    margin-bottom: 0;
}

.gift-feature:hover {
    transform: translateY(-5px);
    background: rgba(157, 34, 174, 0.1);
}

.feature-icon-gift {
    font-size: 3rem;
    min-width: 60px;
}

.feature-content h4 {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 0.8rem;
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.gift-benefits {
    background: var(--background-medium);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 3rem;
}

.gift-benefits h3 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid-gift {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.benefit-item-gift {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.benefit-icon-check {
    font-size: 1.5rem;
    color: #9d22ae;
    font-weight: bold;
}

.benefit-item-gift p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.gift-cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(157, 34, 174, 0.4);
}

.gift-cta-section h2 {
    font-size: 2.2rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.gift-cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(157, 34, 174, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 34, 174, 0.6);
}

/* Gift Registration Page */
.gift-register-content {
    padding: 4rem 2rem;
}

.gift-register-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.price-display {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9d22ae;
}

.gift-form-section {
    background: var(--background-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.section-title-gift {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
    text-align: center;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.terms-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-input {
    margin-top: 0.3rem;
}

.checkbox-label {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-label a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-gift h1, .hero-gift-register h1 {
        font-size: 2.5rem;
    }

    .gift-intro-card {
        padding: 2rem;
    }

    .gift-intro-card h2 {
        font-size: 2rem;
    }

    .gift-features-section, .gift-benefits {
        padding: 2rem;
    }

    .gift-feature {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid-gift {
        grid-template-columns: 1fr;
    }

    .form-row-two-col {
        grid-template-columns: 1fr;
    }

    .gift-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Custom CMS Page Styles */
.hero-custom-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating1.jpg') center/cover;
    height: 50vh;
    min-height: 300px;
}

.hero-custom-page h1 {
    font-size: 3rem;
    text-transform: capitalize;
}

.custom-page-content {
    padding: 4rem 2rem;
}

.custom-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.custom-content-article {
    background: var(--background-medium);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.8;
}

.custom-content-article p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.custom-content-article h2 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.custom-content-article h3 {
    font-size: 1.6rem;
    color: #e6d9f5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.custom-content-article h4 {
    font-size: 1.3rem;
    color: #e6d9f5;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.custom-content-article ul,
.custom-content-article ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.custom-content-article li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.custom-content-article a {
    color: #9d22ae;
    text-decoration: none;
    font-weight: 600;
}

.custom-content-article a:hover {
    text-decoration: underline;
}

.custom-content-article strong {
    color: #e6d9f5;
}

.custom-content-article blockquote {
    border-left: 4px solid #9d22ae;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-gray);
}

.custom-content-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.custom-content-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.custom-content-article table th,
.custom-content-article table td {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.custom-content-article table th {
    background: rgba(157, 34, 174, 0.2);
    color: #e6d9f5;
    font-weight: 600;
}

.custom-content-article table td {
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-custom-page h1 {
        font-size: 2rem;
    }

    .custom-content-article {
        padding: 2rem;
    }

    .custom-content-article p,
    .custom-content-article li {
        font-size: 1rem;
    }

    .custom-content-article h2 {
        font-size: 1.7rem;
    }

    .custom-content-article h3 {
        font-size: 1.4rem;
    }
}

/* Available Tickets Page Styles */
.hero-available-tickets {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating14.jpg') center/cover;
    height: 50vh;
}

.hero-available-tickets h1 {
    font-size: 3.5rem;
}

.hero-available-tickets p {
    font-size: 1.3rem;
}

.available-tickets-content {
    padding: 4rem 2rem;
}

.available-tickets-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.availability-notice {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.2), rgba(124, 58, 237, 0.2));
    border: 2px solid rgba(157, 34, 174, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.availability-notice p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.event-ended-message {
    display: block;
    background: rgba(251, 113, 133, 0.2);
    border: 2px solid #fb7185;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fb7185;
    margin-bottom: 2rem;
}

.event-details-card {
    background: var(--background-medium);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.event-title-section {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.3), rgba(124, 58, 237, 0.3));
    padding: 2.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(157, 34, 174, 0.5);
}

.event-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e6d9f5;
    display: block;
}

.event-info-grid {
    padding: 0;
}

.event-info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.event-info-row:hover {
    background: rgba(157, 34, 174, 0.05);
}

.event-info-row.alt {
    background: rgba(0, 0, 0, 0.2);
}

.event-info-row:last-child {
    border-bottom: none;
}

.event-info-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #e6d9f5;
    font-size: 1rem;
}

.info-icon {
    font-size: 1.3rem;
}

.event-info-value {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.venue-address div {
    margin-bottom: 0.3rem;
}

.venue-address div:last-child {
    margin-bottom: 0;
}

.event-cost {
    font-size: 1.3rem;
    font-weight: 700;
    color: #9d22ae;
}

.event-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(157, 34, 174, 0.2);
    border: 1px solid #9d22ae;
    border-radius: 20px;
    color: #e6d9f5;
    font-weight: 600;
}

.event-action-links {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.action-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.waiting-link {
    background: transparent;
    border: 2px solid rgba(251, 113, 133, 0.6);
    color: #fb7185;
}

.waiting-link:hover {
    background: rgba(251, 113, 133, 0.1);
    border-color: #fb7185;
    transform: translateY(-2px);
}

.signup-link {
    background: transparent;
    border: 2px solid #9d22ae;
    color: #9d22ae;
}

.signup-link:hover {
    background: #9d22ae;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.signup-link-primary {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.signup-link-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.info-link {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-gray);
}

.info-link:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   WAITING LIST PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-waitinglist {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating20.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Waiting List Content */
.waitinglist-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.waitinglist-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Waiting List Card */
.waitinglist-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.waitinglist-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 2.5rem 2rem;
    text-align: center;
}

.waitinglist-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.waitinglist-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.waitinglist-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
}

.waitinglist-body {
    padding: 2.5rem;
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #9d22ae;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1);
}

/* Waiting List Button */
.btn-waitinglist {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-waitinglist:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

/* Error Card */
.error-card {
    background: var(--background-medium);
    border: 1px solid rgba(251, 113, 133, 0.3);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.error-card h2 {
    font-size: 2.2rem;
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
}

.error-message {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.error-message p,
.error-message asp\:Label {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.error-actions {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-waitinglist {
        height: 40vh;
    }

    .hero-waitinglist h1 {
        font-size: 2rem;
    }

    .waitinglist-content {
        padding: 2rem 1rem;
    }

    .waitinglist-header {
        padding: 2rem 1.5rem;
    }

    .waitinglist-header h2 {
        font-size: 1.6rem;
    }

    .waitinglist-body {
        padding: 1.5rem;
    }

    .btn-waitinglist {
        width: 100%;
        padding: 1rem 2rem;
    }

    .error-card {
        padding: 2rem 1.5rem;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-card h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   END WAITING LIST PAGE STYLES
   ============================================ */

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-login {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating19.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Login Content */
.login-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
    min-height: 60vh;
}

.login-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Login Card */
.login-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 2.5rem 2rem;
    text-align: center;
}

.login-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.login-body {
    padding: 2.5rem;
}

/* Login Message */
.login-message {
    display: block;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid var(--accent-coral);
    color: var(--accent-coral);
    font-weight: 600;
}

.login-message:empty {
    display: none;
}

/* Form Groups in Login */
.login-body .form-group {
    margin-bottom: 1.5rem;
}

.login-body .form-group:last-of-type {
    margin-bottom: 1rem;
}

/* Forgot Password Link */
.forgot-link-container {
    text-align: right;
    margin-bottom: 2rem;
}

.forgot-link {
    color: #9d22ae;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--accent-rose);
    text-decoration: underline;
}

/* Login Actions */
.login-actions {
    text-align: center;
}

.btn-login {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-login {
        height: 40vh;
    }

    .hero-login h1 {
        font-size: 1.8rem;
    }

    .login-content {
        padding: 2rem 1rem;
    }

    .login-header {
        padding: 2rem 1.5rem;
    }

    .login-header h2 {
        font-size: 1.6rem;
    }

    .login-body {
        padding: 2rem 1.5rem;
    }

    .btn-login {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ============================================
   END LOGIN PAGE STYLES
   ============================================ */

/* ============================================
   SITEMAP PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-sitemap {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating18.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Sitemap Content */
.sitemap-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.sitemap-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Sitemap Section */
.sitemap-section {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.sitemap-section:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 34, 174, 0.5);
    box-shadow: 0 10px 30px rgba(157, 34, 174, 0.2);
}

/* Sitemap Header */
.sitemap-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
}

.sitemap-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.sitemap-header h2 {
    font-size: 2rem;
    color: #e6d9f5;
    margin: 0;
}

/* Sitemap Grid */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.sitemap-grid-3col {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Sitemap Links */
.sitemap-link {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

.sitemap-link:hover {
    background: linear-gradient(135deg, rgba(157, 34, 174, 0.2), rgba(125, 27, 142, 0.2));
    border-color: #9d22ae;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
}

.sitemap-link:active {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .sitemap-grid-3col {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .sitemap-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-sitemap {
        height: 40vh;
    }

    .hero-sitemap h1 {
        font-size: 2rem;
    }

    .sitemap-content {
        padding: 2rem 1rem;
    }

    .sitemap-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .sitemap-header {
        flex-direction: column;
        text-align: center;
    }

    .sitemap-header h2 {
        font-size: 1.6rem;
    }

    .sitemap-grid,
    .sitemap-grid-3col {
        grid-template-columns: 1fr;
    }

    .sitemap-link {
        padding: 1rem;
    }
}

/* ============================================
   END SITEMAP PAGE STYLES
   ============================================ */

/* ============================================
   REGISTER SESSION PAGE STYLES (Register_Session.aspx)
   ============================================ */

/* Hero Section */
.hero-register {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating17.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Registration Content */
.register-session-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.register-session-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Registration Card */
.registration-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.registration-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 2.5rem 2rem;
    text-align: center;
}

.registration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.registration-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.registration-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
}

.registration-body {
    padding: 2.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
}

/* Event Selection Box */
.event-selection-box {
    background: rgba(157, 34, 174, 0.1);
    border: 1px solid rgba(157, 34, 174, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-selection-box label {
    display: block;
    color: #e6d9f5;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.event-details-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Special Offer Box */
.special-offer-box {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(157, 34, 174, 0.1));
    border: 2px solid var(--accent-coral);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.offer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.offer-content {
    flex: 1;
    color: var(--text-gray);
    line-height: 1.6;
}

.offer-content strong {
    color: #e6d9f5;
    display: block;
    margin-bottom: 0.5rem;
}

/* Ticket Input Group */
.ticket-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-price {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Questionnaire Section */
.questionnaire-section {
    margin-top: 1.5rem;
}

.questionnaire-item {
    width: 100%;
}

/* Promo Message Box */
.promo-message-box {
    background: rgba(186, 29, 206, 0.1);
    border: 1px solid #ba1dce;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #ba1dce;
    font-weight: bold;
}

/* Terms Box */
.terms-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.terms-checkbox {
    margin-right: 0.5rem;
}

.terms-link {
    color: #9d22ae;
    text-decoration: underline;
    font-weight: 600;
}

.terms-link:hover {
    color: var(--accent-rose);
}

/* Form Actions */
.form-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-continue,
.btn-submit-payment {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-continue:hover,
.btn-submit-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.security-badge {
    text-align: center;
}

.security-badge img {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.security-badge img:hover {
    opacity: 1;
}

/* Payment View - Review Information */
.processing-error {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid var(--accent-coral);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.review-info-grid {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.review-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-row:last-child {
    border-bottom: none;
}

.review-row.review-total {
    border-top: 2px solid rgba(157, 34, 174, 0.5);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
}

.review-label {
    color: #e6d9f5;
    font-weight: 600;
}

.review-value {
    color: var(--text-gray);
}

.review-total .review-value {
    color: #9d22ae;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Credit Card Logos */
.credit-card-logos {
    text-align: center;
    margin-bottom: 2rem;
}

.credit-card-logos img {
    max-width: 300px;
    height: auto;
}

/* Expiration Group */
.expiration-group {
    display: flex;
    gap: 1rem;
}

.exp-month,
.exp-year {
    flex: 1;
}

.cvv-help {
    color: #9d22ae;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.cvv-help:hover {
    color: var(--accent-rose);
}

/* Confirmation Card */
.confirmation-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.confirmation-card h2 {
    font-size: 2.2rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
}

.confirmation-message {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.confirmation-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.confirmation-message a:not(.btn-primary):not(.btn-submit) {
    color: #9d22ae;
    text-decoration: underline;
}

.confirmation-actions {
    margin-top: 2rem;
}

.btn-done {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-done:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

/* Registration Closed View */
.closed-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.closed-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.events-link {
    color: #9d22ae;
    text-decoration: underline;
    font-weight: 600;
}

.events-link:hover {
    color: var(--accent-rose);
}

/* Guest Registration Section */
.guest-registration-section {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.guest-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
}

.guest-header h2 {
    font-size: 2rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.guest-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.guest-confirmation-msg {
    display: block;
    margin-top: 1rem;
    color: #10b981;
    font-weight: 600;
}

/* Guest GridView */
.guest-gridview {
    width: 100%;
}

.guest-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.guest-number {
    font-size: 1.5rem;
    color: #e6d9f5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(157, 34, 174, 0.3);
}

.guest-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-save-guest,
.btn-submit-later {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-save-guest {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
}

.btn-save-guest:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.5);
}

.btn-submit-later {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-submit-later:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.guest-continue {
    text-align: center;
    margin-top: 2rem;
}

.btn-continue-guest {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-continue-guest:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .registration-body {
        padding: 2rem;
    }

    .review-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .review-label {
        font-size: 0.9rem;
    }

    .expiration-group {
        flex-direction: column;
    }

    .guest-card {
        padding: 1.5rem;
    }

    .guest-actions {
        flex-direction: column;
    }

    .btn-save-guest,
    .btn-submit-later {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-register {
        height: 40vh;
    }

    .hero-register h1 {
        font-size: 2rem;
    }

    .register-session-content {
        padding: 2rem 1rem;
    }

    .registration-header {
        padding: 2rem 1.5rem;
    }

    .registration-header h2 {
        font-size: 1.6rem;
    }

    .registration-body {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .ticket-input-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-continue,
    .btn-submit-payment,
    .btn-done,
    .btn-continue-guest {
        width: 100%;
        padding: 1rem 2rem;
    }

    .confirmation-card {
        padding: 2rem 1.5rem;
    }

    .confirmation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .confirmation-card h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   END REGISTER SESSION PAGE STYLES
   ============================================ */

/* ============================================
   REGISTER TO VIEW EVENTS PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-register-view {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating16.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Registration Content */
.register-view-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.register-view-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Form Card */
.form-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 2.5rem 2rem;
    text-align: center;
}

.form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
}

.form-body {
    padding: 2.5rem;
}

/* Validation Summary */
.validation-summary {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid var(--accent-coral);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-coral);
}

.validation-summary ul {
    margin: 0;
    padding-left: 1.5rem;
}

.validation-summary li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Form Rows and Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #e6d9f5;
    font-size: 1rem;
    display: block;
    width: 100%;
}

.required {
    color: var(--accent-coral);
    font-weight: bold;
}

.optional {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: normal;
}

/* Form Inputs */
.form-input,
.form-select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #9d22ae;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.2);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--background-medium);
    color: white;
}

/* Date of Birth Inputs */
.dob-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dob-field {
    width: 60px;
    padding: 0.9rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dob-field.dob-year {
    width: 90px;
}

.dob-field:focus {
    outline: none;
    border-color: #9d22ae;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.2);
}

.dob-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dob-separator {
    color: var(--text-gray);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Field Validators */
.field-validator {
    color: var(--accent-coral);
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* Form Actions */
.form-actions {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.btn-submit {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Confirmation Card */
.confirmation-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.confirmation-card h2 {
    font-size: 2.2rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.confirmation-card p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-body {
        padding: 2rem;
    }

    .confirmation-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-register-view {
        height: 40vh;
    }

    .hero-register-view h1 {
        font-size: 2rem;
    }

    .register-view-content {
        padding: 2rem 1rem;
    }

    .form-header {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .form-body {
        padding: 1.5rem;
    }

    .form-row {
        gap: 1.5rem;
    }

    .dob-field {
        width: 50px;
        padding: 0.8rem 0.3rem;
    }

    .dob-field.dob-year {
        width: 80px;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }

    .confirmation-card {
        padding: 2rem 1.5rem;
    }

    .confirmation-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .confirmation-card h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   END REGISTER TO VIEW EVENTS PAGE STYLES
   ============================================ */

/* ============================================
   EVENTS PAGE STYLES (Events.aspx)
   ============================================ */

/* Hero Section for Events */
.hero-events {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('images/speeddating15.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Events Page Content */
.events-page-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

.events-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.events-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.events-intro h2 {
    font-size: 2.5rem;
    color: #e6d9f5;
    margin-bottom: 1rem;
}

.events-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Events List Container */
.events-list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Individual Event Card */
.event-card {
    background: var(--background-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 34, 174, 0.3);
    border-color: rgba(157, 34, 174, 0.5);
}

/* Event Header */
.event-header {
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    padding: 1.5rem 2rem;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: block;
}

/* PinkTitle class for Party events - applied via code-behind */
.PinkTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffb3ff;
    margin: 0;
    display: block;
}

/* Title class for regular events - applied via code-behind */
.Title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: block;
}

/* Event Details Grid */
.event-details-grid {
    padding: 2rem;
}

.event-detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: start;
}

.event-detail-row:last-child {
    border-bottom: none;
}

.event-description-row {
    grid-template-columns: 200px 1fr;
}

.event-detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e6d9f5;
    font-size: 0.95rem;
}

.detail-icon {
    font-size: 1.2rem;
}

.event-detail-value {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Venue Info */
.venue-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.venue-name {
    font-weight: 600;
    color: white;
}

.venue-address {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Event Cost */
.event-cost {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9d22ae;
}

/* Event Status */
.event-status {
    font-weight: 600;
    color: var(--accent-rose);
}

/* Event Actions */
.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
}

/* Event Action Buttons */
.btn-event-primary {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-event-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.btn-event-waiting {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--accent-coral);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-coral);
    display: inline-block;
    text-align: center;
}

.btn-event-waiting:hover {
    background: var(--accent-coral);
    color: white;
    transform: translateY(-2px);
}

.btn-event-info {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-align: center;
}

.btn-event-info:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

/* Events Testimonials Section */
.events-testimonials-section {
    padding: 4rem 2rem;
    background: var(--background-medium);
}

.events-testimonials-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card-small {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 34, 174, 0.5);
    box-shadow: 0 8px 25px rgba(157, 34, 174, 0.2);
}

.testimonial-card-small p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-small {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author-small strong {
    color: #e6d9f5;
    font-size: 1.1rem;
}

.testimonial-author-small span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Styles for Events Page */
@media (max-width: 1024px) {
    .events-intro h2 {
        font-size: 2rem;
    }

    .event-title,
    .PinkTitle,
    .Title {
        font-size: 1.5rem;
    }

    .event-detail-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .event-description-row {
        grid-template-columns: 1fr;
    }

    .event-detail-label {
        font-size: 0.9rem;
    }

    .event-detail-value {
        font-size: 1rem;
    }

    .event-actions {
        flex-direction: column;
        padding: 1.5rem;
    }

    .btn-event-primary,
    .btn-event-waiting,
    .btn-event-info {
        width: 100%;
        text-align: center;
    }

    .events-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card-small {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-events {
        height: 40vh;
    }

    .hero-events h1 {
        font-size: 2rem;
    }

    .events-page-content {
        padding: 2rem 1rem;
    }

    .event-header {
        padding: 1rem 1.5rem;
    }

    .event-details-grid {
        padding: 1.5rem;
    }
}

/* ============================================
   END EVENTS PAGE STYLES
   ============================================ */

/* Responsive */
@media (max-width: 1024px) {
    .hero-available-tickets h1 {
        font-size: 2.5rem;
    }

    .availability-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .notice-icon {
        margin: 0 auto;
    }

    .event-title-section {
        padding: 2rem;
    }

    .event-main-title {
        font-size: 1.8rem;
    }

    .event-info-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.2rem 1.5rem;
    }

    .event-info-label {
        font-size: 0.95rem;
    }

    .event-info-value {
        font-size: 1rem;
    }

    .event-action-links {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .action-link {
        width: 100%;
    }
}

/* ============================================
   ERROR PAGE STYLES
   ============================================ */

.hero-error {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/speeddating21.jpg') center/cover no-repeat;
    min-height: 50vh;
}

.error-content {
    padding: 2rem 1rem;
    background: var(--background-dark);
    min-height: 60vh;
}

.error-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.error-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.error-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.error-card h2 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.error-message {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.error-form-section {
    margin-bottom: 2rem;
}

.error-form-section h3 {
    color: var(--accent-purple);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.error-form-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.error-form-section .form-group {
    margin-bottom: 1.5rem;
}

.error-form-section .form-input,
.error-form-section .form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.error-form-section .form-input:focus,
.error-form-section .form-textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(157, 34, 174, 0.1);
}

.error-form-section .form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.error-form-section .form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.error-form-section .validator-group {
    margin-top: 0.5rem;
}

.error-form-section .field-validator {
    color: var(--accent-coral);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

.error-form-section .info-message {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.error-form-section .form-actions {
    text-align: center;
    margin-top: 2rem;
}

.error-form-section .btn-submit {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-purple), #7d1b8e);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.4);
    transition: all 0.3s ease;
}

.error-form-section .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.6);
}

.error-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-links h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.error-link {
    display: block;
    padding: 1rem;
    background: rgba(157, 34, 174, 0.1);
    border: 1px solid rgba(157, 34, 174, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.error-link:hover {
    background: rgba(157, 34, 174, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .error-card {
        padding: 2rem 1.5rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-card h2 {
        font-size: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}


/* Footer Newsletter Form Styles */
.footer-section input[type="email"],
.footer-section input[type="number"],
.footer-section select {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.footer-section input[type="email"]:focus,
.footer-section input[type="number"]:focus,
.footer-section select:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
}

.footer-section button[type="submit"] {
    padding: 0.8rem 1.5rem;
    background: var(--accent-purple);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-section button[type="submit"]:hover {
    background: #b12ec6;
}


/* Override footer newsletter form to use white instead of dark blue */
footer input[type="email"],
footer input[type="number"],
footer select {
    background: rgba(255, 255, 255, 0.05) !important;
}

footer input[type="email"]:focus,
footer input[type="number"]:focus,
footer select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
}


/* Footer Newsletter Form - Clean Class-Based Styling */
.footer-input,
.footer-select {
    padding: 0.8rem !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    font-size: 1rem !important;
}

.footer-input:focus,
.footer-select:focus {
    outline: none !important;
    border-color: var(--accent-purple) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.footer-select {
    cursor: pointer !important;
}

.footer-btn {
    padding: 0.8rem 1.5rem !important;
    background: var(--accent-purple) !important;
    border: none !important;
    border-radius: 5px !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}

.footer-btn:hover {
    background: #b12ec6 !important;
}


/* Footer select dropdown options - white background with black text */
.footer-select option {
    background: white !important;
    color: #1a1a1a !important;
}

footer select option {
    background: white !important;
    color: #1a1a1a !important;
}


/* Contact confirmation button - ensure white text */
.confirmation-message .btn-primary {
    color: white !important;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e) !important;
}

.confirmation-message .btn-primary:hover {
    color: white !important;
}


/* Force white text on confirmation page button */
.confirmation-message a.btn-primary {
    color: white !important;
    text-decoration: none !important;
}

.confirmation-message a.btn-primary:hover {
    color: white !important;
}


/* CRITICAL: Force white text on Return to Homepage button */
div.confirmation-message > a.btn-primary,
.confirmation-message > a.btn-primary,
a.btn-primary {
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #9d22ae, #7d1b8e) !important;
}

div.confirmation-message > a.btn-primary:hover,
.confirmation-message > a.btn-primary:hover {
    color: #ffffff !important;
}


/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

.hero-privacy {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 15, 15, 0.85)), 
                url('images/speeddating23.jpg') center/cover;
    height: 60vh;
}

.legal-content {
    padding: 4rem 2rem;
    background: var(--background-dark);
    min-height: 70vh;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header {
    background: linear-gradient(135deg, var(--accent-purple), #7d1b8e);
    padding: 2rem;
    text-align: center;
}

.last-updated {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.legal-body {
    padding: 3rem 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-body h2 {
    color: white;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-purple);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-body p {
    margin-bottom: 1.5rem;
}

.legal-body ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-body ul li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.legal-body a {
    color: var(--accent-purple);
    text-decoration: underline;
}

.legal-body a:hover {
    color: #b12ec6;
}

.legal-body strong {
    color: white;
    font-weight: 600;
}

.contact-box {
    background: rgba(157, 34, 174, 0.1);
    border: 1px solid rgba(157, 34, 174, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .legal-body {
        padding: 2rem 1.5rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
    
    .legal-body h3 {
        font-size: 1.2rem;
    }
}


/* ============================================
   EVENTS PAGE - MODERN CARD DESIGN
   ============================================ */

.hero-events {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating33.jpg') center/cover;
    height: 70vh;
}

.hero-asian-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating50.jpg') center/cover;
    height: 70vh;
}

.hero-gay-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating51.jpg') center/cover;
    height: 70vh;
}

.hero-greek-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating52.jpg') center/cover;
    height: 70vh;
}

.hero-interracial-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating53.jpg') center/cover;
    height: 70vh;
}

.hero-irish-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating54.jpg') center/cover;
    height: 70vh;
}

.hero-middle-eastern-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating55.jpg') center/cover;
    height: 70vh;
}

.hero-russian-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating57.jpg') center/cover;
    height: 70vh;
}

.hero-persian-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating58.jpg') center/cover;
    height: 70vh;
}

.hero-cougars-cubs-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating59.jpg') center/cover;
    height: 70vh;
}

.hero-african-american-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating60.jpg') center/cover;
    height: 70vh;
}

.hero-multicultural-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating61.jpg') center/cover;
    height: 70vh;
}

.hero-boat-party {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating62.jpg') center/cover;
    height: 70vh;
}

.hero-valentines-party {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating63.jpg') center/cover;
    height: 70vh;
}

.hero-singles-cruise {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating64.jpg') center/cover;
    height: 70vh;
}

.hero-best-company {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating65.jpg') center/cover;
    height: 70vh;
}

.hero-legal {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating1.jpg') center/cover;
    height: 50vh;
}

.hero-italian-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating56.jpg') center/cover;
    height: 70vh;
}

.hero-jewish-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating56.jpg') center/cover;
    height: 70vh;
}

.hero-latin-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating57.jpg') center/cover;
    height: 70vh;
}

.hero-lesbian-dating {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.8)), 
                url('images/speeddating58.jpg') center/cover;
    height: 70vh;
}

.events-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.events-intro {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.events-intro h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.events-intro p {
    font-size: 1.2em;
    color: #e6d9f5;
    font-weight: 300;
}

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

.event-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 34, 174, 0.1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(157, 34, 174, 0.3);
    border-color: rgba(157, 34, 174, 0.3);
}

.event-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #9d22ae 0%, #7d1b8e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.event-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white" opacity="0.15">❤️</text></svg>') center/100px repeat;
}

.event-content {
    padding: 28px;
}

/* Prevent any list styling in event content */
.event-content ul,
.event-content ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.age-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.event-title {
    font-size: 1.6em;
    color: white;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.3;
}

/* Party events get a pink/magenta title */
.event-title[data-party="true"] {
    color: #ff69b4;
}

.event-details {
    margin-bottom: 18px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #d1d5db;
    font-size: 0.95em;
}

.detail-icon {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1em;
}

.event-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95em;
}

.event-footer {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.price {
    font-size: 1.5em;
    color: #e6d9f5;
    font-weight: 700;
}

.find-out-more {
    color: #e6d9f5;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    margin-bottom: 4px;
}

.find-out-more:hover {
    color: white;
    text-decoration: none;
    transform: translateX(3px);
}

.find-out-more::after {
    content: '→';
    margin-left: 6px;
    transition: margin-left 0.2s ease;
}

.find-out-more:hover::after {
    margin-left: 10px;
}

.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-register {
    background: linear-gradient(135deg, #9d22ae 0%, #7d1b8e 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(157, 34, 174, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-register:hover {
    background: linear-gradient(135deg, #b12ec6 0%, #9d22ae 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 34, 174, 0.4);
    color: white;
}

.btn-waiting {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid #b12ec6;
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-waiting:hover {
    background: rgba(177, 46, 198, 0.2);
    border-color: #e6d9f5;
    color: #e6d9f5;
    transform: translateY(-2px);
}

.age-badge {
    display: inline-block;
    background: rgba(157, 34, 174, 0.25);
    color: white;
    border: 1px solid rgba(157, 34, 174, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.online-badge {
    display: inline-block;
    background: rgba(34, 157, 174, 0.25);
    color: white;
    border: 1px solid rgba(34, 157, 174, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Design for Events */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-intro h2 {
        font-size: 2em;
    }

    .events-intro p {
        font-size: 1.1em;
    }

    .event-content {
        padding: 24px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-register, .btn-waiting {
        width: 100%;
    }
    
    .events-page-container {
        padding: 40px 20px;
    }
}


/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.quick-links ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.quick-links ul {
        grid-template-columns: 1fr;
    }
    
    /* Hide footer on registration page for mobile */
    .registration-page footer {
        display: none !important;
    }
}
