/* ==========================================================================
   LevelUP WCoin Landing Page Stylesheet
   Global Mu Online (Webzen) Theme
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-dark: #070709;
    --bg-card: #111217;
    --bg-card-hover: #181a22;
    --bg-tag-inner: #0d0d10;
    
    --color-gold: #ffc800;
    --color-gold-glow: #ffaa00;
    --color-orange: #ff7700;
    --color-green: #00e676;
    --color-green-bright: #00ff66;
    --color-pix: #32bcad;
    --color-yt: #ff0033;
    --color-blue-magic: #00bfff;
    
    --text-main: #f0f3f8;
    --text-muted: #9aa4b2;
    --text-dark: #0a0b0e;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --shadow-gold: 0 10px 30px rgba(255, 200, 0, 0.2);
    --shadow-green: 0 10px 30px rgba(0, 230, 118, 0.25);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* --- Reset & Global Defaults --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

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

/* Dynamic Particle Ambient Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 170, 0, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 10% 90%, rgba(0, 230, 118, 0.03) 0%, transparent 50%);
}

/* --- Color & Utility Classes --- */
.text-gold { color: var(--color-gold); }
.text-orange { color: var(--color-orange); }
.text-yellow { color: #ffe600; }
.text-green { color: var(--color-green); }
.text-green-bright { color: var(--color-green-bright); }
.text-pix { color: var(--color-pix); }
.text-red { color: var(--color-yt); }

.highlight-gold {
    background: linear-gradient(135deg, #ffe57f 0%, #ffc800 50%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 200, 0, 0.3);
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    padding: 14px 0;
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chip-logo {
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.5));
    transition: var(--transition);
}

.brand-logo:hover .chip-logo {
    transform: rotate(5deg) scale(1.08);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--color-gold);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-yt {
    background: rgba(255, 0, 51, 0.12);
    border: 1px solid rgba(255, 0, 51, 0.4);
    color: #ff4d6d;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-nav-yt:hover {
    background: var(--color-yt);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}

.btn-nav-wa {
    background: rgba(0, 25, 105, 0.25);
    border: 1px solid #001969;
    color: #fff;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-nav-wa:hover {
    background: #001969;
    border-color: #0033aa;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 25, 105, 0.6);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.15);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.6) 0%, rgba(7, 7, 9, 0.9) 80%, #070709 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: center;
}

/* Hero Left Character Box */
.hero-character-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glow-ring {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, rgba(255, 200, 0, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-char-img {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 35px rgba(0, 191, 255, 0.4));
    transition: var(--transition);
    animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.badge-streamer {
    margin-top: 16px;
    background: rgba(17, 18, 23, 0.9);
    border: 1px solid rgba(255, 200, 0, 0.4);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    text-align: center;
}

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

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Right Content Column */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-game, .badge-pix {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-game {
    background: rgba(0, 191, 255, 0.12);
    border: 1px solid rgba(0, 191, 255, 0.35);
    color: var(--color-blue-magic);
}

.badge-pix {
    background: rgba(50, 188, 173, 0.12);
    border: 1px solid rgba(50, 188, 173, 0.35);
    color: var(--color-pix);
}

.wcoin-brand-header {
    margin-top: 4px;
}

.wcoin-hero-badge {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 3px 8px rgba(255, 200, 0, 0.25));
}

/* Hero Pix Copy & Paste Box */
.hero-pix-box {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(17, 18, 23, 0.85);
    border: 1px solid rgba(50, 188, 173, 0.4);
    border-radius: 14px;
    padding: 12px 20px;
    max-width: 560px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.hero-pix-box .pix-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.hero-pix-box .pix-info i {
    font-size: 1.3rem;
}

.hero-pix-box .pix-info strong {
    color: var(--color-gold);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-copy-pix {
    background: rgba(50, 188, 173, 0.15);
    border: 1px solid rgba(50, 188, 173, 0.5);
    color: var(--color-pix);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-copy-pix:hover {
    background: var(--color-pix);
    color: #000;
    box-shadow: 0 0 15px rgba(50, 188, 173, 0.5);
}

/* Step 2 Pix Copy Button & Highlight */
.pix-highlight {
    color: var(--color-gold);
    font-weight: 900;
    font-size: 1.05rem;
}

.btn-step-copy-pix {
    margin-top: 10px;
    background: rgba(50, 188, 173, 0.12);
    border: 1px solid rgba(50, 188, 173, 0.4);
    color: var(--color-pix);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-step-copy-pix:hover {
    background: var(--color-pix);
    color: #000;
    box-shadow: 0 0 12px rgba(50, 188, 173, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 680px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 4px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Hero Action Buttons Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.btn-cta-primary {
    background: rgba(0, 25, 105, 0.25);
    border: 2px solid #001969;
    color: #fff;
    padding: 14px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 25px rgba(0, 25, 105, 0.4);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: #001969;
    border-color: #0033aa;
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 25, 105, 0.7);
}

.cta-icon-wa {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

.btn-cta-secondary {
    background: rgba(255, 0, 51, 0.12);
    border: 2px solid rgba(255, 0, 51, 0.5);
    color: #fff;
    padding: 14px 26px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--color-yt);
    border-color: var(--color-yt);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}

.yt-icon {
    font-size: 2.2rem;
    color: #ff3355;
}

.btn-cta-secondary:hover .yt-icon {
    color: #fff;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-top {
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

/* --- Section Common Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tag-event {
    background: rgba(255, 119, 0, 0.15);
    border-color: rgba(255, 119, 0, 0.5);
    color: var(--color-orange);
    animation: eventPulse 2s infinite alternate ease-in-out;
}

@keyframes eventPulse {
    0% { box-shadow: 0 0 10px rgba(255, 119, 0, 0.2); }
    100% { box-shadow: 0 0 22px rgba(255, 119, 0, 0.6); }
}

.event-notice-box {
    margin-top: 16px;
    background: rgba(255, 200, 0, 0.08);
    border: 1px solid rgba(255, 200, 0, 0.35);
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 0.92rem;
    color: #f0f3f8;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.event-notice-box i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.wc-bonus-tag {
    display: inline-block;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.4);
    color: var(--color-green-bright);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Packages & Pricing Section --- */
.packages-section {
    padding: 90px 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(17, 18, 23, 0.6) 0%, var(--bg-dark) 80%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.package-card {
    position: relative;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(255, 200, 0, 0.25);
}

/* Diagonal Corner Ribbon (Top Right) */
.corner-ribbon {
    position: absolute;
    top: 26px;
    right: -45px;
    transform: rotate(45deg);
    width: 175px;
    padding: 6px 0;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

.ribbon-popular {
    background: linear-gradient(135deg, #ff7700, #ffc800);
    color: #000;
}

.ribbon-recomendado {
    background: linear-gradient(135deg, #001969, #0038b8);
    color: #fff;
}

.ribbon-vip {
    background: linear-gradient(135deg, #ffd700, #ff0055);
    color: #fff;
}

/* Inner Tag Content Box */
.card-inner {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--bg-tag-inner);
    flex: 1;
    width: 100%;
}

.img-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
}

.package-img {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.package-card:hover .package-img {
    transform: scale(1.1);
}

.glow-gold {
    filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.6)) !important;
}

.glow-green {
    filter: drop-shadow(0 0 18px rgba(0, 255, 102, 0.6)) !important;
}

.package-info {
    text-align: center;
}

.wc-amount {
    font-size: 2.1rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.price-box {
    margin-top: 6px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
}

.currency {
    font-size: 1.4rem;
    margin-right: 4px;
    font-weight: 800;
    color: #e0e0e0;
}

/* Standardized Tag Buy Button across all cards */
.btn-buy-tag {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.btn-buy-tag:hover {
    background: #001969;
    border-color: #0033aa;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 25, 105, 0.6);
}

/* --- Steps Section --- */
.steps-section {
    padding: 90px 0;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 200, 0, 0.3);
    box-shadow: var(--shadow-card);
}

.step-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 200, 0, 0.1);
    color: var(--color-gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
}

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

/* --- YouTube Spotlight Section --- */
.youtube-section {
    padding: 70px 0;
}

.yt-card {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.08) 0%, rgba(17, 18, 23, 0.95) 100%);
    border: 2px solid rgba(255, 0, 51, 0.3);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 51, 0.15);
    color: #ff3355;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.yt-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
}

.yt-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
    max-width: 650px;
}

.yt-channel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 24px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #e0e0e0;
}

.btn-yt-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-yt);
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 14px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 0, 51, 0.4);
}

.btn-yt-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 51, 0.6);
    background: #ff1a40;
}

.yt-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yt-avatar-frame {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #ff0033, var(--color-gold));
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.4);
}

