/* Import Cairo Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --bg-dark: hsl(230, 25%, 6%);
    --bg-card: rgba(22, 25, 41, 0.65);
    --bg-card-hover: rgba(32, 37, 61, 0.85);
    --primary: hsl(270, 85%, 60%);
    --primary-glow: hsla(270, 85%, 60%, 0.4);
    --secondary: hsl(190, 90%, 50%);
    --secondary-glow: hsla(190, 90%, 50%, 0.4);
    --accent: hsl(340, 85%, 55%);
    --accent-glow: hsla(340, 85%, 55%, 0.4);
    --text-main: hsl(210, 20%, 98%);
    --text-muted: hsl(218, 15%, 75%);
    --text-dark: hsl(230, 25%, 15%);
    --success: hsl(145, 80%, 45%);
    --success-glow: hsla(145, 80%, 45%, 0.3);
    
    /* Layout Variables */
    --font-cairo: 'Cairo', sans-serif;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-hover: 1px solid rgba(255, 255, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-cairo);
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    padding-top: 48px; /* Offset for the fixed top scarcity marquee banner on desktop */
}

/* Glow Blobs in Background */
body::before, body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

body::before {
    top: 10%;
    right: -100px;
    background-color: var(--primary);
}

body::after {
    top: 50%;
    left: -100px;
    background-color: var(--secondary);
}

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

ul {
    list-style: none;
}

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

/* Selection color */
::-selection {
    background-color: var(--primary);
    color: white;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --- Reusable Components --- */

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

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
}

.badge-primary {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.2), rgba(155, 89, 182, 0.2));
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 15px var(--primary-glow);
}

.badge-sale {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(241, 196, 15, 0.2));
    border-color: var(--accent);
    color: var(--accent);
    animation: pulseGlow 2s infinite alternate;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(142, 68, 173, 0.5), 0 0 15px var(--secondary-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

.btn-pulse {
    animation: buttonPulse 1.8s infinite;
}

/* Custom Glass Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* --- Section Title --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Header Announcement Bar --- */
.promo-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 700;
}

.promo-timer {
    display: inline-flex;
    direction: ltr;
    align-items: center;
    gap: 6px;
}

.timer-segment {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(10, 12, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    height: 26px;
}

.timer-num {
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}

#timer-seconds {
    color: var(--secondary);
    text-shadow: 0 0 6px var(--secondary-glow);
}

.timer-lbl {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    line-height: 1;
}

.timer-divider {
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    animation: timerFlash 1s infinite;
    line-height: 1;
}

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

/* --- Hero Section --- */
.hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #a29bfe, #81ecec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
    color: var(--secondary);
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 20px var(--secondary-glow);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

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

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

.hero-feature-item i {
    color: var(--secondary);
}

/* Visual Panel */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
    border: var(--border-glass);
    transition: var(--transition-normal);
}

.hero-img-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 45px var(--secondary-glow);
}

.hero-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.visual-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--bg-card);
    border: var(--border-glass);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.visual-badge i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* --- Value Proposition Section --- */
.value-prop {
    padding: 60px 0;
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glow), rgba(255,255,255,0.02));
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

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

/* --- Audience Section (Who is this for?) --- */
.audience {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(8, 9, 15, 0.95), rgba(15, 17, 26, 0.98));
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: var(--border-glass);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.15);
}

.audience-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

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

.audience-earning-hint {
    margin-top: auto;
    padding: 12px 15px;
    background: rgba(0, 240, 255, 0.05);
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--secondary);
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--secondary);
}

.audience-summary-banner {
    margin-top: 50px;
    padding: 25px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, rgba(142, 68, 173, 0.1) 0%, rgba(0, 240, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
    animation: audiencePulseGlow 3s infinite alternate;
}

@keyframes audiencePulseGlow {
    from { box-shadow: 0 0 15px rgba(0, 240, 255, 0.05); }
    to { box-shadow: 0 0 25px rgba(142, 68, 173, 0.15); }
}

/* --- Showcase Section (The 14 Tools) --- */
.showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(142, 68, 173, 0.05), transparent);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    border: var(--border-glass);
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
    gap: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease forwards;
}

.tool-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.tool-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-fast);
}

.tool-card:hover .tool-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

/* Icon specific theme color */
.tool-icon-wrapper.social { color: var(--secondary); }
.tool-icon-wrapper.design { color: var(--primary); }
.tool-icon-wrapper.data { color: var(--accent); }

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.tool-feature-li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-main);
}

