/* -------------------------------------------------------------
   DESING SYSTEM & VARIABLES
   ------------------------------------------------------------- */
:root {
    --bg-dark: #07080d;
    --bg-card: rgba(17, 19, 31, 0.7);
    --bg-card-hover: rgba(25, 28, 44, 0.85);
    
    --accent-gold: #f5c242;
    --accent-gold-hover: #e0ac2b;
    --accent-gold-rgb: 245, 194, 66;
    
    --accent-green: #00ff87;
    --accent-green-rgb: 0, 255, 135;
    
    --text-white: #ffffff;
    --text-muted: #9fa4bc;
    --text-dark: #121420;
    
    --border-color: rgba(245, 194, 66, 0.15);
    --border-focus: rgba(245, 194, 66, 0.5);
    
    --shadow-gold: 0 0 25px rgba(245, 194, 66, 0.25);
    --shadow-green: 0 0 25px rgba(0, 255, 135, 0.2);
    --shadow-inset: inset 0 0 12px rgba(255, 255, 255, 0.05);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   RESET & BASE STYLES
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------------------------------
   COMMON COMPONENTS
   ------------------------------------------------------------- */
.badge {
    background: linear-gradient(135deg, rgba(245, 194, 66, 0.1), rgba(245, 194, 66, 0.2));
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(245, 194, 66, 0.1);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #fff7d6 0%, var(--accent-gold) 50%, #b88500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gold-glow {
    filter: drop-shadow(0 0 8px rgba(245, 194, 66, 0.6));
}

/* -------------------------------------------------------------
   TOP ALERT BAR
   ------------------------------------------------------------- */
.top-bar {
    background: linear-gradient(90deg, #997300, #4d3a00, #997300);
    background-size: 200% auto;
    animation: gradientMove 4s linear infinite;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    position: relative;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-green);
    animation: dotPulse 1.5s infinite;
}

/* -------------------------------------------------------------
   HEADER
   ------------------------------------------------------------- */
.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 8, 13, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.logo-text {
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(245, 194, 66, 0.3);
}

.stock-badge {
    background: rgba(255, 75, 75, 0.1);
    border: 1px solid rgba(255, 75, 75, 0.3);
    color: #ff4b4b;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 12px rgba(255, 75, 75, 0.1);
}

/* -------------------------------------------------------------
   HERO & VSL SECTION
   ------------------------------------------------------------- */
.hero-section {
    padding: 60px 0;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(245, 194, 66, 0.08) 0%, transparent 60%);
}

.pre-headline {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-headline {
    font-size: 3rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 20px auto;
    line-height: 1.15;
}

.sub-headline {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* VSL Player Style */
.vsl-wrapper {
    max-width: 850px;
    margin: 0 auto 40px auto;
    position: relative;
}

.vsl-player-container {
    width: 100%;
    max-width: 340px; /* Centered portrait format for 9:16 vertical VSL */
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    background-color: #000;
    border-radius: 12px;
    border: 2px solid rgba(245, 194, 66, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
}

.vsl-player-container:hover {
    border-color: rgba(245, 194, 66, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 194, 66, 0.35);
}

.vsl-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom Overlay (Click to Play) */
.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.vsl-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 12, 22, 0.65) 0%, rgba(5, 5, 8, 0.95) 100%);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.play-btn-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold), #b88500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    box-shadow: 0 0 35px rgba(245, 194, 66, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    animation: playPulse 2s infinite;
}

.vsl-overlay:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(245, 194, 66, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.overlay-text {
    margin-top: 25px;
    text-align: center;
    z-index: 2;
}

.overlay-text h3 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.overlay-text p {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: textFlash 1.5s infinite;
}

/* Hero CTA Area */
.hero-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00b35c 100%);
    color: var(--text-dark);
    padding: 20px 45px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.3), var(--shadow-green);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 255, 135, 0.5), 0 0 35px rgba(0, 255, 135, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

.payment-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-badges i {
    color: var(--accent-gold);
}

/* -------------------------------------------------------------
   STICKER PACK OPENER SECTION
   ------------------------------------------------------------- */
.pack-opener-section {
    padding: 80px 0;
    background: radial-gradient(circle at 10% 50%, rgba(245, 194, 66, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 135, 0.03) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pack-simulator-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-inset), 0 10px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pack-simulator-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pack-stage {
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Foil Pack Wrapper */
.foil-pack {
    width: 240px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-slow);
    z-index: 10;
}

.pack-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(245, 194, 66, 0.3));
    transition: var(--transition-normal);
}

.foil-pack:hover .pack-image {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(245, 194, 66, 0.4));
}

.pack-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.click-pulse-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    animation: clickPulse 1.8s infinite;
}

.pack-btn-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    background: rgba(0,0,0,0.85);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
}

