:root {
    --primary: #ff1a1a;
    --primary-glow: rgba(255, 26, 26, 0.6);
    --primary-dark: #8b0000;
    --secondary: #00f2ff;
    --secondary-glow: rgba(0, 242, 255, 0.5);
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-red: #ff003c;
    --neon-purple: #9d00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 26, 26, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.08), transparent 25%);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Header & Timer */
.timer-banner {
    background: linear-gradient(90deg, #3a0000, #ff1a1a, #3a0000);
    background-size: 200% auto;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px var(--primary-glow);
    animation: gradientShift 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

#countdown {
    font-family: monospace;
    font-size: 1.3rem;
    background: rgba(0,0,0,0.5);
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

/* Background Effects for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-red), var(--primary-dark));
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

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

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Creepster', cursive;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-glow), 0 0 30px var(--primary-dark);
    position: relative;
}

.highlight {
    background: linear-gradient(to text, #ff1a1a, #ff7b00);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary); /* Fallback */
    filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.8));
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 500;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(255, 26, 26, 0.2);
    border: 1px solid var(--glass-border);
}

.hero-image img#main-banner {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.hero-image:hover img#main-banner {
    transform: scale(1.02);
}

/* Pricing Card */
.pricing-card {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    z-index: 2;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.price-info {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.8rem;
    font-weight: 700;
}

.current-price {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
    line-height: 1;
}

.offer-text {
    width: 100%;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseText 2s infinite;
}

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

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff003c, #8b0000);
    color: white;
    text-decoration: none;
    padding: 22px 40px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,100,100,0.5);
}

.buy-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.buy-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 0, 60, 0.6), inset 0 2px 0 rgba(255,255,255,0.4);
    background: linear-gradient(135deg, #ff1a1a, #a50000);
}

.buy-btn:hover::after {
    opacity: 1;
    transform: scale(1);
    animation: ripple 1s linear infinite;
}

.trust-badge {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Bonus Section */
.bonuses {
    padding: 100px 0;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    border-radius: 2px;
}

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

.bonus-item {
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.bonus-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 242, 255, 0.2);
    border-color: rgba(0, 242, 255, 0.4);
}

.bonus-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.bonus-item:hover img {
    transform: scale(1.05);
}

.bonus-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.bonus-item p {
    color: var(--text-dim);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.course-bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.course-bonus:hover .bonus-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Proofs & Testimonials */
.proofs, .testimonials {
    padding: 100px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.proof-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-10px);
}

.placeholder-proof {
    height: 400px;
    background: linear-gradient(135deg, #111, #222);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    color: #555;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.proof-card p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.testimonial {
    padding: 40px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.testimonial:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
    font-style: normal;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #eaeaea;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--secondary);
    font-style: normal;
    font-size: 1.1rem;
}

.author::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary);
    margin-right: 15px;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(to top, rgba(20, 0, 0, 0.9), transparent);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 50px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
    background: #000;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-top: 1px solid rgba(255,26,26,0.3);
    z-index: 2000;
    display: none; /* Hidden by default (desktop) */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}

.buy-btn.sticky {
    margin-bottom: 0;
    font-size: 1.2rem;
    padding: 18px;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    h1 { font-size: 2.5rem; letter-spacing: 2px; }
    .pricing-card { padding: 30px 20px; }
    .buy-btn { font-size: 1.2rem; padding: 18px 20px; flex-direction: column; gap: 10px; }
    .current-price { font-size: 3.5rem; }
    
    .sticky-mobile-cta {
        display: block;
        animation: slideUp 0.5s ease forwards;
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    body {
        padding-bottom: 100px;
    }
    
    .btn-skull {
        display: none; /* Simplify button on mobile */
    }
}

/* Horror Effects */
.tap-skull {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 3rem;
    animation: skull-float 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    user-select: none;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes skull-float {
    0% {
        transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5) rotate(0deg);
    }
    40% {
        transform: translate(-50%, -100%) scale(2) rotate(15deg);
        opacity: 0.9;
        filter: drop-shadow(0 0 25px rgba(255, 0, 0, 1));
    }
    100% {
        transform: translate(-50%, -200%) scale(1) rotate(-30deg);
        opacity: 0;
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
    }
}

/* Burning Skull Hero Section */
.hero-image {
    position: relative;
}

.burning-skull-container {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 180px;
    height: 180px;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.burning-skull-container:hover {
    transform: scale(1.15) rotate(10deg);
}

.burning-skull {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.8));
    animation: fire-glow 2s infinite alternate ease-in-out;
}

@keyframes fire-glow {
    0% { filter: drop-shadow(0 0 20px #ff4500) brightness(1); transform: translateY(0); }
    100% { filter: drop-shadow(0 0 40px #ff0000) brightness(1.3); transform: translateY(-5px); }
}

/* Button Burning Skulls */
.btn-skull {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
    animation: btn-skull-pulse 1.5s infinite alternate;
}

@keyframes btn-skull-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px #ff4500); }
    100% { transform: scale(1.2); filter: drop-shadow(0 0 15px #ff0000); }
}

@media (max-width: 768px) {
    .burning-skull-container {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -20px;
    }
}
