/* VCantina Cyberpunk/Synthwave Design */

/* Font Family - Có thể thay đổi sau khi có design specs */
:root {
    --vcantina-font-primary: 'Orbitron', 'Rajdhani', 'Exo 2', 'Public Sans', sans-serif;
    --vcantina-font-heading: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
}

/* Color Variables - Có thể điều chỉnh sau khi có design specs */
:root {
    --vcantina-bg-dark: #000000;
    --vcantina-bg-darker: #0a0a0a;
    --vcantina-neon-pink: #ff00ff;
    --vcantina-neon-blue: #00ffff;
    --vcantina-neon-purple: #9d00ff;
    --vcantina-text-white: #ffffff;
    --vcantina-text-gray: #cccccc;
    --vcantina-border-pink: rgba(255, 0, 255, 0.5);
    --vcantina-border-blue: rgba(0, 255, 255, 0.5);
    --vcantina-border-purple: rgba(157, 0, 255, 0.5);
}

/* Apply font to VCantina sections */
.vcantina-hero,
.vcantina-next-level,
.vcantina-how-it-works,
.vcantina-interactive-features,
.vcantina-sellers-live,
.vcantina-streamer-signup,
.vcantina-header {
    font-family: var(--vcantina-font-primary);
}

/* Global Styles */
.vcantina-next-level,
.vcantina-how-it-works,
.vcantina-interactive-features,
.vcantina-sellers-live,
.vcantina-streamer-signup {
    background: var(--vcantina-bg-dark);
    color: var(--vcantina-text-white);
    position: relative;
    overflow: hidden;
}

/* Hero — transparent so page bg images show through */
.vcantina-hero {
    background: transparent;
    color: var(--vcantina-text-white);
    position: relative;
}

/* Circuit Board Background Pattern */
.vcantina-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Hero Section */
.vcantina-hero {
    padding: 140px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Full-page background images — above bg, below all content */
.vcantina-page-bg-left,
.vcantina-page-bg-right {
    position: absolute;
    top: 0;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.vcantina-page-bg-left {
    width: 75%;
    left: 0;
    object-position: top left;
}

.vcantina-page-bg-right {
    right: 0;
    width: 37%;
    object-position: top right;
}

/* CTA Bar Button */
.vcantina-hero-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.vcantina-btn-cta-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 12px 2px 2px;
    background: linear-gradient(130deg, #FF6565 16%, #3624FF 100%);
    box-shadow:
        0 0 6px rgba(255, 79, 79, 0.25),
        0 0 4px rgba(7, 32, 255, 0.25);
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vcantina-btn-cta-bar:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow:
        0 0 14px rgba(255, 79, 79, 0.45),
        0 0 10px rgba(7, 32, 255, 0.45);
}

.vcantina-btn-cta-bar-text {
    padding: 8px 16px;
    background: #01060F;
    border-radius: 41px;
    color: #FFFFFF;
    font-size: 20px;
    font-family: var(--vcantina-font-heading);
    font-weight: 400;
    line-height: 30px;
    white-space: nowrap;
}

.vcantina-btn-cta-bar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.vcantina-btn-cta-bar-arrow .vcantina-chevron-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.vcantina-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--vcantina-text-white);
    text-shadow: 
        0 0 10px var(--vcantina-neon-pink),
        0 0 20px var(--vcantina-neon-pink),
        0 0 30px var(--vcantina-neon-pink);
    margin-bottom: 40px;
    line-height: 1.2;
}