/* Pack Opening Animations */
.foil-pack.ripping {
    animation: ripShake 0.6s ease-in-out;
}

.foil-pack.opened {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.6) translateY(100px);
}

/* Opened Cards Layout */
.opened-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.opened-cards.active {
    pointer-events: all;
}

/* Sticker/Card Frame */
.sticker-card-wrapper {
    width: 160px;
    perspective: 1000px;
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticker-card-wrapper.show {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

/* Individual card placement rotations */
.sticker-card-wrapper:nth-child(1).show {
    transform: rotate(-8deg) translateX(-15px) translateY(10px);
    z-index: 1;
}

.sticker-card-wrapper:nth-child(2).show {
    transform: scale(1.1) translateY(-10px);
    z-index: 3;
}

.sticker-card-wrapper:nth-child(3).show {
    transform: rotate(8deg) translateX(15px) translateY(10px);
    z-index: 2;
}

/* Tilt effect box */
.sticker-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2.5 / 3.5;
    background: transparent;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 194, 66, 0.15);
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.sticker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Holographic shine overlay */
.shiny-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 200%;
    background-position: 0% 0%;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 5;
    transition: background-position 0.15s ease;
}

/* Hover shine shifts */
.sticker-card-wrapper:hover .sticker-card {
    transform: scale(1.05) translateZ(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 194, 66, 0.4);
}

.pack-info-area {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.simulator-instruction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-gold);
    animation: textFlash 1.5s infinite;
}

.congrats-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 10px;
    animation: fadeInUp 0.4s ease forwards;
}

.reset-pack-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 15px;
}

.reset-pack-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* -------------------------------------------------------------
   SHOWCASE SECTION (STILL STICKERS)
   ------------------------------------------------------------- */
.showcase-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(18, 20, 30, 0.4) 0%, transparent 80%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
}

.showcase-card-container .sticker-card {
    width: 220px;
    cursor: pointer;
    margin-bottom: 20px;
}

.showcase-card-container h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.card-rarity {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* -------------------------------------------------------------
   BENEFITS SECTION
   ------------------------------------------------------------- */
.benefits-section {
    padding: 80px 0;
    background-color: rgba(18, 20, 30, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-inset);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 194, 66, 0.35);
    box-shadow: var(--shadow-inset), 0 10px 25px rgba(245,194,66,0.06);
    background-color: var(--bg-card-hover);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 194, 66, 0.1), rgba(245, 194, 66, 0.2));
    border: 1px solid rgba(245, 194, 66, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 0 auto 20px auto;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--accent-gold), #b88500);
    color: var(--text-dark);
    box-shadow: 0 0 15px rgba(245, 194, 66, 0.4);
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* -------------------------------------------------------------
   PRICING SECTION & TIMER
   ------------------------------------------------------------- */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

/* Single CTA Block */
.single-cta-block {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 50px 50px;
    text-align: center;
    box-shadow: var(--shadow-gold), var(--shadow-inset), 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.single-cta-block::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 194, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-benefits-list li {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.cta-benefits-list li i {
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cta-button-large {
    font-size: 1.5rem !important;
    padding: 22px 50px !important;
    width: 100%;
    border-radius: 14px !important;
    letter-spacing: 0.03em;
    margin-bottom: 25px;
}

.cta-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust-row i {
    color: var(--accent-gold);
}

/* Timer */
.countdown-container {
    margin-top: 30px;
    background: rgba(255, 75, 75, 0.05);
    border: 1px solid rgba(255, 75, 75, 0.2);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 75, 75, 0.05);
}

.countdown-container p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff4b4b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-segment span {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.timer-segment label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 3px;
}

.timer-separator {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-muted);
    padding-bottom: 12px;
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-inset);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 194, 66, 0.3);
    box-shadow: var(--shadow-inset), 0 15px 35px rgba(0,0,0,0.4);
}

/* Highlighted Plan */
.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(22, 25, 43, 0.85) 0%, rgba(13, 15, 26, 0.95) 100%);
    box-shadow: var(--shadow-inset), var(--shadow-gold), 0 15px 40px rgba(0,0,0,0.5);
    padding: 50px 30px;
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-inset), 0 0 35px rgba(245, 194, 66, 0.35), 0 20px 50px rgba(0,0,0,0.6);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), #b88500);
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(245, 194, 66, 0.4);
}

.card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1.1;
    margin: 2px 0;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 15px rgba(245, 194, 66, 0.2);
}

.price-installments {
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 600;
}

.features-list {
    margin-bottom: 35px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 25px;
}

.features-list li {
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-green);
    font-size: 1.05rem;
}

.features-list li.disabled {
    color: var(--text-muted);
    opacity: 0.55;
}

.features-list li.disabled i {
    color: #ff4b4b;
}