.tool-feature-li i {
    color: var(--success);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* --- Bonus & Support Section --- */
.bonus-section {
    padding: 80px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border: var(--border-glass);
}

.bonus-item-icon {
    font-size: 1.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
}

.bonus-item-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-item-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 206, 201, 0.03), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.test-rating {
    color: #fdcb6e;
    font-size: 0.95rem;
}

.test-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

.user-meta h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.user-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Checkout / Order Section --- */
.checkout-section {
    padding: 100px 0 80px;
    position: relative;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Pricing Card Visual */
.price-showcase-card {
    background: linear-gradient(135deg, rgba(30, 32, 45, 0.8), rgba(15, 17, 26, 0.9));
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.2), 0 0 30px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.price-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.price-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.price-old {
    font-size: 1.6rem;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 0 25px var(--secondary-glow);
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.price-new span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.checkout-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.value-list-checklist {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
    margin-top: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.checklist-item i {
    color: var(--success);
}

/* Checkout Form */
.checkout-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-container h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

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

.input-wrapper i {
    position: absolute;
    right: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 14px 45px 14px 15px;
    background: rgba(255,255,255,0.03);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    background: rgba(255,255,255,0.06);
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

/* Payment Gateway Selector Simulation */
.payment-selectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-btn {
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: var(--border-glass);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.payment-btn i {
    font-size: 1.4rem;
}

.payment-btn.active {
    background: rgba(142, 68, 173, 0.1);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 15px var(--primary-glow);
}

.payment-btn span {
    font-size: 0.8rem;
    font-weight: 700;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: rgba(0,0,0,0.15);
}

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

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-card);
    border: var(--border-glass);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: var(--transition-fast);
}

.faq-header:hover {
    background: var(--bg-card-hover);
}

.faq-header i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

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

.faq-body {
    max-height: 0;
    overflow: hidden;
    background: rgba(22, 25, 41, 0.3);
    border-right: var(--border-glass);
    border-left: var(--border-glass);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-body {
    border-bottom: var(--border-glass);
}

.faq-content {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* --- Footer --- */
footer {
    background: hsl(230, 25%, 3%);
    padding: 60px 0 30px;
    border-top: var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, white, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

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

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

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Toast Notification System --- */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--success);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px var(--success-glow);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transform: translateX(-150%);
    animation: slideInLeft 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast.error {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px var(--accent-glow);
}

.toast i {
    font-size: 1.4rem;
}

.toast.success i { color: var(--success); }
.toast.error i { color: var(--accent); }

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    to { transform: translateX(0); }
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(142, 68, 173, 0); }
    100% { box-shadow: 0 0 0 0 rgba(142, 68, 173, 0); }
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 5px var(--accent-glow); }
    to { box-shadow: 0 0 20px var(--accent); }
}

/* --- Media Queries (Responsive Design) --- */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-badge-container, .hero-cta, .hero-features {
        justify-content: center;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .value-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 36px !important; /* Mobile offset for the fixed top scarcity banner */
    }
    
    /* Reduce container padding on very small screens to fit content */
    .container {
        padding: 0 16px !important;
    }
    
    /* Mobile adjustments for scarcity marquee and logo slider */
    .scarcity-marquee {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
    }
    .marquee-item {
        padding: 0 30px !important; /* Balanced mobile horizontal padding */
    }
    .logo-slider-container {
        padding: 25px 0 !important;
    }
    .logo-slider-title {
        font-size: 0.78rem !important;
        margin-bottom: 15px !important;
        padding: 0 15px !important;
    }
    .logo-slide {
        font-size: 1.1rem !important;
        padding: 0 20px !important; /* Tighter spacing on mobile */
    }
    .logo-slide i {
        font-size: 1.5rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    /* Fix visual badge overflow */
    .visual-badge {
        right: 10px !important;
        bottom: 10px !important;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* Reduce pricing card padding on mobile to prevent numbers wrapping */
    .price-showcase-card {
        padding: 24px 16px !important;
    }
    
    .price-new {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Fit 3 buttons side-by-side or stack on tiny displays */
    .payment-selectors {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
        gap: 8px;
    }
    
    .payment-btn span {
        font-size: 0.72rem;
    }
    
    .value-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reposition toasts to top-center on mobile to prevent overlapping bottom content */
    .toast-container {
        top: 50px; /* Shifted down to clear the 36px fixed scarcity banner on mobile */
        bottom: auto;
        left: 16px;
        right: 16px;
    }
    
    .toast {
        transform: translateY(-150%);
        animation: slideInDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    
    /* Make purchase notification fit next to the chatbot button on mobile (side-by-side alignment) */
    .purchase-notify-card {
        right: 15px !important;
        left: 85px !important;
        width: auto !important;
        max-width: none !important;
        bottom: 20px !important;
        padding: 10px 14px !important; /* Compact padding */
    }
    
    .notify-bell-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    .notify-desc {
        font-size: 0.8rem !important;
    }
    
    /* Make countdown timer segments more compact on mobile */
    .timer-segment {
        padding: 2px 6px !important;
        height: 22px !important;
        gap: 3px !important;
    }
    
    .timer-num {
        font-size: 0.8rem !important;
        min-width: 14px !important;
    }
    
    .timer-lbl {
        font-size: 0.58rem !important;
    }
    
    .timer-divider {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 380px) {
    .payment-selectors {
        grid-template-columns: 1fr !important;
    }
}

/* --- Live Purchase Notification (Social Proof) --- */
.purchase-notify-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px !important;
    width: 360px;
    max-width: calc(100vw - 60px);
    background: linear-gradient(135deg, rgba(22, 25, 41, 0.92), rgba(32, 37, 61, 0.96)) !important;
    border: 1px solid var(--secondary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--secondary-glow);
    direction: rtl;
    text-align: right;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    transform: translateX(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.purchase-notify-card.hide {
    animation: slideOutRight 0.5s ease forwards;
}

.notify-bell-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 206, 201, 0.15);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: wiggleBell 2.5s infinite ease-in-out;
}

.notify-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notify-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.notify-desc {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0;
}

.notify-desc strong {
    color: white;
    font-weight: 700;
}

/* Animations */
@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(150%);
        opacity: 0;
    }
}

@keyframes slideInDown {
    to {
        transform: translateY(0);
    }
}

@keyframes wiggleBell {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    75% { transform: rotate(4deg); }
    85% { transform: rotate(-4deg); }
}

/* --- Floating AI Chatbot Widget --- */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1090;
    direction: rtl;
    text-align: right;
}

.chatbot-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    outline: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.4), 0 0 15px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-normal);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(142, 68, 173, 0.6), 0 0 20px var(--secondary-glow);
}

