:root {
    --vel-pink: #e60073;
    --vel-pink-dark: #b3005a;
    --vel-pink-light: #ff5ba7;
    --vel-pink-soft: #ffe3f1;
    --vel-ink: #3a2230;
}

html {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    color: var(--vel-ink);
    background: #fff7fb;
    font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

a {
    color: var(--vel-pink);
}

a:hover {
    color: var(--vel-pink-dark);
}

/* ---------- Header / nav ---------- */
.vel-navbar {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(230, 0, 115, 0.12);
}

.vel-navbar .navbar-brand img {
    height: 46px;
}

.vel-navbar .nav-link {
    font-weight: 600;
    color: var(--vel-ink) !important;
}

.vel-navbar .nav-link:hover {
    color: var(--vel-pink) !important;
}

.btn-vel {
    background: linear-gradient(135deg, var(--vel-pink-light), var(--vel-pink));
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    box-shadow: 0 6px 18px rgba(230, 0, 115, 0.35);
    transition: transform 0.08s ease, box-shadow 0.2s ease;
}

.btn-vel:hover,
.btn-vel:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(230, 0, 115, 0.45);
}

.btn-vel-outline {
    border: 2px solid var(--vel-pink);
    color: var(--vel-pink);
    background: transparent;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
}

.btn-vel-outline:hover {
    background: var(--vel-pink);
    color: #fff;
}

/* ---------- Hero ---------- */
.vel-hero {
    background: radial-gradient(1200px 600px at 20% -10%, #ffd0e8 0%, rgba(255, 208, 232, 0) 55%),
                linear-gradient(135deg, #fff 0%, #ffeef7 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.vel-hero h1 {
    font-weight: 800;
    line-height: 1.05;
    color: var(--vel-ink);
}

.vel-hero .vel-accent {
    color: var(--vel-pink);
}

.vel-hero p.lead {
    color: #6b4a5b;
}

.vel-hero-logo {
    max-width: 320px;
    width: 100%;
    filter: drop-shadow(0 12px 24px rgba(230, 0, 115, 0.25));
}

/* ---------- Promo video ---------- */
.vel-video-wrap {
    max-width: 760px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(230, 0, 115, 0.22);
    border: 3px solid #fff;
    background: #000;
}

.vel-video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

/* ---------- Registration card ---------- */
.vel-card {
    background: #fff;
    border: 1px solid #ffd6ea;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(230, 0, 115, 0.14);
}

.vel-card .card-header {
    background: linear-gradient(135deg, var(--vel-pink), var(--vel-pink-dark));
    color: #fff;
    border-radius: 20px 20px 0 0 !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--vel-pink-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 91, 167, 0.25);
}

/* ---------- Feature / info sections ---------- */
.vel-feature {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    border: 1px solid #ffe0ef;
    box-shadow: 0 8px 22px rgba(230, 0, 115, 0.08);
}

.vel-feature .vel-emoji {
    font-size: 2.2rem;
}

.vel-stat {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--vel-pink);
}

.vel-testimonial {
    background: var(--vel-pink-soft);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
}

.vel-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.vel-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(230, 0, 115, 0.25);
}

/* ---------- Member profile grid ---------- */
.vel-profile-card {
    position: relative;
    background: #fff;
    border: 1px solid #ffe0ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(230, 0, 115, 0.10);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.vel-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(230, 0, 115, 0.20);
}

.vel-profile-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: var(--vel-pink-soft);
}

.vel-profile-body {
    padding: 0.85rem 1rem 1.1rem;
}

.vel-profile-name {
    font-weight: 700;
    color: var(--vel-ink);
}

.vel-profile-city {
    color: #6b4a5b;
    font-size: 0.9rem;
}

.vel-online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 2px #fff;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.vel-offline-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c3b2bb;
    box-shadow: 0 0 0 2px #fff;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.vel-consent-note {
    max-width: 640px;
    margin: 1.25rem auto 0;
    font-size: 0.85rem;
    color: #8a7280;
    text-align: center;
    line-height: 1.5;
}

.vel-consent-note .vel-consent-icon {
    color: var(--vel-pink);
}

.vel-profile-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--vel-pink);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.vel-section-title {
    font-weight: 800;
    color: var(--vel-ink);
}

.vel-section-title span {
    color: var(--vel-pink);
}

/* ---------- Hotlinked photo band (cross-domain, intentionally not self-hosted) ---------- */
.vel-photo-band {
    margin: 2.5rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(230, 0, 115, 0.18);
    position: relative;
}

.vel-photo-band img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.vel-photo-band figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.75rem 1rem;
    background: linear-gradient(to top, rgba(58, 34, 48, 0.85), rgba(58, 34, 48, 0));
    color: #fff;
    font-size: 0.95rem;
}

