/* Global Variables & Theme */
:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    /* Durer Gold/Metallic */
    --primary: #D4AF37;
    --primary-dark: #aa8c2c;
    /* Very subtle glow or none */
    --primary-glow: rgba(212, 175, 55, 0.1);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    /* White subtle border */
    --glass-bg: #111;
    /* Solid dark for premium feel, less glass */
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    /* Clean dark gradient */
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

/* Background Effects - Simplified */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.03), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 900px;
    /* Narrower for focus */
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.section {
    padding: 80px 0;
}

/* Images & Assets */
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    /* Clean, no shadow */
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        height: 80px;
    }
}

.logo-img:hover {
    transform: scale(1.05);
}

.games-showcase {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0;
    width: 100%;
    flex-direction: column;
    /* Stack images if multiple */
    align-items: center;
    gap: 40px;
}

.games-img {
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    /* Subtle shadow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
    transition: transform 0.5s ease;
}

/* Glow removed */
.glow-effect {
    box-shadow: none;
}

.games-img:hover {
    transform: translateY(-10px);
}

/* VSL Section */
.vsl-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Adjusted for horizontal video */
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    background: #000;
}

.vsl-video {
    width: 100%;
    height: 100%;
}

/* Buttons - Flat Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 100px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-lg,
.btn-block {
    padding: 20px 40px;
    font-size: 1.1rem;
    width: 100%;
    /* Mobile First */
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {

    .btn-lg,
    .btn-block {
        width: auto;
    }
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #e5c14d;
    transform: translateY(-2px);
}

/* Benefits Carousel (Horizontal Scroll) */
.benefits-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 4px;
    margin: 40px -24px;
    /* Full width on mobile */
    padding-left: 24px;
    padding-right: 24px;
}

/* Hide scrollbar */
.benefits-carousel::-webkit-scrollbar {
    display: none;
}

.benefits-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.benefit-card {
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.benefit-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

/* Header */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    /* Always transparent for cleaner look */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        /* Text larger */
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-top: -10px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 50px;
    align-items: center;
    width: 100%;
}

.guarantee-badge-img {
    width: 130px;
    height: auto;
    margin: 20px auto 0;
    display: block;
    transition: transform 0.3s ease;
}

.guarantee-badge-img:hover {
    transform: scale(1.05);
}

/* Hero Video Wrapper */
.hero-video-wrapper {
    width: 100%;
    max-width: 500px;
    /* Slightly wider for square format */
    aspect-ratio: 1 / 1;
    /* Square ratio */
    height: auto;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 20px;
    border: 4px solid #333;
    position: relative;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    z-index: 1;
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    /* Slight scale to hide thin black borders */
}

/* Phone Mockup (Legacy support if needed or redundant) */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 45px;
    border: 6px solid #222;
    /* Thinner border for modern look */
    position: relative;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    z-index: 1;
}

.phone-mockup .screen {
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-ui {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 16px;
    border: var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 1rem;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    min-width: 180px;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2.5s;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(160deg, #111, #0a0a0a);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 215, 0, 0.15);
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-white);
}

/* CTA Section (Plan Optimized) */
.cta-section {
    padding: 100px 0 40px 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, rgba(5, 5, 5, 1) 70%);
}

.plan-card {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 0;
    /* Reset padding for header/body split */
    border-radius: 30px;
    border: 1px solid var(--primary);
    max-width: 500px;
    /* Narrower for Mobile Card feel */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.1);
    overflow: visible;
    /* Changed from hidden to show badge overflow if needed */
    text-align: center;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 1px;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.plan-card .discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: none;
    background: #ff4757;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 15px;
}

.card-header {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0));
    padding: 60px 30px 20px;
}