.pricing-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.pricing-button:hover {
    background: var(--text-white);
    color: var(--text-dark);
    border-color: var(--text-white);
    box-shadow: 0 5px 20px rgba(255,255,255,0.15);
}

.featured .pricing-button {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00b35c 100%);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 255, 135, 0.3);
}

.featured .pricing-button:hover {
    background: linear-gradient(135deg, #2bff9e 0%, #00d46d 100%);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.5), 0 0 20px rgba(0, 255, 135, 0.25);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

/* -------------------------------------------------------------
   COMMENTS SECTION (FACEBOOK VIBE)
   ------------------------------------------------------------- */
.comments-section {
    padding: 80px 0;
    background-color: rgba(18, 20, 30, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comments-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-inset);
}

.comments-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.comments-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.comments-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Write comment box */
.add-comment-box {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.user-avatar-placeholder {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.comment-input-wrapper {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition-fast);
}

.comment-input-wrapper:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 0 10px rgba(245, 194, 66, 0.1);
}

.comment-input-wrapper textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    resize: none;
    height: 60px;
    font-family: inherit;
    font-size: 0.95rem;
}

.comment-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 10px;
}

.comment-rules {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-submit-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.comment-submit-btn:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
}

/* Comments Feed */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.4s ease forwards;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 15px 20px;
}

.comment-author {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.comment-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.like-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.like-btn:hover {
    color: var(--accent-gold);
}

.like-btn.liked {
    color: var(--accent-gold);
}

.like-btn.liked i {
    font-weight: 900;
}

.dot-separator {
    opacity: 0.4;
}

.reply-action {
    cursor: pointer;
    font-weight: 600;
}

.reply-action:hover {
    text-decoration: underline;
}

/* -------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(245, 194, 66, 0.35);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--accent-gold);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   LIVE SALES TOAST (NOTIFICATION POP-UP)
   ------------------------------------------------------------- */
.sales-toast {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(12, 14, 25, 0.9);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 194, 66, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    z-index: 10000;
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.sales-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), #b88500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: 0 0 10px rgba(245, 194, 66, 0.3);
    flex-shrink: 0;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-white);
}

.toast-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin: 1px 0;
}

.toast-time {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.footer {
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #040508;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(245, 194, 66, 0.4));
}

.footer-disclaimer {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    color: rgba(255,255,255,0.25);
    font-size: 0.75rem;
}

/* -------------------------------------------------------------
   ANIMATION KEYFRAMES
   ------------------------------------------------------------- */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.7); }
    70% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 255, 135, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 194, 66, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 194, 66, 0), inset 0 2px 4px rgba(255, 255, 255, 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(245, 194, 66, 0), inset 0 2px 4px rgba(255, 255, 255, 0.4); }
}

@keyframes textFlash {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; filter: drop-shadow(0 0 4px rgba(245, 194, 66, 0.2)); }
}

@keyframes clickPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes ripShake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-3deg) scale(1.05); }
    30% { transform: rotate(3deg) scale(1.05); }
    45% { transform: rotate(-3deg) scale(1.05); }
    60% { transform: rotate(3deg) scale(1.05); }
    75% { transform: rotate(-2deg) scale(1.05); }
    90% { transform: rotate(2deg) scale(1.05); }
}

@keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); box-shadow: 0 6px 30px rgba(0, 255, 135, 0.6), 0 0 25px rgba(0, 255, 135, 0.3); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------------------------------------
   RESPONSIVENESS (MOBILE AND TABLETS)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .main-headline {
        font-size: 2.4rem;
        padding: 0 10px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0 auto;
        gap: 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .showcase-card-container .sticker-card {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 12px;
    }

    .main-headline {
        font-size: 1.8rem;
    }

    .sub-headline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .header .stock-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .single-cta-block {
        padding: 30px 20px;
    }

    .pack-simulator-container {
        padding: 25px 15px;
    }

    .pack-stage {
        min-height: 280px; /* Reduced vertical space for horizontal layout */
    }

    .opened-cards {
        flex-direction: row; /* Horizontal side-by-side layout on mobile */
        gap: 8px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .sticker-card-wrapper {
        width: 90px; /* Smaller width to fit all 3 cards on screen */
    }

    .sticker-card-wrapper:nth-child(1).show {
        transform: rotate(-6deg) translateX(-8px) translateY(5px);
    }

    .sticker-card-wrapper:nth-child(2).show {
        transform: scale(1.1) translateY(-5px);
        z-index: 5;
    }

    .sticker-card-wrapper:nth-child(3).show {
        transform: rotate(6deg) translateX(8px) translateY(5px);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-card-container .sticker-card {
        width: 200px;
    }

    .comments-container {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .cta-button, .cta-button-large {
        font-size: 1.1rem !important;
        padding: 16px 20px !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 10px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .main-headline {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .sticker-card-wrapper {
        width: 80px;
    }
}