.vcantina-hero-description {
    font-size: 1.2rem;
    color: var(--vcantina-text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.vcantina-features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.vcantina-tag {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.vcantina-tag:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.vcantina-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: 2px solid;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.vcantina-btn-primary {
    border-color: var(--vcantina-neon-purple);
    color: var(--vcantina-text-white);
    box-shadow: 
        0 0 15px rgba(157, 0, 255, 0.5),
        inset 0 0 15px rgba(157, 0, 255, 0.1);
}

.vcantina-btn-primary:hover {
    box-shadow: 
        0 0 25px rgba(157, 0, 255, 0.8),
        inset 0 0 25px rgba(157, 0, 255, 0.2);
    transform: translateY(-2px);
    color: var(--vcantina-text-white);
    text-decoration: none;
}

/* CTA Button - Login style (gradient fill + pill + chevron) */
.vcantina-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 12px 28px;
    border-radius: 35px;
    font-family: var(--vcantina-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(93deg, #2a2a6e 0%, #5B24B8 50%, #9B24FF 100%);
    border: 2px solid rgba(155, 36, 255, 0.4);
    box-shadow:
        0 0 8px 0 rgba(91, 36, 184, 0.35),
        0 0 8px 0 rgba(155, 36, 255, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.vcantina-btn-cta:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    text-decoration: none;
    box-shadow:
        0 0 16px 0 rgba(91, 36, 184, 0.55),
        0 0 16px 0 rgba(155, 36, 255, 0.45);
}

.vcantina-btn-cta .vcantina-chevron-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.vcantina-btn-secondary {
    border-color: var(--vcantina-neon-pink);
    color: var(--vcantina-text-white);
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.5),
        inset 0 0 15px rgba(255, 0, 255, 0.1);
}

.vcantina-btn-secondary:hover {
    box-shadow: 
        0 0 25px rgba(255, 0, 255, 0.8),
        inset 0 0 25px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
    color: var(--vcantina-text-white);
    text-decoration: none;
}

.vcantina-btn-tip {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.vcantina-btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.vcantina-btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Hero Image */
.vcantina-hero-image {
    position: relative;
    z-index: 1;
}

.vcantina-bartender-illustration {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--vcantina-neon-pink);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.vcantina-glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.5), transparent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Next Level Support Section */
.vcantina-next-level {
    padding: 80px 0;
}

.vcantina-feature-card {
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vcantina-feature-card:hover {
    transform: translateY(-8px);
}

.vcantina-feature-card:hover .vcantina-feature-card-bg-img {
    transform: scale(1.05);
}

/* Card background image — fills card */
.vcantina-feature-card-bg-img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

/* Overlay: icon + text centered inside card image */
.vcantina-feature-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vcantina-feature-card-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    margin-bottom: 16px;
}

.vcantina-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 4px;
}

.vcantina-feature-text {
    color: var(--vcantina-text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Section title left-aligned variant */
.vcantina-section-title-left {
    text-align: left;
    margin-bottom: 32px;
}

.vcantina-section-title-left .vcantina-icon-inline {
    margin-left: 0;
    margin-right: 10px;
}

/* How it works Section */
.vcantina-how-it-works {
    padding: 80px 0;
}

.vcantina-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--vcantina-text-white);
    text-align: left;
    margin-bottom: 50px;
   
}

.vcantina-icon-inline {
    font-size: 2rem;
    margin-left: 15px;
    /* filter: drop-shadow(0 0 10px var(--vcantina-neon-pink)); */
}

/* Step card — gradient border, dark inside, left-aligned */
.vcantina-step-card {
    border-radius: 16px;
    padding: 24px 28px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    background: #0a0a14;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#0a0a14, #0a0a14),
        linear-gradient(135deg, #FF4D6A 0%, #7B2FFF 50%, #3624FF 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 0 10px rgba(255, 77, 106, 0.15),
        0 0 10px rgba(54, 36, 255, 0.15);
}

.vcantina-step-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 20px rgba(255, 77, 106, 0.3),
        0 0 20px rgba(54, 36, 255, 0.3);
}

/* Step header: icon + "Step X" inline */
.vcantina-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vcantina-step-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.vcantina-step-label {
    font-family: var(--vcantina-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
}

.vcantina-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 10px;
}

.vcantina-step-description {
    color: var(--vcantina-text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Interactive Features Section */
.vcantina-interactive-features {
    padding: 80px 0;
}

.vcantina-callout {
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid var(--vcantina-neon-pink);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 
        0 0 25px rgba(255, 0, 255, 0.4),
        inset 0 0 25px rgba(255, 0, 255, 0.1);
}

.vcantina-callout-large {
    padding: 40px;
}

.vcantina-callout-small {
    padding: 25px;
}

.vcantina-callout-right {
    margin-left: auto;
}

.vcantina-callout-icons,
.vcantina-social-icons,
.vcantina-payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vcantina-callout-text {
    color: var(--vcantina-text-white);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.vcantina-streamer-image-wrapper {
    position: relative;
    margin: 40px 0;
}

.vcantina-streamer-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid var(--vcantina-neon-pink);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.vcantina-floating-drinks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.vcantina-drink-icon {
    position: absolute;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--vcantina-neon-pink));
}

.vcantina-drink-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.vcantina-drink-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.vcantina-drink-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* =============================================
   Best Sellers + Live Now — Combined Section
   ============================================= */
.vcantina-sellers-live {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--vcantina-text-white);
}

.vcantina-sellers-live-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

/* --- Best Sellers Block --- */
.vcantina-best-sellers-block {
    margin-bottom: 60px;
}

/* Best Sellers — 5 columns, horizontal cards */
.vcantina-best-sellers-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.vcantina-best-seller-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.vcantina-best-seller-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.8);
}

/* Left: text content */
.vcantina-best-seller-left {
    flex: 1;
    min-width: 0;
}

/* Right: drink image (can be link) */
.vcantina-best-seller-right {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.vcantina-best-seller-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.vcantina-drink-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vcantina-streamer-name {
    color: var(--vcantina-text-white);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1px;
}

.vcantina-streamer-info {
    color: var(--vcantina-text-gray);
    font-size: 0.65rem;
    margin-bottom: 6px;
}

.vcantina-drink-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vcantina-neon-pink);
    margin-bottom: 0;
}