.card-header h3 {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.plan-name {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.price-display {
    padding: 20px;
}

.old-price {
    font-size: 1.1rem;
    color: #666;
    text-decoration: line-through;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    margin: 10px 0;
}

.current-price .currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.current-price .amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.payment-method {
    font-size: 0.9rem;
    color: #888;
}

.benefits-list {
    padding: 20px 40px;
    text-align: left;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ddd;
}

.benefit-row i {
    color: var(--primary);
}

.plan-card .btn {
    width: 90%;
    margin: 20px auto;
    font-size: 1.2rem;
}

.guarantee-badge {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
footer {
    background: #020205;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    header {
        padding: 10px 0;
        /* Reduced header padding on mobile */
    }

    .hero {
        padding-top: 25px;
        /* Further reduced from 35px */
        padding-bottom: 0px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 5px;
        margin-bottom: 2px;
        /* Tightened further to pull VSL up */
    }

    .hero-subtitle {
        font-size: 0.78rem;
        margin-top: 5px;
        /* Added margin-top to lower it slightly from h1 */
        margin-bottom: 5px;
        /* Reduced margin-bottom to bring VSL up */
        padding: 0 20px;
        line-height: 1.4;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-mockup,
    .hero-video-wrapper {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: -75px auto 10px;
        /* Further increased negative margin to pull VSL even closer */
        /* Applied negative margin to pull VSL up even more */
    }

    .benefit-card h3 {
        font-size: 1.05rem;
        word-wrap: break-word;
        /* Prevents overflow */
    }
}



.floating-card {
    display: none;
    /* Hide floating cards on mobile to reduce clutter */
}

.cta-box {
    padding: 40px 20px;
}

.new-price {
    font-size: 3rem;
}

/* Make visual assets stack nicely */
.hero-content {
    gap: 40px;
}

/* Sticky CTA spacing */
body {
    padding-bottom: 80px;
}

/* Premium Gamer Card */
.premium-gamer-card {
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 35px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.premium-gamer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.premium-gamer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.premium-gamer-card .card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
    color: var(--primary);
}


.premium-benefits-list {
    display: grid;
    gap: 18px;
}

.premium-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

.premium-benefit-item i {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .premium-gamer-card {
        padding: 25px;
        margin-top: 30px;
        max-width: 100%;
    }

    .premium-gamer-card .card-title {
        font-size: 1.4rem;
    }

    .premium-benefit-item {
        font-size: 0.95rem;
    }
}

/* Gaming Carousel */
.gaming-carousel-container {
    width: 100%;
    margin-top: -15px;
    padding-bottom: 0px;
    overflow: hidden;
}

.gaming-carousel,
.gaming-carousel-2 {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 4px 10px 4px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hide scrollbar */
.gaming-carousel::-webkit-scrollbar,
.gaming-carousel-2::-webkit-scrollbar {
    display: none;
}

.gaming-carousel,
.gaming-carousel-2 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-item {
    flex: 0 0 calc(100% - 140px);
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: #0a0a0a;
    transition: transform 0.4s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.carousel-item-top img {
    object-position: top !important;
}

.carousel-img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: cover;
}

@media (min-width: 769px) {
    .carousel-item {
        flex: 0 0 380px;
        max-width: 380px;
    }

    .carousel-img {
        max-width: 420px;
        height: 420px;
    }

    .carousel-item-top img {
        object-position: center;
    }
}

/* Games Grid Section */
.games-grid-section {
    padding: 60px 0;
    text-align: center;
}

.games-grid-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.games-grid-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.game-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .games-grid-title {
        font-size: 3rem;
    }

    .game-card-label {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #080808;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 60px 0;
}

.testimonials-carousel-container {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 20px;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 4px 30px 4px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hide scrollbar */
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-card {
    flex: 0 0 calc(100% - 40px);
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #111;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -10%;
    /* Corta o topo da imagem ocultando a barra de status/horário */
}

.testimonials-title {
    font-size: 2.2rem;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 1.3rem;
    }

    .guarantee-title {
        font-size: 1.05rem;
        /* Reduces size to fit single line mobile */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .faq-title {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-cta-green {
        white-space: nowrap !important;
        font-size: 0.95rem !important;
        letter-spacing: -0.2px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 320px;
    }
}

/* Green CTA Button & Conversion Animation */
.btn-cta-green {
    background: #22c55e !important;
    color: #fff !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.btn-cta-green:hover {
    background: #16a34a !important;
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.6);
}

@keyframes cta-pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.cta-pulse-anim {
    animation: cta-pulse-glow 2s infinite ease-in-out;
}

/* Sales Notifications - Refined */
.sales-notification-container {
    position: fixed;
    bottom: 5px;
    left: 10px;
    z-index: 10000;
    pointer-events: none;
}

.sales-notification {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-width: 260px;
}

.sales-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.sales-icon {
    width: 34px;
    height: 34px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sales-content {
    display: flex;
    flex-direction: column;
}

.sales-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.1;
    margin-bottom: 1px;
}

.sales-message {
    font-size: 0.72rem;
    color: #ccc;
    font-weight: 400;
}

@media (max-width: 768px) {
    .sales-notification-container {
        bottom: 5px;
        left: 5px;
        right: 5px;
        display: flex;
        justify-content: flex-start;
    }

    .sales-notification {
        max-width: 250px;
        padding: 6px 10px;
    }

    .sales-message {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
}

/* Upgrade Popup Styles */
/* Upgrade Popup Styles - Refined Size & Green Button */
#upgrade-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

#upgrade-popup-content {
    background: #0a0a0a;
    border: 1px solid var(--primary);
    border-radius: 20px;
    max-width: 380px;
    /* Reduced from 440px */
    width: 85%;
    padding: 25px 15px;
    /* Reduced padding */
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    animation: popupFadeTranslate 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupFadeTranslate {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: Floating Gold Card with more space around */
@media (max-width: 768px) {
    #upgrade-popup-overlay {
        align-items: center;
        /* Center it more on mobile to show top background */
        padding: 30px 20px;
        /* Increased top/side visibility */
    }

    #upgrade-popup-content {
        width: 100%;
        max-width: none;
        border-radius: 20px;
        padding: 20px 15px;
        margin: 0;
        animation: popupSlideUpCompact 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    @keyframes popupSlideUpCompact {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }
}

.popup-header-emoji {
    font-size: 2.22rem;
    margin-bottom: 8px;
    display: block;
}

.popup-title {
    color: #fff;
    font-size: 1.2rem;
    /* Reduced font size */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.popup-description {
    color: #ccc;
    font-size: 0.9rem;
    /* Reduced font size */
    line-height: 1.4;
    margin-bottom: 15px;
}

.benefit-box-popup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px 10px;
    /* Reduced padding */
    margin-bottom: 15px;
    text-align: left;
}

.benefit-box-title {
    display: block;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-benefit-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.popup-benefit-row i {
    color: var(--primary);
    font-size: 0.85rem;
}

.popup-pricing-box {
    margin-bottom: 15px;
}

.popup-old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.popup-new-price {
    color: var(--primary);
    font-size: 2.2rem;
    /* Reduced font size */
    font-weight: 900;
    display: block;
    line-height: 1;
}

.popup-exclusive-tag {
    color: #ffcc00;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.btn-popup-main {
    background: #2ecc71;
    /* Changed to Green */
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 15px;
    /* Reduced size */
    width: 100%;
    font-weight: 900;
    font-size: 0.95rem;
    /* Reduced size */
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 12px;
}

.btn-popup-main:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-popup-secondary {
    display: block;
    color: #777;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    margin: 0 auto;
}

/* Increasing size of the Basic Plan Trigger Button */
.trigger-popup-basic {
    padding: 22px 35px !important;
    /* Increased padding */
    font-size: 1.15rem !important;
    /* Increased font size */
    transition: all 0.3s ease;
}

.trigger-popup-basic:hover {
    transform: scale(1.05);
    /* Slight pop on hover */
}