@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --bg-color: #050505;
    --text-primary: #FFFFFF;
    --text-secondary: #E9ECFF;
    --accent-yellow: #FFEA00;
    /* Bright Yellow */
    --accent-glow: rgba(255, 234, 0, 0.4);
    --timer-red: #FFFF00;
    /* Yellow timer as requested */

    /* Gradients */
    --gradient-hero: radial-gradient(circle at 50% 0%, rgba(255, 234, 0, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    --card-bg: rgba(255, 255, 255, 0.03);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* Keep Inter for body text for readability */
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Background Ambient Glows */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 234, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(255, 234, 0, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
.btn,
.timer-digits,
.cta-title,
.logo span {
    font-family: 'Luckiest Guy', cursive;
    /* Fortnite Style Font */
    font-weight: 400;
    /* Luckiest Guy is naturally bold */
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--accent-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--accent-yellow);
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
    box-shadow: 0 8px 0px #bbb000, 0 8px 20px rgba(0, 0, 0, 0.4);
    /* Fortnite 3D style button */
    transform: translateY(0);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0px #bbb000, 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background-color: #ffe600;
}

/* Shimmer animation for button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: left;
    background: var(--gradient-hero);
}

.center-hero {
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
}

.hero-content.text-center {
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    /* Bigger title with Luckiest Guy */
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    /* Keep body font here */
}

/* Shop Section */
.shop-section {
    padding: 40px 0 100px;
    text-align: center;
    /* Center the timer area */
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.shop-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 20px;
    overflow: visible;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.card-image-wrapper {
    padding: 0;
    background: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.shop-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.card-info {
    margin-top: -20px;
    /* Pull button up slightly closer to image */
    padding: 10px;
    text-align: center;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

/* Hiding the text below the image as requested */
.card-info h3 {
    display: none;
}

.card-info .btn {
    width: 100%;
    border-radius: 12px;
    padding: 15px;
    font-size: 1.5rem;
    box-shadow: 0 6px 0 #bbb000, 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Hover Effects */

/* Header Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

/* Timer Styles */
.timer-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFEA00;
    /* Yellow Background */
    border: 3px solid #000;
    padding: 10px 30px;
    border-radius: 10px;
    /* Small radius for blocky Fortnite look */
    margin: 0 auto 40px;
    /* Center it */
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    /* Slight tilt for fun */
}

.timer-label {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-family: 'Luckiest Guy', cursive;
}

.timer-digits {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    /* Black text */
    text-shadow: none;
}

/* Info Section (Why Cheap) */
.info-section {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 234, 0, 0.05);
    /* Slight yellow tint */
    border-top: 1px solid rgba(255, 234, 0, 0.1);
}

.info-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-section strong {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
}

.section-title {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* Allow modal container to scroll if needed on small screens */
}

.modal-content {
    background-color: #1a1a24;
    margin: 5% auto;
    /* Less top margin */
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    /* Slightly wider */
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.3s ease;
    max-height: 90vh;
    /* Don't exceed screen height */
    overflow-y: auto;
    /* Scroll internally if text is long */
}

/* TOS Text Formatting */
.tos-text {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
}

.tos-text strong {
    color: #fff;
    font-size: 1.05rem;
}

@keyframes modalIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: white;
}

/* Support Form */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.support-form input,
.support-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.support-form input:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 250px;
    padding: 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Hover Effects - REFINED for tight contour */
.shop-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Specific Glow Colors - Using drop-shadow on IMAGES so it sticks to content */


/* 2800 V-Bucks - Blue Image */
.card-2800:hover .card-image-wrapper {
    box-shadow: none;
    border: none;
}

.card-2800:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.8)) drop-shadow(0 0 5px #00A3FF);
}

/* 5000 V-Bucks - Purple Image */
.card-5000:hover .card-image-wrapper {
    box-shadow: none;
    border: none;
}

.card-5000:hover img {
    filter: drop-shadow(0 0 15px rgba(189, 0, 255, 0.8)) drop-shadow(0 0 5px #BD00FF);
}

/* 13500 V-Bucks - Orange Image */
.card-13500:hover .card-image-wrapper {
    box-shadow: none;
    border: none;
}

.card-13500:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 5px #FFA500);
}

/* Responsive tweaks */
@media(max-width: 768px) {
    .step-arrow {
        display: none;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }
}


