/* =========================================
   1. VARIABLEN & GRUNDEINSTELLUNGEN
   ========================================= */
   :root {
    /* =========================================
       THEME INPUT (coming from n8n later)
       ========================================= */
    --primary: #e63946;   /* default */
    --secondary: #1d3557; /* default */

    /* =========================================
       DERIVED THEME TOKENS (safe defaults)
       - these should "fit" the logo but not be 1:1
       ========================================= */
    --accent: var(--primary);
    --accent-soft: rgba(230,57,70,0.18); /* default, can be overwritten by n8n */

    /* Dark surfaces tinted towards secondary */
    --header-bg: #14181f;
    --footer-bg: #12161c;

    --header-fg: #ffffff;
    --footer-fg: #ffffff;

    /* Lines / borders in header+footer */
    --header-border: var(--accent);
    --footer-border: var(--accent);

    /* =========================================
       EXISTING VARIABLES (mapped to tokens)
       ========================================= */

    /* Farben */
    --brand-dark: var(--header-bg);  /* Header & Footer background */
    --body-bg: #ffffff;             /* keep only one body-bg */
    --card-bg: #ffffff;
    
    /* CTA color: keep green for now OR switch to accent */
    /* Option 1: keep your green CTA */
    --action-green: #28a745;

    /* Option 2 (brand-matching): uncomment to use accent as CTA */
    /* --action-green: var(--accent); */

    --badge-orange: #ff9800;

    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;

    /* Layout */
    --padding: 20px;
    --max-width: 1200px;
}

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

body { 
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif; 
    line-height: 1.6; 
    color: var(--text-main); 
    background-color: var(--body-bg); 
}