/* Price + Tip same row */
.vcantina-best-seller-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vcantina-tip-btn {
    padding: 3px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: transparent;
    color: var(--vcantina-text-white);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vcantina-tip-btn:hover {
    border-color: var(--vcantina-neon-pink);
    color: var(--vcantina-neon-pink);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}

/* --- Live Now Block --- */
.vcantina-live-now-block {
    /* inside the same section */
}

.vcantina-streamer-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    gap: 10px;
}

.vcantina-streamer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
   
}

/* Top row: thumb + name + live badge */
.vcantina-sc-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vcantina-streamer-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.vcantina-streamer-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vcantina-sc-name {
    flex: 1;
    min-width: 0;
}

/* Bottom row: platform + button | avg tip */
.vcantina-sc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.vcantina-sc-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Small button inside card */
.vcantina-sc-btn {
    font-size: 10px !important;
    padding: 5px 10px 5px 14px !important;
}

.vcantina-sc-chevron {
    width: 16px !important;
    height: 16px !important;
}

.vcantina-live-badge {
    background: #ff0000;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

/* Live dot style (red circle + text) */
.vcantina-live-dot {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff4d4d;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.vcantina-live-dot-circle {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.vcantina-streamer-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 2px;
}

.vcantina-streamer-card-info {
    color: var(--vcantina-text-gray);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.vcantina-streamer-platform {
    color: var(--vcantina-text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.vcantina-avg-tip {
    color: var(--vcantina-text-gray);
    font-size: 0.8rem;
    margin-bottom: 0;
    white-space: nowrap;
}

/* Streamer Signup Section */
.vcantina-streamer-signup {
    padding: 60px 0;
}

/* Single card bar */
.vcantina-signup-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 40px;
}

.vcantina-signup-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vcantina-signup-left {
    flex: 1;
    min-width: 0;
}

.vcantina-signup-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 8px;
}

.vcantina-signup-desc {
    font-size: 0.85rem;
    color: var(--vcantina-text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.vcantina-signup-left .vcantina-features-tags {
    margin-bottom: 0;
}

.vcantina-signup-right {
    flex-shrink: 0;
}

.vcantina-signup-btn {
    font-size: 13px !important;
    padding: 10px 18px 10px 22px !important;
    white-space: nowrap;
}

/* (Responsive rules moved to bottom of file) */

/* Ensure sections are above background */
.vcantina-hero > .container,
.vcantina-next-level > .container,
.vcantina-how-it-works > .container,
.vcantina-interactive-features > .container,
.vcantina-sellers-live > .container,
.vcantina-streamer-signup > .container {
    position: relative;
    z-index: 1;
}

/* =============================================
   VCantina Header Component
   ============================================= */
.vcantina-header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
    position: relative;
    font-family: var(--vcantina-font-heading);
}

.vcantina-header-wrapper {
    width: 1440px;
    max-width: 100%;
    padding: 20px 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vcantina-header-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- Logo --- */
.vcantina-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vcantina-logo-container {
    width: 140px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid #FF0000;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow:
        0 0 20px rgba(255, 0, 0, 0.8),
        inset 0 0 15px rgba(255, 0, 0, 0.2);
}

.vcantina-logo-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 5px #00FFFF) drop-shadow(0 0 5px #FF6B35);
}

.vcantina-logo-icon svg {
    width: 100%;
    height: 100%;
}

.vcantina-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--vcantina-font-heading);
    color: var(--vcantina-neon-pink);
    text-shadow:
        0 0 10px var(--vcantina-neon-pink),
        0 0 20px var(--vcantina-neon-pink),
        0 0 30px var(--vcantina-neon-pink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
}

.vcantina-logo-img {
    max-height: 50px;
    filter: drop-shadow(0 0 10px var(--vcantina-neon-pink));
}

/* --- Navigation --- */
.vcantina-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.vcantina-nav-link {
    color: #FFF;
    text-decoration: none;
    font-family: var(--vcantina-font-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.vcantina-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vcantina-neon-pink);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--vcantina-neon-pink);
}

.vcantina-nav-link:hover {
    color: var(--vcantina-neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    text-decoration: none;
}

.vcantina-nav-link:hover::after {
    width: 100%;
}

/* --- Header Action Buttons --- */
.vcantina-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.vcantina-header-btn {
    display: inline-flex;
    padding: 10px 20px 10px 24px;
    align-items: center;
    gap: 10px;
    border-radius: 35px;
    text-decoration: none;
    font-family: var(--vcantina-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
    position: relative;
}

.vcantina-header-btn:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    text-decoration: none;
}

/* Register: gradient BORDER only, transparent inside */
.vcantina-header-btn-register {
    background: #0a0a14;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#0a0a14, #0a0a14),
        linear-gradient(93deg, #FF4D6A 0%, #7B2FFF 50%, #3624FF 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 0 8px 0 rgba(255, 77, 106, 0.35),
        0 0 8px 0 rgba(54, 36, 255, 0.25);
}

.vcantina-header-btn-register:hover {
    box-shadow:
        0 0 16px 0 rgba(255, 77, 106, 0.55),
        0 0 16px 0 rgba(54, 36, 255, 0.45);
}

/* Login: solid gradient fill */
.vcantina-header-btn-login {
    background: linear-gradient(93deg, #2a2a6e 0%, #5B24B8 50%, #9B24FF 100%);
    border: 2px solid rgba(155, 36, 255, 0.4);
    box-shadow:
        0 0 8px 0 rgba(91, 36, 184, 0.35),
        0 0 8px 0 rgba(155, 36, 255, 0.25);
}

.vcantina-header-btn-login:hover {
    box-shadow:
        0 0 16px 0 rgba(91, 36, 184, 0.55),
        0 0 16px 0 rgba(155, 36, 255, 0.45);
}

/* Dashboard: for logged-in users */
.vcantina-header-btn-dashboard {
    background: linear-gradient(93deg, #00C9FF 0%, #9D00FF 100%);
    border: 2px solid rgba(0, 201, 255, 0.4);
    box-shadow:
        0 0 8px 0 rgba(0, 201, 255, 0.35),
        0 0 8px 0 rgba(157, 0, 255, 0.25);
}

.vcantina-header-btn-dashboard:hover {
    box-shadow:
        0 0 16px 0 rgba(0, 201, 255, 0.55),
        0 0 16px 0 rgba(157, 0, 255, 0.45);
}

.vcantina-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.vcantina-chevron-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}
.vcantina-btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
   
}
/* --- Mobile Toggle --- */
.vcantina-mobile-toggle {
    background: transparent;
    border: 2px solid var(--vcantina-neon-pink);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.vcantina-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--vcantina-neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    transition: all 0.3s ease;
    display: block;
}

/* --- Mobile Menu --- */
.vcantina-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--vcantina-bg-dark);
    border-bottom: 2px solid var(--vcantina-neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    z-index: 1000;
}

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

.vcantina-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.vcantina-mobile-nav .vcantina-nav-link {
    font-size: 15px;
    padding: 8px 0;
}

.vcantina-mobile-nav .vcantina-header-btn {
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
}

/* --- Circuit Board Background --- */
.vcantina-header-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image:
        linear-gradient(90deg, rgba(0, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.15) 1px, transparent 1px); */
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* --- Header Responsive --- */
@media (max-width: 1199px) {
    .vcantina-nav {
        gap: 32px;
    }

    .vcantina-nav-link {
        font-size: 14px;
    }

    .vcantina-header-wrapper {
        padding: 16px 30px;
    }
}

@media (max-width: 991px) {
    .vcantina-nav {
        display: none;
    }

    .vcantina-header-actions {
        display: none;
    }

    .vcantina-mobile-toggle {
        display: flex;
    }

    .vcantina-header-wrapper {
        padding: 14px 20px;
    }
}

@media (max-width: 575px) {
    .vcantina-logo-container {
        width: 110px;
        height: 62px;
        padding: 6px 12px;
    }

    .vcantina-logo-text {
        font-size: 1rem;
    }
}

/* =============================================
   Legacy / Override Styles for VCantina
   ============================================= */
.aiz-vcantina .top-navbar,
.aiz-vcantina header {
    /* background: var(--vcantina-bg-dark) !important; */
    /* border-bottom: 2px solid var(--vcantina-neon-pink); */
    /* box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); */
}

.aiz-vcantina .top-navbar {
    border-bottom: none;
}

.aiz-vcantina header {
    /* border-top: 2px solid var(--vcantina-neon-pink); */
}

.aiz-vcantina .top-text-color-visibility,
.aiz-vcantina .middle-text-color-visibility {
    color: var(--vcantina-text-white) !important;
}

.aiz-vcantina .logo-bar-area {
    border-bottom: 2px solid var(--vcantina-neon-pink) !important;
}

.aiz-vcantina #header-logo-preview {
    filter: drop-shadow(0 0 10px var(--vcantina-neon-pink));
}

.aiz-vcantina .header_menu_links {
    color: var(--vcantina-text-white) !important;
    transition: all 0.3s ease;
}

.aiz-vcantina .header_menu_links:hover,
.aiz-vcantina .header_menu_links.active {
    color: var(--vcantina-neon-pink) !important;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.aiz-vcantina .btn-primary,
.aiz-vcantina .btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--vcantina-neon-pink) !important;
    color: var(--vcantina-text-white) !important;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5) !important;
}