.chatbot-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: chatbotPulseAnim 1.8s infinite;
    pointer-events: none;
}

@keyframes chatbotPulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 360px;
    height: 500px;
    background: linear-gradient(135deg, rgba(22, 25, 41, 0.95), rgba(15, 17, 26, 0.98));
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--primary-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chatbot-header {
    background: linear-gradient(90deg, rgba(142, 68, 173, 0.2), rgba(0, 206, 201, 0.2));
    border-bottom: var(--border-glass);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar-active {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(142, 68, 173, 0.2);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.chatbot-header-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
}

.chatbot-header-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.chatbot-close-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.chatbot-close-btn:hover {
    color: var(--accent);
}

/* Chat Messages */
.chatbot-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.4;
    animation: chatMsgAppear 0.3s ease forwards;
}

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

.bot-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    border-bottom-right-radius: 4px;
    color: var(--text-main);
}

.user-msg {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), rgba(142, 68, 173, 0.8));
    color: white;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.2);
}

.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.4;
    animation: typingBlink 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBlink {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Quick Suggestion Chips */
.chatbot-suggestions {
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    scrollbar-width: none;
}

.chatbot-suggestions::-webkit-scrollbar {
    display: none;
}

.suggestion-chip {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.suggestion-chip:hover {
    background: rgba(0, 206, 201, 0.1);
    border-color: var(--secondary);
    color: white;
}

/* Input Area */
.chatbot-input-area {
    display: flex;
    border-top: var(--border-glass);
    background: rgba(10, 12, 22, 0.4);
}

.chatbot-input-field {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 15px 20px;
    color: white;
    font-size: 0.92rem;
}

.chatbot-send-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0 20px;
    color: var(--secondary);
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-send-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Mobile Media Queries for Chatbot Window */
@media (max-width: 576px) {
    .chatbot-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .chatbot-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        border: none;
        z-index: 1200;
    }
    
    .chatbot-widget.chat-open .chatbot-toggle {
        display: none;
    }
}

/* --- Inter-section CTA Divider & Shaking Button --- */
.section-cta-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(25px, 4vw, 40px) 0;
    position: relative;
    z-index: 10;
}