/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-vbuck {
    position: absolute;
    bottom: -50px;
    opacity: 0.6;
    animation: floatUp linear forwards;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Trust & Security Section --- */
.trust-section {
    padding: 80px 20px;
    background: rgba(15, 15, 19, 0.6);
    /* Transparent for particles */
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Security Block */
.trust-security-block {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.trust-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.trust-img-left {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.2));
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.trust-img-left:hover {
    transform: scale(1.02);
}

.trust-text-content {
    flex: 1;
}

.trust-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-text-content p {
    font-size: 1.1rem;
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Final Block */
.trust-final-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.final-image-wrapper {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.trust-img-final {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 166, 0, 0.2));
    border-radius: 10px;
}

/* --- Final Call Section (Stand-alone version at the end) --- */
.final-call-section {
    padding: 80px 20px;
    background: rgba(15, 15, 19, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 166, 0, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(255, 166, 0, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(255, 166, 0, 0.2));
    }
}

.pulse-animation img {
    animation: pulse-glow 3s infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .trust-security-block {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .trust-text-content h2 {
        font-size: 2rem;
    }
}

/* --- Mobile Optimization --- */

/* Tablet & Mobile (Under 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Shop Grid */
    .shop-section {
        padding: 20px 0;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on mobile */
        gap: 15px;
    }

    .card-info h3 {
        font-size: 1rem;
    }

    /* Trust Section */
    .trust-section {
        padding: 40px 15px;
        margin-top: 20px;
    }

    .trust-container {
        gap: 40px;
    }

    .trust-security-block {
        padding: 20px;
        gap: 20px;
    }

    .trust-text-content h2 {
        font-size: 1.8rem;
    }

    .trust-img-left {
        max-height: 250px;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* Small Mobile (Under 480px) */
@media (max-width: 480px) {

    /* Header - Stack if too crowded */
    header {
        height: auto;
        padding: 10px 0;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    /* Shop Grid */
    .shop-grid {
        grid-template-columns: 1fr;
        /* 1 Column for very small screens */
        gap: 20px;
    }

    /* Trust Section */
    .trust-text-content h2 {
        font-size: 1.5rem;
    }

    .trust-badges .badge {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 1.25rem;
    }
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 60px 0;
    background: transparent;
    /* Assuming main background covers it */
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 36, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 234, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Active State for FAQ */
.faq-item.active {
    border-color: var(--accent-yellow);
    background: rgba(26, 26, 36, 0.95);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height for text */
    transition: max-height 0.3s ease-in-out;
}

/* =========================================
   ADVANCED AI CHAT WIDGET (Bottom-Right)
   ========================================= */

/* Chat Button (Circular Pop-Up) */
.chat-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* USER REQUEST: Bottom Right */
    left: auto;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFEA00, #FFD700);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #000;
}

.chat-widget-btn:hover {
    transform: scale(1.1) rotate(-5deg);
}

.chat-btn-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
}

.chat-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
}

/* Notification Dot */
.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background-color: #FF0000;
    border: 2px solid #fff;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Notification Bubble ("¿Tienes alguna duda?") */
.chat-notification {
    position: fixed;
    bottom: 100px;
    right: 25px;
    /* Align with button */
    left: auto;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 12px;
    border-bottom-right-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 999;
    animation: floatIn 0.4s ease-out;
}

.chat-notification::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.chat-notification .notification-close {
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    line-height: 1;
}

.chat-notification .notification-close:hover {
    color: #000;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Window */
.chat-widget-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    /* Align with button */
    left: auto;
    width: 350px;
    height: 450px;
    background: #1a1a24;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #1e1e2d, #252535);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFEA00;
    object-fit: cover;
}

.header-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 0.5px;
}

.agent-status {
    font-size: 0.75rem;
    color: #00ff88;
}

.chat-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.chat-close:hover {
    color: #fff;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #121218;
}

/* Message Bubbles */
.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user {
    background: #3a3a50;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.message.bot {
    background: var(--accent-yellow);
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    font-weight: 500;
}

.message.bot strong {
    font-weight: 800;
    color: #d10000;
}

/* Input Area */
.chat-input-area {
    padding: 15px;
    background: #1e1e2d;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--accent-yellow);
}

.chat-input-area button {
    background: var(--accent-yellow);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s;
    /* Center Arrow */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness for Chat */
@media (max-width: 480px) {
    .chat-widget-window {
        width: calc(100% - 40px);
        bottom: 100px;
        right: 20px;
        left: auto;
        height: 400px;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 80px 20px;
    background: rgba(15, 15, 19, 0.4);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(255, 234, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Luckiest Guy', cursive;
}

.username {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #00ff88;
    font-size: 0.75rem;
    font-weight: 600;
}

.stars {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.95rem;
    color: #a0a0b0;
    line-height: 1.6;
    font-style: italic;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
    margin-top: auto;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Reviews Additions --- */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-view-more {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-more:hover {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
    transform: scale(1.05);
}

.review-proof {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-proof img {
    width: 100%;
    height: auto;
    display: block;
}

.proof-caption {
    background: rgba(0, 0, 0, 0.4);
    color: #00ff88;
    font-size: 0.75rem;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stars.four-stars {
    opacity: 0.9;
}

/* --- 3D Carousel Section --- */
.carousel-section {
    padding: 60px 0;
    overflow: visible;
    background: radial-gradient(circle at 50% 50%, rgba(255, 234, 0, 0.05) 0%, transparent 70%);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: grab;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-stage:active {
    cursor: grabbing;
}

.shop-section .carousel-item {
    position: absolute;
    width: 400px;
    height: 550px;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -275px;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.shop-section .carousel-item .shop-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    text-decoration: none;
}

.shop-section .carousel-item .card-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
}

.shop-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.shop-section .carousel-item .card-info {
    margin-top: 10px;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* 3D States */
.shop-section .carousel-item.active {
    transform: translate3d(0, 0, 100px) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;
    filter: none;
}

.shop-section .carousel-item.prev {
    transform: translate3d(-350px, 0, -100px) rotateY(20deg) scale(0.75);
    z-index: 5;
    opacity: 0.5;
    filter: blur(2px) brightness(0.6);
}

.shop-section .carousel-item.next {
    transform: translate3d(350px, 0, -100px) rotateY(-20deg) scale(0.75);
    z-index: 5;
    opacity: 0.5;
    filter: blur(2px) brightness(0.6);
}

.shop-section .carousel-item.hidden {
    transform: translate3d(0, 0, -500px) scale(0.3);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .carousel-container {
        height: 500px;
    }

    .shop-section .carousel-item {
        width: 280px;
        height: 420px;
        margin-left: -140px;
        margin-top: -210px;
    }

    .shop-section .carousel-item.prev {
        transform: translate3d(-200px, 0, -100px) rotateY(15deg) scale(0.7);
    }

    .shop-section .carousel-item.next {
        transform: translate3d(200px, 0, -100px) rotateY(-15deg) scale(0.7);
    }
}