.aiz-vcantina .btn-primary:hover,
.aiz-vcantina .btn-outline-primary:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8) !important;
    transform: translateY(-2px);
}

.aiz-vcantina .front-header-search {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid var(--vcantina-neon-blue) !important;
    border-radius: 5px;
}

.aiz-vcantina .front-header-search input {
    background: transparent !important;
    color: var(--vcantina-text-white) !important;
    border: none !important;
}

.aiz-vcantina .front-header-search input::placeholder {
    color: var(--vcantina-text-gray) !important;
}

/* Footer Styles for VCantina */
.aiz-vcantina footer,
.aiz-vcantina .footer-widget {
    background: var(--vcantina-bg-dark) !important;
    /* border-top: 2px solid var(--vcantina-neon-pink) !important; */
    color: var(--vcantina-text-white) !important;
}

.aiz-vcantina .footer-widget a {
    color: var(--vcantina-text-gray) !important;
    transition: all 0.3s ease;
}

.aiz-vcantina .footer-widget a:hover {
    color: var(--vcantina-neon-pink) !important;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.aiz-vcantina .footer-widget h4,
.aiz-vcantina .footer-widget h5 {
    color: var(--vcantina-text-white) !important;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.aiz-vcantina .social a {
    border: 2px solid var(--vcantina-neon-pink) !important;
    background: rgba(255, 0, 255, 0.1) !important;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3) !important;
}

.aiz-vcantina .social a:hover {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8) !important;
    transform: translateY(-3px);
}