.vel-lead-block {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- Awareness / reveal page ---------- */
.vel-reveal {
    background: linear-gradient(135deg, #2a0d1c, #4a0f2c);
    color: #ffe9f3;
    border-radius: 24px;
    padding: 3rem 2rem;
}

.vel-reveal h1,
.vel-reveal h2 {
    color: #fff;
}

.vel-reveal .vel-badge {
    display: inline-block;
    background: #ffd23f;
    color: #4a0f2c;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.vel-reveal .vel-counter {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd23f;
}

.vel-reveal a {
    color: #ffd23f;
}

/* ---------- Awareness: prominent warning + detection blocks ---------- */
.vel-warning {
    background: #7a0b16;
    border: 2px solid #ffd23f;
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
    color: #fff;
}

.vel-warning .vel-warning-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
    color: #ffd23f;
    text-transform: uppercase;
}

.vel-warning p {
    margin-bottom: 0.6rem;
}

.vel-warning p:last-child {
    margin-bottom: 0;
}

.vel-think {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid #ffd23f;
    border-radius: 0 12px 12px 0;
    padding: 1.2rem 1.4rem;
    margin: 1.5rem 0;
}

.vel-price-tag {
    display: inline-block;
    background: #ffd23f;
    color: #4a0f2c;
    font-weight: 800;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.vel-detect {
    background: #fff;
    border: 1px solid #ffd6ea;
    border-radius: 16px;
    padding: 1.6rem 1.75rem;
    margin: 1.5rem 0;
    color: var(--vel-ink);
    box-shadow: 0 10px 28px rgba(230, 0, 115, 0.10);
}

.vel-detect h3 {
    color: var(--vel-pink-dark);
    font-weight: 800;
}

.vel-detect ol {
    margin-bottom: 0;
}

.vel-detect li {
    margin-bottom: 0.7rem;
}

.vel-detect li:last-child {
    margin-bottom: 0;
}

.vel-detect .vel-detect-how {
    color: #6b5563;
    font-size: 0.92rem;
}

/* Links inside the white detection card must use the readable pink, not the
   gold inherited from .vel-reveal a (gold on white is invisible). */
.vel-detect a {
    color: var(--vel-pink);
    text-decoration: underline;
    font-weight: 600;
}

.vel-detect a:hover {
    color: var(--vel-pink-dark);
}

.vel-resources {
    background: #fff7fb;
    border: 1px dashed var(--vel-pink-light);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    margin: 1.5rem 0;
    color: var(--vel-ink);
}

.vel-resources h3 {
    color: var(--vel-pink-dark);
    font-weight: 800;
}

/* Same fix as .vel-detect: the resources card has a near-white background, so
   its links need the readable pink instead of the inherited gold. */
.vel-resources a {
    color: var(--vel-pink);
    text-decoration: underline;
    font-weight: 600;
}

.vel-resources a:hover {
    color: var(--vel-pink-dark);
}

.vel-resources ul {
    margin-bottom: 0;
}

.vel-resources li {
    margin-bottom: 0.5rem;
}

/* ---------- Subscription plans ---------- */
.vel-plan {
    position: relative;
    background: #fff;
    border: 1px solid #ffd6ea;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 28px rgba(230, 0, 115, 0.10);
    display: flex;
    flex-direction: column;
}

.vel-plan-premium {
    border: 2px solid var(--vel-pink);
    box-shadow: 0 18px 44px rgba(230, 0, 115, 0.22);
}

.vel-plan-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--vel-pink-light), var(--vel-pink));
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(230, 0, 115, 0.35);
}

.vel-plan-head {
    text-align: center;
    margin-bottom: 1rem;
}

.vel-plan-name {
    font-weight: 800;
    color: var(--vel-ink);
    margin-bottom: 0.25rem;
}

.vel-plan-price {
    text-align: center;
    margin-bottom: 0.25rem;
}

.vel-plan-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--vel-pink);
}

.vel-plan-period {
    color: #6b4a5b;
    font-weight: 600;
}

.vel-plan-old {
    color: #b9a4ae;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 600;
}

.vel-plan-note {
    text-align: center;
    color: #8a7280;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.vel-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.vel-plan-features li {
    padding: 0.45rem 0 0.45rem 1.8rem;
    position: relative;
    border-bottom: 1px solid #fbe7f1;
    color: var(--vel-ink);
}

.vel-plan-features li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.vel-plan-features li.ok::before {
    content: "\2714";
    color: #2ecc71;
}

.vel-plan-features li.no {
    color: #b9a4ae;
}

.vel-plan-features li.no::before {
    content: "\2715";
    color: #d9c2cd;
}

/* ---------- Payment logos ---------- */
.vel-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
}

.vel-payments img {
    height: 38px;
    width: auto;
    border-radius: 6px;
}

/* ---------- Footer ---------- */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    background: #fff;
    border-top: 1px solid #ffd6ea;
}
