/* Design System & CSS Variables */
:root[data-theme="dark"] {
    --bg-primary: #0a0e1a;
    --bg-secondary: #121829;
    --bg-tertiary: #1b233d;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(168, 85, 247, 0.3);
    
    --accent-purple: #a855f7;
    --accent-indigo: #6366f1;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    
    --grad-primary: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    --grad-hover: linear-gradient(135deg, #b56df8 0%, #7679f2 100%);
    --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    --grad-banner: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.25);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.25);
    
    --glass-bg: rgba(18, 24, 41, 0.7);
    --glass-blur: 16px;
}

:root[data-theme="light"] {
    --bg-primary: #f9fafb;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(139, 92, 246, 0.3);
    
    --accent-purple: #8b5cf6;
    --accent-indigo: #4f46e5;
    --accent-pink: #db2777;
    --accent-green: #10b981;
    
    --grad-primary: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 100%);
    --grad-hover: linear-gradient(135deg, #9d73f8 0%, #6057e7 100%);
    --grad-card: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0) 100%);
    --grad-banner: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.15);
    --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-blur: 16px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background Glow Effects */
.glow-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% -20%, rgba(168, 85, 247, 0.18) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Typography & Layout elements */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

/* Header Styling */
.header {
    position: sticky;
    top: 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent-purple);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

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

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.theme-toggle:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Theme Icon Visibility */
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

/* Main Content Layout */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    background: var(--grad-hover);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 12px;
}