/* Body Background */
.aiz-vcantina {
    background: var(--vcantina-bg-dark) !important;
    position: relative;
}

/* All content above background images */
.aiz-vcantina .vcantina-header,
.aiz-vcantina .vcantina-hero > .container,
.aiz-vcantina .vcantina-next-level,
.aiz-vcantina .vcantina-how-it-works,
.aiz-vcantina .vcantina-interactive-features,
.aiz-vcantina .vcantina-sellers-live,
.aiz-vcantina .vcantina-streamer-signup,
.aiz-vcantina footer {
    position: relative;
    z-index: 1;
}

.aiz-vcantina body {
    background: var(--vcantina-bg-dark) !important;
    color: var(--vcantina-text-white) !important;
}

/* =============================================
   VCantina Footer
   ============================================= */
.vcantina-footer {
    background: var(--vcantina-bg-dark);
    color: var(--vcantina-text-white);
    padding: 48px 0 32px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vcantina-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Brand column */
.vcantina-footer-brand {
    display: flex;
    flex-direction: column;
}

.vcantina-footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.vcantina-footer-logo-img {
    width: 140px;
    height: auto;
}

.vcantina-footer-tagline {
    font-size: 0.85rem;
    color: var(--vcantina-text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.vcantina-footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* Links columns */
.vcantina-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vcantina-text-white);
    margin-bottom: 16px;
}

.vcantina-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vcantina-footer-list li {
    margin-bottom: 10px;
}

.vcantina-footer-list a {
    color: var(--vcantina-text-gray);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vcantina-footer-list a:hover {
    color: var(--vcantina-neon-pink);
    text-decoration: none;
}

/* Scroll to top button */
.vcantina-scroll-top {
    position: absolute;
    right: 40px;
    bottom: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.vcantina-scroll-top:hover {
    transform: translateY(-6px);
}

.vcantina-scroll-top-img {
    width: 48px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.6));
}

@media (max-width: 767px) {
    .vcantina-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vcantina-scroll-top {
        right: 20px;
        bottom: 20px;
    }

    .vcantina-scroll-top-img {
        width: 36px;
    }
}

/* =============================================
   VCantina – Mobile Responsive
   ============================================= */

/* ---------- Tablet (max-width: 991px) ---------- */
@media (max-width: 991px) {
    /* Hero */
    .vcantina-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .vcantina-hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .vcantina-hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .vcantina-features-tags {
        margin-bottom: 30px;
    }

    /* Sections padding */
    .vcantina-next-level,
    .vcantina-how-it-works,
    .vcantina-interactive-features,
    .vcantina-sellers-live {
        padding: 50px 0;
    }

    .vcantina-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Feature cards – 2 columns on tablet */
    .vcantina-feature-card-icon-img {
        width: 80px;
        height: 80px;
    }

    .vcantina-feature-title {
        font-size: 1rem;
    }

    /* Live Now streamer cards – adjust */
    .vcantina-streamer-card-name {
        font-size: 0.9rem;
    }

    /* Page background images */
    .vcantina-page-bg-left,
    .vcantina-page-bg-right {
        width: 50%;
        opacity: 0.5;
    }

    /* Best Sellers grid – 3 columns on tablet */
    .vcantina-best-sellers-row {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Signup card */
    .vcantina-streamer-signup {
        padding: 40px 0;
    }

    .vcantina-signup-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .vcantina-signup-card {
        padding: 24px;
    }

    /* Live Now – 2 cols on tablet */
    .vcantina-live-now-block .row .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ---------- Mobile (max-width: 575px) ---------- */
@media (max-width: 575px) {
    /* Hero */
    .vcantina-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .vcantina-hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        text-shadow:
            0 0 6px var(--vcantina-neon-pink),
            0 0 12px var(--vcantina-neon-pink);
    }

    .vcantina-hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .vcantina-features-tags {
        gap: 8px;
        margin-bottom: 20px;
    }

    .vcantina-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    /* CTA Button */
    .vcantina-btn-cta-bar-text {
        font-size: 14px;
        padding: 6px 12px;
        line-height: 20px;
    }

    .vcantina-btn-cta-bar-arrow {
        width: 18px;
        height: 18px;
    }

    .vcantina-btn-cta-bar-arrow .vcantina-chevron-icon {
        width: 18px;
        height: 18px;
    }

    /* Section padding & titles */
    .vcantina-next-level,
    .vcantina-how-it-works,
    .vcantina-interactive-features,
    .vcantina-sellers-live {
        padding: 32px 0;
    }

    .vcantina-section-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    .vcantina-icon-inline {
        font-size: 1.3rem;
        margin-right: 6px;
        width: 28px;
        height: auto;
    }

    /* Feature cards stack */
    .vcantina-feature-card-icon-img {
        width: 60px;
        height: 60px;
    }

    .vcantina-feature-title {
        font-size: 0.9rem;
    }

    .vcantina-feature-text {
        font-size: 0.75rem;
    }

    .vcantina-feature-card-overlay {
        padding: 12px;
    }

    /* Step cards */
    .vcantina-step-card {
        padding: 18px 20px;
    }

    .vcantina-step-title {
        font-size: 1rem;
    }

    .vcantina-step-description {
        font-size: 0.8rem;
    }

    .vcantina-step-label {
        font-size: 0.85rem;
    }

    /* Interactive Features banner image */
    .vcantina-interactive-features .vcantina-icon-inline {
        width: 100%;
        height: auto;
    }

    /* Best Sellers – mobile: card dọc (ảnh trên, chữ dưới) */
    .vcantina-best-sellers-block .vcantina-section-title {
        margin-bottom: 20px;
    }

    .vcantina-best-sellers-block {
        margin-bottom: 36px;
    }

    .vcantina-best-sellers-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .vcantina-best-seller-card {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 12px;
        text-align: center;
    }

    .vcantina-best-seller-right {
        width: 100%;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vcantina-best-seller-img {
        max-width: 56px;
        max-height: 56px;
        object-fit: contain;
    }

    .vcantina-best-seller-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .vcantina-drink-name {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .vcantina-streamer-name {
        font-size: 0.7rem;
    }

    .vcantina-streamer-info {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .vcantina-best-seller-footer {
        justify-content: center;
        gap: 10px;
        margin-top: 2px;
    }

    .vcantina-drink-price {
        font-size: 0.95rem;
    }

    .vcantina-tip-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Live Now – header + View All đẹp hơn */
    .vcantina-live-now-block .d-flex.justify-content-between {
        flex-direction: column;
        gap: 14px;
        align-items: stretch !important;
        margin-bottom: 24px !important;
    }

    .vcantina-live-now-block .vcantina-section-title {
        margin-bottom: 0;
    }

    .vcantina-live-now-block .vcantina-header-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Live Now streamer cards */
    .vcantina-streamer-card {
        padding: 14px;
        gap: 12px;
    }

    .vcantina-streamer-thumb {
        width: 48px;
        height: 48px;
    }

    .vcantina-streamer-card-name {
        font-size: 0.9rem;
    }

    .vcantina-streamer-card-info {
        font-size: 0.75rem;
    }

    .vcantina-streamer-platform {
        font-size: 0.75rem;
    }

    .vcantina-avg-tip {
        font-size: 0.75rem;
    }

    .vcantina-live-dot {
        font-size: 0.7rem;
    }

    /* Streamer Signup */
    .vcantina-streamer-signup {
        padding: 24px 0;
    }

    .vcantina-signup-card {
        padding: 20px;
        border-radius: 14px;
    }

    .vcantina-signup-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .vcantina-signup-title {
        font-size: 1.1rem;
    }

    .vcantina-signup-desc {
        font-size: 0.8rem;
    }

    .vcantina-signup-left .vcantina-features-tags {
        gap: 6px;
    }

    /* Footer */
    .vcantina-footer {
        padding: 32px 0 24px;
    }

    .vcantina-footer-logo-img {
        width: 110px;
    }

    .vcantina-footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .vcantina-footer-heading {
        font-size: 0.9rem;
    }

    .vcantina-footer-list a {
        font-size: 0.8rem;
    }

    /* Live Now – 1 cột trên mobile */
    .vcantina-live-now-block .row .col-lg-4,
    .vcantina-live-now-block .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .vcantina-live-now-block .row .mb-4 {
        margin-bottom: 20px !important;
    }

    /* Background images hide on very small screens */
    .vcantina-page-bg-left,
    .vcantina-page-bg-right {
        display: none;
    }
}