.btn-shake {
    animation: gentleShake 3.5s infinite ease-in-out;
    background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
    box-shadow: 0 8px 24px rgba(240, 52, 101, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.btn-shake:hover {
    box-shadow: 0 12px 30px rgba(240, 52, 101, 0.5), 0 0 15px var(--accent-glow) !important;
    animation-play-state: paused !important; /* Pause shake animation on hover so it's easy to click */
}

@keyframes gentleShake {
    0%, 82%, 100% {
        transform: rotate(0) scale(1);
    }
    85% {
        transform: rotate(2.5deg) scale(1.03);
    }
    88% {
        transform: rotate(-2.5deg) scale(1.03);
    }
    91% {
        transform: rotate(2.5deg) scale(1.03);
    }
    94% {
        transform: rotate(-2.5deg) scale(1.03);
    }
    97% {
        transform: rotate(0) scale(1.03);
    }
}

/* --- Scarcity Marquee Banner --- */
.scarcity-marquee {
    background: linear-gradient(90deg, #e74c3c 0%, #8e44ad 100%);
    box-shadow: 0 2px 15px rgba(231, 76, 60, 0.4);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 0;
    overflow: hidden;
    position: fixed; /* Fixed position is bulletproof on mobile, bypassing browser overflow container bugs */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: scarcityMarqueeAnim 30s linear infinite;
    /* Starts at natural 0px on load to align with 0% keyframe for instant visual rendering */
}

.marquee-item {
    padding: 0 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* Prevent text shrinking to ensure exact mathematical loop matching */
}

@keyframes scarcityMarqueeAnim {
    0% { transform: translate3d(0, 0, 0); } /* Renders instantly at 0px without flashing */
    100% { transform: translate3d(25%, 0, 0); } /* Moves right (left-to-right for RTL Arabic flow) */
}

/* --- Guarantee / Risk Reversal Section --- */
.guarantee-section {
    padding: 60px 0;
    position: relative;
}

.guarantee-wrapper {
    padding: 50px 40px !important;
    border: 2px solid rgba(241, 196, 15, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 25px rgba(241, 196, 15, 0.1) !important;
    border-radius: var(--radius-lg);
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #f1c40f;
    color: #f1c40f;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 24px;
}

.guarantee-card {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.01);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: rgba(241, 196, 15, 0.3);
    background: rgba(255,255,255,0.03);
    transform: translateY(-5px);
}

.guarantee-icon {
    font-size: 1.8rem;
    color: #f1c40f;
}

.guarantee-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

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

/* --- Platform Logo Slider Section --- */
.logo-slider-container {
    padding: 35px 0;
    background: rgba(8, 9, 15, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
    position: relative;
    text-align: center;
}

.logo-slider-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

/* Gradient fade effects on the edges */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, rgba(8, 9, 15, 1) 0%, rgba(8, 9, 15, 0) 100%);
}

.logo-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, rgba(8, 9, 15, 1) 0%, rgba(8, 9, 15, 0) 100%);
}

.logo-slide-track {
    display: flex;
    width: max-content;
    animation: logoScroll 25s linear infinite;
    align-items: center;
    gap: 0; /* Remove gap to ensure mathematical seamless looping with padding */
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.32); /* Premium grayscale muted style */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    padding: 0 35px; /* Perfect seamless horizontal spacing */
    flex-shrink: 0; /* Prevent shrinking to ensure exact mathematical loop matching */
}

.logo-slide i {
    font-size: 1.9rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-slide:hover {
    transform: scale(1.08);
}

.logo-slide:hover i {
    transform: scale(1.15) rotate(4deg);
}

/* Brand specific custom neon hover styles */
.logo-slide.slide-whatsapp:hover {
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.logo-slide.slide-telegram:hover {
    color: #0088cc;
    text-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
}

.logo-slide.slide-facebook:hover {
    color: #1877F2;
    text-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.logo-slide.slide-instagram:hover {
    color: #E4405F;
    text-shadow: 0 0 15px rgba(228, 64, 95, 0.5);
}

.logo-slide.slide-tiktok:hover {
    color: #ff0050; /* Bright TikTok neon red/pink */
    text-shadow: 0 0 15px rgba(255, 0, 80, 0.5);
}

.logo-slide.slide-youtube:hover {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.logo-slide.slide-google:hover {
    color: #FBBC05; /* Bright Google Map yellow/gold */
    text-shadow: 0 0 15px rgba(251, 188, 5, 0.5);
}

@keyframes logoScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(25%, 0, 0); } /* Loop by exactly 25% (moving left-to-right, matching top scarcity banner direction) */
}

/* Copy wallet button hover transition effects */
.btn-copy:hover {
    background: rgba(0, 240, 255, 0.18) !important;
    border-color: var(--secondary) !important;
    transform: scale(1.05);
}
.btn-copy:active {
    transform: scale(0.96);
}