.w-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.hero-card {
    background-color: var(--bg-secondary);
    background-image: var(--grad-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-banner);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pulse-sparkle {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(to right, var(--text-primary), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 35px;
}

/* Roulette Styling */
.roulette-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.roulette-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
}

.roulette-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

#wheel-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 8px solid var(--bg-tertiary);
    transition: transform 6s cubic-bezier(0.15, 0.85, 0.2, 1);
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid var(--bg-secondary);
    background: var(--grad-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    z-index: 10;
    transition: transform 0.2s, box-shadow 0.2s;
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.spin-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Claim Panel */
.claim-card {
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    padding-top: 30px;
    text-align: left;
    animation: fadeIn 0.5s ease-out;
}

.reward-banner {
    background: var(--grad-banner);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.reward-title {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

.reward-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.reward-text span {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 16px;
    font-weight: 700;
    color: var(--accent-purple);
    font-size: 16px;
}

.input-wrapper input {
    width: 100%;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrapper .input-prefix + input {
    padding-left: 36px;
}

.input-wrapper input:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.input-hint strong {
    color: var(--text-secondary);
}

/* Platform Selector in Claim Form */
.platform-selector {
    display: flex;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 16px;
    gap: 4px;
    margin-top: 5px;
}

.platform-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.platform-option input {
    display: none;
}

.platform-option:hover {
    color: var(--text-primary);
}

.platform-option.active {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    border-color: var(--border-color);
}


/* Terminal Faux Loading */
.verifying-flow {
    animation: fadeIn 0.3s ease-out;
}

.flow-title {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    color: var(--text-primary);
}

.terminal-box {
    background-color: #05070c;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #f59e0b; }
.terminal-dot.green { background-color: #10b981; }

.terminal-title {
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 10px;
}

.terminal-body {
    padding: 16px;
    font-family: monospace;
    font-size: 13px;
    color: #4ade80;
    min-height: 140px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-line {
    white-space: pre-wrap;
    line-height: 1.4;
}

.log-line.error { color: #f87171; }
.log-line.info { color: #60a5fa; }
.log-line.success { color: #34d399; }

.progress-bar-wrapper {
    width: 100%;
    height: 6px;
    background-color: var(--bg-tertiary);
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    border-radius: 99px;
    transition: width 0.4s ease;
}

/* Success Flow */
.success-flow {
    text-align: center;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid var(--accent-green);
    box-shadow: var(--shadow-glow-green);
}

.success-title {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
}

.claim-limit-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--bg-tertiary);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.success-upsell {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.success-upsell p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* SMM Online Store Card Banner */
.loja-banner-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.loja-banner-card {
    display: block;
    background-color: var(--bg-secondary);
    background-image: var(--grad-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.loja-banner-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.loja-banner-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.loja-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 6px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.badge-green {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.loja-banner-title {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.loja-banner-desc {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.loja-banner-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-purple);
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: transform 0.2s;
}

.loja-banner-card:hover .loja-banner-icon {
    transform: scale(1.08);
}

/* SMM Packages Grid */
.packages-section {
    margin-bottom: 80px;
}

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

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 18px;
    max-width: 480px;
    margin: 0 auto 40px auto;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* Tab content visibility toggle */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

/* Pricing Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--bg-secondary);
    background-image: var(--grad-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

/* Popular Card Extra style */
.package-card.popular {
    border: 2px solid var(--accent-purple);
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #ffffff;
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 99px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3);
}

.package-header {
    margin-bottom: 25px;
    text-align: center;
}

.package-tier {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.package-card.popular .package-tier {
    color: var(--accent-purple);
}

.package-name {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.package-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.package-features li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Customer Support online box */
.support-section {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.support-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.support-header {
    margin-bottom: 25px;
}

.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
}

.support-avatars {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.avatar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.avatar-img-wrapper {
    width: 46px;
    height: 46px;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.avatar-svg {
    width: 32px;
    height: 32px;
}

.avatar-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.avatar-role {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials Carousel placeholder */
.testimonials-section {
    margin-bottom: 80px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 11px;
    color: var(--text-muted);
}

/* FAQ Accordion layout */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.faq-arrow {
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    padding-bottom: 20px;
}

/* Active accordion open state */
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to slide open */
}

/* Footer Section */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cnpj-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    max-width: 480px;
    margin: 0 auto 35px auto;
    box-shadow: var(--shadow-sm);
}

.cnpj-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cnpj-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.btn-copy-cnpj {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.btn-copy-cnpj:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.05);
}

.cnpj-company {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 12px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge-trust {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    width: 90%;
    max-width: 440px;
    padding: 35px 25px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-title {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.text-purple {
    color: var(--accent-purple);
}

.checkout-summary-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-secondary);
}

.summary-line.font-bold {
    font-weight: 800;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 4px;
}

/* Modal step 2: PIX QR code displaying */
.pix-instructions {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.qr-code-wrapper {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 20px;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.qr-code-svg {
    width: 100%;
    height: 100%;
}

.pix-copy-paste-container {
    margin-bottom: 25px;
}

.pix-copy-paste-container label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.pix-copy-row {
    display: flex;
    gap: 8px;
}

.pix-key-input {
    flex: 1;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 12px;
    outline: none;
    font-family: monospace;
}

.payment-status-checker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 25px;
}

.spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-top-color: var(--accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.modal-footer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.modal-footer-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* CSS Helpers */
.hidden {
    display: none !important;
}

/* Animations Keyframes */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    .logo {
        font-size: 18px;
    }
    .main-content {
        padding: 20px 15px;
    }
    .hero-card {
        padding: 30px 15px;
    }
    .hero-title {
        font-size: 26px;
    }
    .roulette-wrapper {
        width: 300px;
        height: 300px;
    }
    #wheel-canvas {
        width: 300px;
        height: 300px;
        border-width: 6px;
    }
    .spin-btn {
        width: 70px;
        height: 70px;
        font-size: 13px;
    }
    .loja-banner-card {
        padding: 16px 20px;
    }
    .loja-banner-title {
        font-size: 20px;
    }
    .loja-banner-desc {
        font-size: 12px;
    }
    .loja-banner-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .section-title {
        font-size: 26px;
    }
    .packages-grid {
        gap: 20px;
    }
}

/* ------------------------------------------
 * AFFILIATE REFERRAL SYSTEM
 * ------------------------------------------ */
.viral-share-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ref-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    text-align: left;
    gap: 15px;
}

.ref-card-header-left {
    flex: 1;
}

.ref-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.ref-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ref-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.btn-copy-ref {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-copy-ref:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px);
}

.ref-link-input-wrapper {
    width: 100%;
    margin-bottom: 12px;
}

.ref-link-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 12px;
    outline: none;
    text-align: left;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ref-status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-purple);
    border-radius: 50%;
}

.status-dot.pulse {
    animation: statusPulse 1.5s infinite ease-in-out;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 8px var(--accent-purple); }
    100% { transform: scale(0.95); opacity: 0.5; }
}