a   { text-decoration: none; color: var(--brand-dark); transition: all 0.3s; }
ul  { list-style: none; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header { 
    background: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 3px solid var(--header-border); 
}

/* --- SPRACHUMSCHALTER --- */
.lang-switch {
    position: relative;
    margin-left: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-current:hover {
    color: #fff;
    border-color: #fff;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 5px 0;
    min-width: 120px;
    z-index: 2000;
}

/* Zeige Dropdown beim Hover über den Container */
.lang-switch:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333 !important; /* Überschreibt Header Styles */
    margin: 0 !important;
    font-weight: normal;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background-color: #f4f4f4; color: var(--action-green) !important; }

/* Mobile Anpassung */
@media (max-width: 1100px) {
    .lang-switch {
        margin: 10px 20px; /* Im Mobile Drawer */
        width: fit-content;
    }
    .lang-dropdown {
        position: static; /* Im Flow bleiben bei Mobile */
        box-shadow: none;
        border: 1px solid #ddd;
        display: none; /* Erstmal zu */
    }
    .lang-switch.active .lang-dropdown { display: block; }
}

/* =========================================
   FIX: Grüner Button in Flucht bringen
   ========================================= */

.hero-cta-container {
    width: 100%;
    max-width: var(--max-width); /* Begrenzung auf 1200px */
    padding: 0 var(--padding);   /* Gleiches Side-Padding wie Header */
    margin: 0 auto;              /* Zentrierung */
    box-sizing: border-box;
}

/* Der eigentliche Button-Link */
.hero .btn-cta-full {
    display: block;
    width: 100%;
    background-color: var(--action-green);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px; /* Optional für abgerundete Ecken */
    transition: background 0.3s;
}

.hero .btn-cta-full:hover {
    background-color: #218838;
}

nav { 
    max-width: var(--max-width); /* WICHTIG: 1200px */
    width: 100%;                 /* Damit margin auto funktioniert */
    margin: 0 auto;              /* Zentriert den Container */
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.8rem var(--padding); /* Padding links/rechts identisch zum Content */
}

.logo { 
    display: flex;
    align-items: center;
    /* Font-Styles entfernen, da es jetzt ein Bild ist */
    padding: 5px 0;
}

.logo img {
    height: 40px; /* Passt perfekt in die Navbar */
    width: auto;  /* Verhältnis beibehalten */
    display: block;
}

/* Badges (Neu / Kostenlos) */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 6px;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: -1px;
}
.badge-new  { background-color: var(--badge-orange); color: #fff; }
.badge-free { background-color: var(--action-green); color: #fff; }

/* Desktop Navigation */
.desktop-only { display: flex; align-items: center; }

.nav-links a { 
    margin-left: 25px; 
    color: #333333; 
    font-weight: 500; 
    font-size: 0.95rem; 
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover { 
    color: #999; 
}

/* --- Mobile Menu (Burger) --- */
.burger-menu {
    display: none; /* Erstmal versteckt */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Drawer (Der Kasten) */
.mobile-menu {
    display: none; 
    background-color: #f4f4f4; 
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0;
    flex-direction: column;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s;
}

.mobile-menu a:hover { background-color: #e9e9e9; color: #cc0000; }
.mobile-menu a.active { color: #cc0000; }

/* Animation des Burger Icons */
.burger-menu.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger-menu.open span:nth-child(2) { opacity: 0; }
.burger-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* --- RESPONSIVE SWITCH (WICHTIG!) --- */
@media (max-width: 1100px) {
    .desktop-only { display: none !important; }
    .burger-menu { display: flex !important; }
    
    .mobile-menu.show {
        display: flex;
        animation: slideDownMenu 0.3s ease-out;
    }
}

@keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    /* 
       1. Zeile: Dunkler Schleier (50% schwarz), damit weißer Text lesbar bleibt.
       2. Zeile: Dein Bild (Pfad ggf. anpassen!)
    */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/header.webp'); 
    
    /* 'cover' sorgt dafür, dass dein 600px Bild die Box immer komplett füllt, 
       egal wie breit der Bildschirm ist. */
    background-size: cover; 
    background-position: center; 
    
    /* Hier stellen wir die Höhe ein. 
       40vh sind ca. 40% der Bildschirmhöhe. 
       Das ist kompakt genug, damit man Profile sieht, aber groß genug für das Bild. */
    height: 40vh; 
    min-height: 350px; 
    
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: #ffffff; 
    padding: 0 20px;
    position: relative; /* Für sauberes Stacking */
}

/* Schatten für bessere Lesbarkeit auf unruhigen Bildern */
.hero h1 { 
    font-size: 2.5rem; 
    margin-bottom: 0.5rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.7); 
}
.hero p { 
    margin-bottom: 1.5rem; 
    font-size: 1.2rem; 
    opacity: 1; /* Volle Deckkraft */
    text-shadow: 0 1px 5px rgba(0,0,0,0.7);
    font-weight: 500;
}

/* =========================================
   4. LAYOUT & CONTAINER
   ========================================= */
.container { 
    max-width: var(--max-width); 
    margin: 20px auto; 
    padding: 0 var(--padding); 
}

.two-column-block { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 60px; 
}
.two-column-block p {
    text-align: justify;
}
@media(max-width: 768px) { .two-column-block { grid-template-columns: 1fr; } }

/* Trennlinien */
.section-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 25px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumb { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.breadcrumb a { color: var(--text-muted); text-decoration: underline; }
.breadcrumb span { color: var(--text-main); font-weight: bold; }

/* =========================================
   5. STÄDTE GRID (Buttons)
   ========================================= */
.city-list {
    display: grid;
    gap: 15px;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, 1fr); /* Mobile */
}
@media (min-width: 768px) { .city-list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .city-list { grid-template-columns: repeat(6, 1fr); } }

.city-list li { height: 100%; }

.city-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 10px 5px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.city-list li a:hover {
    background: var(--action-green);
    color: #fff;
    border-color: var(--action-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* =========================================
   6. DATING PROFILE GRID
   ========================================= */
.profile-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .profile-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .profile-grid { grid-template-columns: repeat(6, 1fr); } }

.profile-card {
    background: var(--card-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.profile-img-wrapper {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #eee;
}

.profile-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.profile-card:hover .profile-img-wrapper img { transform: scale(1.1); }
/* Hover Icon fix */
.profile-card:hover .profile-img-wrapper div[style*="opacity:0"] { opacity: 1 !important; }

.online-status {
    position: absolute; bottom: 8px; right: 8px;
    width: 10px; height: 10px;
    background: var(--action-green);
    border: 1px solid #fff; border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.profile-info { padding: 10px 8px; text-align: center; }
.profile-name { font-weight: 700; font-size: 0.95rem; color: var(--text-main); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-location { font-size: 0.8rem; color: var(--text-muted); }
.profile-buttons { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }

/* =========================================
   7. BUTTONS & ANIMATIONEN
   ========================================= */
.btn-grey {
    display: block; background: #f1f1f1; color: #777;
    text-align: center; padding: 8px; font-size: 0.85rem;
    border-radius: 4px; border: 1px solid #ddd; font-weight: 600;
}
.btn-grey:hover { background: #e4e4e4; color: #333; }

.btn-green-action, .btn-cta {
    background-color: var(--action-green);
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 4px; border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-green-action { padding: 10px; font-size: 0.9rem; text-transform: uppercase; width: 100%; display: block; }
.btn-cta { padding: 12px 30px; font-size: 1rem; display: inline-block; }

.btn-green-action:hover, .btn-cta:hover { background-color: #218838; color: #fff; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); transform: scale(1); }
}
.pulse-anim { animation: pulse-green 2s infinite; }

/* =========================================
   8. MODAL BOX
   ========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999; display: none;
    justify-content: center; align-items: center; padding: 20px;
    backdrop-filter: blur(3px);
}

.modal-box {
    background: #fff; width: 100%; max-width: 600px;
    border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
    position: absolute; top: 10px; right: 15px;
    font-size: 1.5rem; color: #aaa; cursor: pointer; z-index: 10; line-height: 1;
}
.modal-close:hover { color: #333; }

.modal-body { display: flex; padding: 20px; gap: 20px; align-items: center; }
.modal-img-wrapper { flex: 0 0 180px; height: 180px; border-radius: 4px; overflow: hidden; border: 1px solid #eee; }
.modal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.modal-text { flex: 1; font-family: Arial, sans-serif; position: relative; }
.modal-headline { font-size: 1.1rem; color: #555; line-height: 1.4; margin-bottom: 15px; }
.modal-highlight { font-size: 1.4rem; font-weight: bold; color: #ff6600; line-height: 1.2; display: block; margin-top: 10px; }
.modal-highlight span { color: #333; font-weight: normal; }
.modal-footer { padding: 15px 20px; background: #fff; border-top: 1px solid #eee; }

.btn-modal-cta {
    display: block; width: 100%;
    background: var(--action-green); color: #fff;
    font-size: 1.2rem; font-weight: bold; text-align: center;
    padding: 15px; border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.btn-modal-cta:hover { background: #218838; transform: scale(1.02); color: #fff; }

@media (max-width: 600px) {
    .modal-body { flex-direction: column; text-align: center; }
    .modal-img-wrapper { width: 120px; height: 120px; margin: 0 auto; flex: none; }
    .modal-highlight { font-size: 1.2rem; }
}

/* =========================================
   9. FOOTER (Modern Dark)
   ========================================= */
/* Update für Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-fg);
    font-family: Arial, sans-serif;
    padding: 40px 0;
    margin-top: 60px;
    width: 100%;
    font-size: 0.9rem;
    border-top: 3px solid var(--footer-border);
}

.footer-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--padding);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.legal-disclaimer {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 0 var(--padding);
    font-size: 0.85rem;
    color: var(--text-main);
}

.legal-disclaimer p {
    color: inherit;
}

@media (max-width: 768px) {
    .legal-disclaimer {
        font-size: 0.8rem;
    }
}
footer a { color: #333 !important; font-weight: 500; transition: color 0.2s; }
footer a:hover { color: #ccc !important; text-decoration: underline; }

.jusprog-logo { height: 30px; width: auto; vertical-align: middle; display: block; filter: brightness(0.9); }

@media (max-width: 1024px) {
    .footer-container { flex-direction: column; align-items: stretch; padding: 15px 0; }
    .footer-left { align-items: flex-start; }
    .footer-right { align-items: flex-end; }
}

/* =========================================
   10. EXTRAS (für Unterseiten)
   ========================================= */
.content-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 40px; align-items: start; }
@media(max-width: 900px) { .content-layout { grid-template-columns: 1fr; } }

.sidebar h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-muted); border-bottom: 2px solid #ddd; padding-bottom: 10px; }
.sidebar ul li { border-bottom: 1px solid #eee; }
.sidebar ul li a { display: block; padding: 12px 15px; color: var(--text-muted); transition: all 0.2s ease; }
.sidebar ul li a:hover { background-color: var(--brand-dark); color: #fff; padding-left: 20px; }
.sidebar-banner { margin: 30px 0; text-align: center; }
.sidebar-banner img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

.seo-text p { margin-bottom: 1.5rem; text-align: justify; }
.seo-text h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; color: var(--brand-dark); }
.highlight { font-weight: bold; color: var(--text-main); }

/* Offer Boxes */
.offer-list { margin-top: 40px; }
.offer-box { display: flex; background: #fff; border: 1px solid #e0e0e0; padding: 20px; margin-bottom: 20px; border-radius: 5px; align-items: center; gap: 20px; transition: transform 0.2s; }
.offer-box:hover { border-color: #ccc; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
@media(max-width: 768px) { .offer-box { flex-direction: column; text-align: center; } .offer-buttons { width: 100%; } }
.offer-img { flex: 0 0 120px; } .offer-img img { width: 100%; height: auto; border-radius: 4px; }
.offer-content { flex: 1; } .offer-content h3 { margin-bottom: 10px; font-size: 1.2rem; color: var(--text-main); } .offer-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0; }
.offer-buttons { display: flex; flex-direction: column; gap: 10px; min-width: 180px; }

/* Premium Box */
.premium-box { border: 1px solid #ccc; background: #fff; margin: 30px 0; position: relative; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.premium-badge { position: absolute; top: 0; right: 0; background: var(--action-green); color: white; padding: 5px 15px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; }
.box-logo { flex: 0 0 150px; height: 100px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.box-logo .premium-box-logo { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.box-content { flex: 1; } .box-content ul { margin-bottom: 0; } .box-content li { margin-bottom: 5px; font-size: 0.95rem; } .box-content li::before { content: "✓ "; color: var(--action-green); font-weight: bold; }

/* =========================================
   10. Sonstiges (Modern Dark)
   ========================================= */
.justify { text-align: justify; }

.clean-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 15px 0;
}

.clean-list li {

  padding: 0 0 8px 24px;
  position: relative;
  line-height: 1.5;
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #007acc;
  font-size: 1.4em;
  line-height: 1;
}

/* --- REGISTRIERUNGS-MODAL STYLES --- */
#registerModal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    z-index: 10000; /* Sehr hoch, damit es über allem liegt */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Dunkler Hintergrund */
    align-items: center;
    justify-content: center;
}

/* Container für das Formular innerhalb des Modals */
#registerModal .register-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    box-sizing: border-box;
    text-align: center;
    position: relative;
    margin: 20px auto; /* Etwas Abstand auf mobilen Geräten */
}

/* Close Button für das Register Modal */
.reg-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.reg-modal-close:hover { color: #000; }

/* --- Original Formular Styles (angepasst) --- */
.vx-logo {
    font-size: 32px;
    font-weight: 900;
    color: #c23b67;
    margin: 0;
    text-transform: uppercase;
}
.vx-subtitle {
    color: #666;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 16px;
}
.vx-form-group {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}
.vx-label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}
.vx-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s;
    color: #333;
}
.vx-input:focus { border-color: #c23b67; outline: none; }

/* Fehler Styling */
.vx-input.input-error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2;
    animation: shake 0.4s ease-in-out;
}
.vx-error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.vx-helper-text { font-size: 12px; color: #888; margin-top: 5px; }
.vx-submit-btn {
    background-color: #c23b67;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.vx-submit-btn:hover { background-color: #a02e52; }
.vx-legal-notice {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
    text-align: left;
}
.vx-age-warning {
    background-color: #fff3e0;
    color: #d86c00;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

a.partner { color: #333; }
a.partner:hover { color: #999; }