.yt-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
}

.yt-chip-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: left;
}

.faq-question i {
    color: var(--color-gold);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.faq-item.active {
    border-color: rgba(255, 200, 0, 0.3);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background: #040405;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 60px;
    font-size: 0.92rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.chip-mini {
    width: 32px;
    height: 32px;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-gold);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 380px;
}

.footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.footer-contact p {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.footer-disclaimer p {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 20px;
    color: #525866;
    font-size: 0.85rem;
}

/* --- Floating Sticky WhatsApp Bar (Desktop & Mobile) --- */
.floating-wa-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.floating-wa-btn {
    background: linear-gradient(135deg, #001969, #0033bb);
    border: 1px solid rgba(0, 100, 255, 0.5);
    color: #fff;
    padding: 10px 20px 10px 14px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 25, 105, 0.6);
    transition: var(--transition);
    animation: waPulse 3s infinite;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-wa-btn:hover {
    background: #001969;
    border-color: #0044ff;
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 25, 105, 0.8);
}

.floating-icon {
    width: 36px;
    height: 36px;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.fl-title {
    font-weight: 900;
    font-size: 0.88rem;
    line-height: 1.1;
}

.fl-num {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.9;
}

/* --- Back to Top Floating Button --- */
.btn-back-to-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 18, 23, 0.9);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6);
}

/* --- Toast Notification --- */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #111217;
    border: 2px solid var(--color-pix);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1), toastOut 0.3s 2.7s ease forwards;
}

.toast i {
    color: var(--color-pix);
    font-size: 1.2rem;
}

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

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

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 300px 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yt-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .yt-visual {
        margin-top: 20px;
    }

    .yt-channel-meta {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-character-box {
        order: -1;
    }

    .hero-char-img {
        width: 220px;
    }

    .hero-header-badges, .hero-features, .hero-cta-group {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .floating-wa-bar {
        bottom: 16px;
        right: 16px;
    }
    
    .fl-num {
        display: none;
    }
    
    .btn-nav-yt span {
        display: none;
    }
}
