/* ==========================================================================
   SMART ICON - FREE FIRE STORE (RED DARK THEME)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Red Dark Theme */
    --bg-main: #0a0506;
    --bg-card: #140a0c;
    --bg-card-hover: #1c0f12;
    --bg-subtle: #1a0c0e;
    --bg-glass: rgba(20, 8, 10, 0.88);
    --bg-glass-card: rgba(22, 10, 12, 0.94);

    /* Text Colors */
    --text-heading: #fff5f5;
    --text-primary: #e7d0d0;
    --text-muted: #a88787;
    --text-light: #7a5c5c;

    /* Accent & Brand Colors */
    --accent-cyan: #ef4444;
    --accent-cyan-glow: rgba(239, 68, 68, 0.4);
    --accent-violet: #b91c1c;
    --accent-violet-glow: rgba(185, 28, 28, 0.4);
    --accent-emerald: #f87171;
    --accent-emerald-glow: rgba(248, 113, 113, 0.3);
    --accent-orange: #fb923c;
    --accent-fire: #dc2626;

    /* Borders & Dividers */
    --border-color: rgba(239, 68, 68, 0.22);
    --border-hover: rgba(239, 68, 68, 0.45);
    --border-glow: rgba(239, 68, 68, 0.5);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.45), 0 8px 10px -6px rgba(80, 0, 0, 0.25);
    --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.55), 0 10px 15px -5px rgba(120, 0, 0, 0.2);
    --shadow-glow-cyan: 0 8px 25px rgba(239, 68, 68, 0.35);
    --shadow-glow-violet: 0 8px 25px rgba(185, 28, 28, 0.35);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Animated Particle Canvas */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

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

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

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

