/* 
   Theme: Futuristic Neon
   Palette: Dark Blue, Neon Purple, Cyan, White, Yellow
*/

:root {
    --bg-dark: #050a14;
    --bg-card: #0f1623;
    --primary-blue: #00f2ff;
    --primary-purple: #bc13fe;
    --accent-yellow: #ffd700;
    --text-main: #ffffff;
    --text-muted: #a0aab5;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --gradient-hero: linear-gradient(135deg, rgba(8,10,30,0.95) 0%, rgba(20,5,30,0.9) 100%);
    --gradient-btn: linear-gradient(90deg, #bc13fe, #00f2ff);
    
    --transition: all 0.3s ease;
    --container-width: 1100px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.highlight-text { color: var(--primary-blue); text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gradient-btn);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

.pulse-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(188, 19, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px; /* Space from top */
    z-index: 10;
}

/* Canvas is fixed behind content */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: -webkit-linear-gradient(#fff, #a0aab5);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Sections General */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-dark {
    background: rgba(15, 22, 35, 0.5);
    padding: 60px 0;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-main);
}

/* Benefits */
.section-benefits {
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.1);
}

.benefit-card .icon-box {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: white;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Content List */
.section-content {
    background: linear-gradient(to bottom, var(--bg-dark), #0a0f1c);
}

.content-list-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 242, 255, 0.1);
}

.content-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.content-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-list li i {
    color: var(--primary-blue);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Urgency & Timer */
.section-urgency {
    background: radial-gradient(circle at center, #1a0b2e 0%, var(--bg-dark) 70%);
    padding: 100px 0;
}

.section-urgency h2 {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pulsing-text {
    animation: text-pulse 1.5s infinite alternate;
}

@keyframes text-pulse {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3); }
}

.price-box {
    margin: 30px 0;
    font-size: 1.5rem;
}

.price-box .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 20px;
    font-size: 1.2rem;
}

.price-box .new-price {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
}

.timer-display div {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border: 1px solid rgba(188, 19, 254, 0.3);
}

.timer-display span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.bonus-alert {
    color: var(--primary-purple);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Testimonials */
.section-testimonials {
    background: var(--bg-dark);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    animation: fadeEffect 1s;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card .quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

@keyframes fadeEffect {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
}

/* CTA Footer */
.section-cta {
    padding: 100px 0;
    background: linear-gradient(0deg, #180529 0%, var(--bg-dark) 100%);
}

footer {
    padding: 40px 0;
    background: #020408;
    color: #555;
    font-size: 0.9rem;
}

/* Floating FAB for mobile */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 100;
    text-align: center;
    display: none; /* Hidden by default on desktop */
}

.mobile-sticky-cta .btn-primary {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Animations Classes */
.fade-in-up, .fade-in, .fade-in-left {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left { transform: translateX(-30px); }

.visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    
    .price-box .new-price { font-size: 2rem; }
    .timer-display { gap: 10px; }
    .timer-display div { min-width: 70px; padding: 10px; font-size: 0.9rem; }
    .timer-display span { font-size: 1.8rem; }
    
    .content-list-wrapper { padding: 20px; }
    .content-list li { font-size: 1rem; }
    
    .mobile-sticky-cta { display: block; }
    
    /* Add padding to footer to ensure content isn't hidden by FAB */
    footer { padding-bottom: 100px; } 
    
    .section-urgency { padding: 60px 0; }
}