.section-header.center {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & UI CONTROLS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284c7 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.45);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: rotate(30deg);
    animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-discord {
    background: #5865f2;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-badge .pulse-dot {
    background-color: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.status-badge .pulse-dot::after {
    background-color: currentColor;
}

.pulse-dot.green {
    background-color: var(--accent-emerald);
    box-shadow: 0 0 10px var(--accent-emerald);
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 1.8s infinite ease-out;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   4. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
    background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    padding: 0.45rem 0;
    font-size: 0.85rem;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.announcement-badge {
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.announcement-link {
    color: var(--accent-cyan);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.announcement-link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 5, 6, 0.96);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: var(--shadow-glow-cyan);
    overflow: hidden;
    padding: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-heading);
    line-height: 1;
}

.logo-title .highlight {
    color: var(--accent-cyan);
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-tag {
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
    margin-left: 0.25rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-bgm-host {
    position: fixed;
    width: 1px;
    height: 1px;
    left: -9999px;
    top: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
}

.sound-control {
    position: relative;
    display: flex;
    align-items: center;
}

.sound-toggle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sound-toggle-btn.is-playing {
    border-color: rgba(34, 197, 94, 0.55);
    color: #86efac;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.sound-toggle-btn.needs-tap {
    animation: sound-pulse 1.2s ease-in-out infinite;
    border-color: rgba(248, 113, 113, 0.6);
    color: #fecaca;
}

.sound-toggle-btn.disabled {
    opacity: 0.55;
}

@keyframes sound-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.bgm-tip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    white-space: nowrap;
    max-width: min(280px, 70vw);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fecaca;
    background: rgba(20, 8, 10, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.35);
    pointer-events: none;
}

@media (max-width: 720px) {
    .bgm-tip {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        white-space: normal;
        text-align: center;
    }
}

.sound-toggle-btn:hover {
    background: var(--border-color);
}

.mobile-toggle {
    display: none;
    background: none;
    color: var(--text-heading);
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   5.5 SECTIONS (scroll continuo — melhor no telemovel)
   -------------------------------------------------------------------------- */
.tab-page {
    display: block;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 2rem 0 4rem 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.version-tag {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.hero-stats-grid {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-color);
}

/* Floating Card Stack Visual */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cheat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    width: 340px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.floating-cheat-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.preview-mini-hud {
    background: #0f172a;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.hud-target-lock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lock-ring {
    width: 24px;
    height: 24px;
    border: 2px dashed var(--accent-cyan);
    border-radius: 50%;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.lock-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.05em;
}

.hud-bar-item {
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    border-radius: var(--radius-full);
}

.card-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.status-online {
    color: var(--accent-emerald);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.price-tag {
    font-weight: 800;
    color: var(--text-heading);
}

/* Floating Micro Pills */
.floating-pill {
    position: absolute;
    background: var(--bg-glass-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    width: max-content;
}

.floating-pill strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-heading);
}

.floating-pill small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.icon-cyan { color: var(--accent-cyan); }
.icon-emerald { color: var(--accent-emerald); }
.icon-violet { color: var(--accent-violet); }

.pill-top-right {
    top: 10px;
    right: -10px;
}

.pill-bottom-left {
    bottom: 20px;
    left: -20px;
}

.pill-bottom-right {
    bottom: -15px;
    right: 20px;
}

/* Floating Animations */
.float-anim-1 { animation: float 5s ease-in-out infinite; }
.float-anim-2 { animation: float 6s ease-in-out infinite 1s; }
.float-anim-3 { animation: float 7s ease-in-out infinite 2s; }

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

/* --------------------------------------------------------------------------
   7. LIVE ANTI-CHEAT STATUS SECTION
   -------------------------------------------------------------------------- */
.status-section {
    padding: 4rem 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.status-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.status-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.status-platform {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.platform-icon {
    width: 40px;
    height: 40px;
    padding: 0.6rem;
    border-radius: var(--radius-md);
}

.platform-icon.android { background: rgba(16, 185, 129, 0.1); color: var(--accent-emerald); }
.platform-icon.ios { background: rgba(15, 23, 42, 0.08); color: var(--text-heading); }
.platform-icon.pc { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); }

.status-platform h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.status-platform small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
}

.status-badge.operational {
    background: rgba(22, 163, 74, 0.18);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.45);
}

.status-badge.warning {
    background: rgba(202, 138, 4, 0.18);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.5);
}

.status-badge.maintenance {
    background: rgba(202, 138, 4, 0.18);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.5);
}

.status-badge.danger {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.5);
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.88rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.detail-item strong {
    color: var(--text-heading);
}

/* --------------------------------------------------------------------------
   8. INTERACTIVE CHEAT SIMULATOR SECTION
   -------------------------------------------------------------------------- */
.simulator-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #1a080a 100%);
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.control-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

.control-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-control-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

.toggle-control-item:last-of-type {
    border-bottom: none;
}

.toggle-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.control-icon {
    width: 22px;
    height: 22px;
}

.control-icon.cyan { color: var(--accent-cyan); }
.control-icon.violet { color: var(--accent-violet); }
.control-icon.emerald { color: var(--accent-emerald); }
.control-icon.orange { color: var(--accent-orange); }
.control-icon.red { color: var(--accent-fire); }

.toggle-info label {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-heading);
    cursor: pointer;
}

.toggle-info small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Toggle Switch Style */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--bg-card);
    transition: .3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

input:checked + .slider {
    background-color: var(--accent-cyan);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.simulator-action-group {
    margin-top: 1.5rem;
}

/* Canvas Screen Frame */
.simulator-canvas-frame {
    background: #0f172a;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
    border: 2px solid #1e293b;
    position: relative;
}

.canvas-header-bar {
    background: #1e293b;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #94a3b8;
}

.canvas-window-dots {
    display: flex;
    gap: 0.4rem;
}

.canvas-window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

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

.canvas-title {
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.canvas-fps {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-family: monospace;
}

.canvas-container {
    position: relative;
    width: 100%;
    height: 480px;
    background: #020617;
}

#sim-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.sim-hud-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.hud-tag {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hud-tag.green {
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

/* --------------------------------------------------------------------------
   9. PRODUCTS CATALOG SECTION
   -------------------------------------------------------------------------- */
.products-section {
    padding: 5rem 0;
}

.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #ef4444;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    background: rgba(239, 68, 68, 0.16);
    border-color: #ef4444;
    color: #f87171;
}

.filter-btn.active {
    background: rgba(239, 68, 68, 0.22);
    color: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35), var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}

.product-card.featured-card {
    border: 2px solid var(--accent-violet);
    box-shadow: var(--shadow-lg), var(--shadow-glow-violet);
}

.product-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.product-badge.popular { background: linear-gradient(135deg, var(--accent-cyan), #0284c7); }
.product-badge.info { background: linear-gradient(135deg, #0284c7, #2563eb); }
.product-badge.highlight { background: linear-gradient(135deg, var(--accent-violet), #7c3aed); }
.product-badge.master { background: linear-gradient(135deg, var(--accent-orange), #ef4444); }

.product-media {
    width: 100%;
    margin: 0 0 1.15rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #0a0a0f;
    aspect-ratio: 16 / 9;
}

.product-media-shot {
    aspect-ratio: 16 / 10;
    margin-top: -0.55rem;
}

.product-media-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-media-frame iframe,
.product-media-video,
.product-media-img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    background: #000;
}

.product-media-video {
    object-fit: contain;
    pointer-events: none;
}

.product-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.android-bg { background: rgba(16, 185, 129, 0.12); color: var(--accent-emerald); }
.ios-bg { background: rgba(15, 23, 42, 0.08); color: var(--text-heading); }
.pc-bg { background: rgba(6, 182, 212, 0.12); color: var(--accent-cyan); }
.master-bg { background: rgba(249, 115, 22, 0.12); color: var(--accent-orange); }

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.product-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Duration selector pills inside card */
.duration-selector {
    display: flex;
    background: var(--bg-subtle);
    padding: 0.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    gap: 0.25rem;
}

.dur-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.4rem 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dur-btn.active {
    background: var(--bg-card);
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
}

.key-stock {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0.55rem 0 0.95rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}

.key-stock.stock-ok {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(74, 222, 128, 0.55);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.25);
}

.key-stock.stock-low {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(251, 191, 36, 0.45);
}

.key-stock.stock-out {
    color: #f87171;
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(248, 113, 113, 0.4);
    text-shadow: none;
}

.buy-now-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.35);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-price.has-discount {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.product-price .promo-pill,
.promo-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #052e16;
    border: 1px solid rgba(134, 239, 172, 0.55);
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}

.product-price .price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-price .price-old {
    color: #9ca3af;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-price .amount-old {
    text-decoration: line-through;
    opacity: 0.9;
}

.product-price .price-new .amount {
    color: #4ade80;
    text-shadow: 0 0 18px rgba(74, 222, 128, 0.35);
}

.product-price .currency {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
}

.product-price .amount {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1;
}

.product-price .period {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.announcement-badge.promo-live-badge {
    background: linear-gradient(135deg, #16a34a, #22c55e) !important;
    color: #052e16 !important;
}

.promo-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 12px;
    margin: 10px 0 6px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.22);
    background: rgba(20, 8, 10, 0.55);
}

.promo-check-item {
    margin: 0 !important;
    font-size: 0.9rem;
}

.promo-admin-preview {
    margin-top: 14px;
}

.promo-preview-card {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    background: rgba(22, 101, 52, 0.25);
    color: #bbf7d0;
}

.promo-preview-card strong {
    color: #86efac;
    font-size: 1.15rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.check-icon {
    color: var(--accent-emerald);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.grid-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US / FEATURES SECTION
   -------------------------------------------------------------------------- */
.features-section {
    padding: 5rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.user-avatar.custom-2 { background: linear-gradient(135deg, var(--accent-violet), #7c3aed); }
.user-avatar.custom-3 { background: linear-gradient(135deg, var(--accent-emerald), #059669); }

.review-header h4 {
    font-size: 1rem;
}

.verified-tag {
    color: var(--accent-emerald);
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.stars {
    margin-left: auto;
    color: #f59e0b;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.post-review-box {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(127, 29, 29, 0.2);
}

.post-review-box h4 {
    margin: 0 0 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fecaca;
}

.post-review-box label {
    display: block;
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e7d0d0;
}

.post-review-box input,
.post-review-box textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    padding: 0.65rem 0.8rem;
    font: inherit;
    box-sizing: border-box;
}

.star-picker {
    display: flex;
    gap: 0.35rem;
    margin: 0.75rem 0 0.25rem;
}

.star-btn {
    background: transparent;
    border: 0;
    color: #4b5563;
    font-size: 1.85rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-btn.active,
.star-btn:hover {
    color: #fbbf24;
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.q-icon {
    color: var(--accent-cyan);
    width: 20px;
    height: 20px;
}

.faq-arrow {
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.faq-answer {
    padding: 0 1.75rem 1.25rem 1.75rem;
    display: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --------------------------------------------------------------------------
   13b. WHATSAPP PROMO + FLOAT CHAT
   -------------------------------------------------------------------------- */
.whatsapp-banner-section {
  padding: 3.5rem 0 4.5rem;
}

.whatsapp-promo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl, 24px);
  padding: 2.5rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 211, 102, 0.35), transparent 45%),
    linear-gradient(135deg, #052e16 0%, #0b3d24 45%, #14532d 100%);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 22px 50px rgba(5, 46, 22, 0.45);
  color: #ecfdf5;
}

.whatsapp-promo-glow {
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  filter: blur(30px);
  pointer-events: none;
}

.whatsapp-promo-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.whatsapp-promo-content h2 {
  margin: 0.85rem 0 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: #fff;
}

.whatsapp-promo-content p {
  margin: 0 0 1.1rem;
  color: #bbf7d0;
  font-size: 1.02rem;
  max-width: 560px;
}

.wa-promo-chips,
.wa-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wa-chip {
  border: 1px solid rgba(134, 239, 172, 0.35);
  background: rgba(6, 78, 59, 0.55);
  color: #d1fae5;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.wa-chip:hover {
  background: rgba(22, 163, 74, 0.55);
  border-color: rgba(187, 247, 208, 0.55);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border: 1px solid rgba(187, 247, 208, 0.35) !important;
  color: #052e16 !important;
  font-weight: 800 !important;
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
}

.wa-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.55);
  color: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wa-status-xl {
  font-size: 0.84rem;
}

.wa-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: waPulse 1.6s infinite;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.65); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.wa-support-card {
  border-color: rgba(34, 197, 94, 0.4) !important;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 40%),
    rgba(12, 5, 6, 0.92) !important;
}

.wa-support-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wa-support-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.wa-chat-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(5, 46, 22, 0.35);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.wa-chat-bubble {
  display: inline-block;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 4px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.wa-chat-bubble.wa-bot {
  background: rgba(22, 101, 52, 0.55);
  color: #dcfce7;
}

.wa-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #25D366, #128C7E);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.45);
  display: grid;
  place-items: center;
  position: relative;
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.wa-float-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wa-float-panel {
  width: min(340px, calc(100vw - 28px));
  background: #07150f;
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.wa-float-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #14532d, #166534);
  color: #ecfdf5;
}

.wa-float-title {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wa-float-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.wa-status-mini {
  margin-top: 4px;
  font-size: 0.65rem;
  padding: 3px 8px;
}

.wa-float-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.wa-float-body {
  padding: 12px;
}

@media (max-width: 860px) {
  .whatsapp-promo-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem;
  }
}

/* --------------------------------------------------------------------------
   13. DISCORD BANNER CTA
   -------------------------------------------------------------------------- */
.discord-banner-section {
    padding: 4rem 0;
}

.discord-card {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: #ffffff;
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.discord-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.discord-content p {
    color: #c7d2fe;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.discord-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.discord-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand .logo-title {
    color: #ffffff;
}

.footer-desc {
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 360px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--accent-cyan);
}

.footer-products-list {
    display: flex;
    flex-direction: column;
}

.footer-muted {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-card.product-flash {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.55), var(--shadow-lg) !important;
    animation: productPulse 0.9s ease 2;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    font-size: 0.82rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   15. MODAL CHECKOUT & KEY GENERATOR
   -------------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 540px;
    max-height: none;
    margin: 1rem auto 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: visible;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}

.modal-backdrop.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border-color);
}

.modal-step {
    display: none;
    padding: 2.25rem;
}

.modal-step.active {
    display: block;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.order-summary-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.summary-row.total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 0.6rem;
    margin-top: 0.25rem;
    color: var(--text-heading);
    font-weight: 800;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.tag-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-heading);
}

.payment-picker {
    margin-bottom: 1.25rem;
}

.picker-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-heading);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pay-option {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.pay-option:hover {
    border-color: var(--border-hover);
    background: var(--bg-subtle);
}

.pay-option input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: var(--accent-cyan);
}

.pay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    width: 100%;
}

.pay-content small {
    margin-left: auto;
    color: var(--accent-emerald);
    font-size: 0.75rem;
}

.email-input-group {
    margin-bottom: 1.5rem;
}

.email-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

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

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.input-with-icon input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition);
}

.input-with-icon input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

/* Modal Success Step */
.success-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
}

.key-box {
    background: #0f172a;
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.key-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.key-display-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.license-key {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.download-guide-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.download-guide-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.download-guide-box ol {
    padding-left: 1.25rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* --------------------------------------------------------------------------
   16. LIVE SALES TOAST NOTIFICATION POPUP
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.sales-toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 360px;
    pointer-events: auto;
    animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1), toast-fade-out 0.4s forwards 4.6s;
}

@keyframes toast-slide-in {
    from { transform: translateX(-100%) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes toast-fade-out {
    to { transform: translateX(-20px); opacity: 0; }
}

.toast-avatar {
    width: 38px;
    height: 38px;
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-heading);
}

.toast-content small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
        max-width: 100%;
    }

    .simulator-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-actions .btn-primary span,
    .header-actions .btn-glow {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        background: rgba(14, 6, 8, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1rem 1.25rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        z-index: 120;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid rgba(239, 68, 68, 0.15);
        width: 100%;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        background: var(--bg-subtle);
        flex-shrink: 0;
    }

    .header-inner {
        height: 64px;
        gap: 0.5rem;
    }

    .logo-subtitle {
        display: none;
    }

    .logo-title {
        font-size: 1.05rem;
    }

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

    .header-actions {
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .header-actions .btn-secondary {
        padding: 0.55rem 0.7rem;
        font-size: 0.8rem;
    }

    .header-actions .btn-primary {
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
    }

    .header-actions .btn-primary i {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.9rem;
    }

    .tab-page {
        padding-top: 3.25rem;
        padding-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.55rem;
        word-break: break-word;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.25rem;
    }

    .section-header.center {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-status-pill {
        flex-wrap: wrap;
        max-width: 100%;
        font-size: 0.78rem;
        gap: 0.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        white-space: normal;
    }

    .hero-stats-grid {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .stat-divider {
        display: none;
    }

    .top-announcement {
        font-size: 0.75rem;
    }

    .announcement-inner {
        flex-wrap: wrap;
        gap: 0.35rem;
        justify-content: center;
        text-align: center;
    }

    .products-grid,
    .status-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .product-card {
        padding: 1.15rem;
        max-width: 100%;
    }

    .product-card:hover {
        transform: none;
    }

    .duration-selector {
        flex-wrap: wrap;
    }

    .dur-btn {
        flex: 1 1 40%;
        min-width: 4.5rem;
        padding: 0.45rem 0.35rem;
        font-size: 0.72rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        padding-bottom: 0.35rem;
        margin-bottom: 1.5rem;
        scrollbar-width: thin;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .key-stock {
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }

    .product-price .amount {
        font-size: 1.6rem;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .btn-block {
        width: 100%;
    }

    .discord-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .discord-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .modal-step {
        padding: 1.35rem 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
        padding-right: 2rem;
        word-break: break-word;
    }

    .review-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stars {
        margin-left: 0;
        width: 100%;
    }

    .simulator-section,
    .canvas-wrap,
    #sim-canvas,
    canvas {
        max-width: 100% !important;
    }
}

@media (max-width: 420px) {
    .header-actions .btn-secondary {
        display: none;
    }

    .logo-title {
        font-size: 0.95rem;
    }

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

    .products-section,
    .reviews-section,
    .features-section {
        padding-left: 0;
        padding-right: 0;
    }
}
