/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-yellow: #f8cf29;
    --accent-cyan: #00ffff;
    --accent-purple: #9900ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(153, 0, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(248, 207, 41, 0.2);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(248, 207, 41, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(248, 207, 41, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 207, 41, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(248, 207, 41, 0.15);
    border: 1px solid rgba(248, 207, 41, 0.4);
    border-radius: 50px;
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.word-animate {
    display: inline-block;
    color: var(--text-primary);
    animation: slideUp 0.8s ease both;
}

.word-animate:nth-child(1) { animation-delay: 0.1s; }
.word-animate:nth-child(2) { animation-delay: 0.2s; }
.word-animate:nth-child(3) { animation-delay: 0.3s; }

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

.highlight-animated {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(248, 207, 41, 0.6);
    animation: fadeIn 0.8s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.animated-text {
    display: inline-block;
    animation: fadeInUp 1s ease both;
}

.animated-text:nth-child(1) { animation-delay: 0.4s; }
.animated-text:nth-child(3) { animation-delay: 0.5s; }
.animated-text:nth-child(5) { animation-delay: 0.6s; }

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

.hero-subtitle .highlight {
    color: var(--accent-yellow);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(248, 207, 41, 0.5);
}

/* Stat Row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(248, 207, 41, 0.2);
    border-bottom: 1px solid rgba(248, 207, 41, 0.2);
}

.stat-box {
    text-align: center;
    animation: statSlideIn 0.8s ease both;
}

.stat-box:nth-child(1) { animation-delay: 0.7s; }
.stat-box:nth-child(2) { animation-delay: 0.8s; }
.stat-box:nth-child(3) { animation-delay: 0.9s; }

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-value .percent,
.stat-value .unit {
    font-size: 1.5rem;
    margin-left: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

.cta-primary {
    margin-bottom: 2rem;
}

.btn-main {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-yellow), #e5b526);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(248, 207, 41, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(248, 207, 41, 0.7);
}

.btn-text-primary {
    font-size: 1.1rem;
}

.btn-text-secondary {
    font-size: 0.85rem;
    opacity: 0.9;
}

.iphone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    perspective: 1000px;
}

.iphone-frame {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 0 2px rgba(248, 207, 41, 0.3);
    overflow: hidden;
    position: relative;
    animation: iPhoneFloat 3s ease-in-out infinite;
}

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

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #000;
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    padding: 40px 0 0 0;
    background: #000;
    overflow: hidden;
}

.iphone-screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iphone-home-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

.vsl-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(248, 207, 41, 0.2),
        0 0 40px rgba(248, 207, 41, 0.1);
    border: 2px solid rgba(248, 207, 41, 0.3);
    animation: videoGlow 3s ease-in-out infinite;
    display: none;
}

.vsl-container-mobile {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(248, 207, 41, 0.2),
        0 0 40px rgba(248, 207, 41, 0.1);
    border: 2px solid rgba(248, 207, 41, 0.3);
    animation: videoGlow 3s ease-in-out infinite;
    margin: 1.5rem 0;
}

@keyframes videoGlow {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(248, 207, 41, 0.2),
            0 0 40px rgba(248, 207, 41, 0.1);
    }
    50% { 
        box-shadow: 
            0 20px 60px rgba(248, 207, 41, 0.35),
            0 0 60px rgba(248, 207, 41, 0.2);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Sections */
.section {
    padding: 5rem 20px;
    border-bottom: 1px solid rgba(248, 207, 41, 0.1);
    position: relative;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    color: var(--text-primary);
}

.highlight-yellow {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(248, 207, 41, 0.4);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Problem Section */
.problem {
    background: rgba(248, 207, 41, 0.05);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(248, 207, 41, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(248, 207, 41, 0.3);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    background: rgba(248, 207, 41, 0.1);
    border-color: rgba(248, 207, 41, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(248, 207, 41, 0.15);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(248, 207, 41, 0.3);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stat-danger {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 207, 41, 0.2);
    color: #ff6b6b;
    font-weight: 600;
}

.card-pulse-1 { animation: cardPulse1 3s ease-in-out infinite; }
.card-pulse-2 { animation: cardPulse2 3s ease-in-out infinite 0.5s; }
.card-pulse-3 { animation: cardPulse3 3s ease-in-out infinite 1s; }

@keyframes cardPulse1 {
    0%, 100% { box-shadow: 0 0 0 rgba(248, 207, 41, 0.2); }
    50% { box-shadow: 0 0 20px rgba(248, 207, 41, 0.3); }
}

@keyframes cardPulse2 {
    0%, 100% { box-shadow: 0 0 0 rgba(248, 207, 41, 0.2); }
    50% { box-shadow: 0 0 20px rgba(248, 207, 41, 0.3); }
}

@keyframes cardPulse3 {
    0%, 100% { box-shadow: 0 0 0 rgba(248, 207, 41, 0.2); }
    50% { box-shadow: 0 0 20px rgba(248, 207, 41, 0.3); }
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 207, 41, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover {
    background: rgba(248, 207, 41, 0.12);
    border-color: rgba(248, 207, 41, 0.6);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(248, 207, 41, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    background: rgba(248, 207, 41, 0.2);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(248, 207, 41, 0.4);
}

.feature h3 {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(248, 207, 41, 0.3);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-metric {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 207, 41, 0.2);
    font-weight: 700;
    color: var(--accent-yellow);
}

.feature-metric span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.3rem;
}

.cta-secondary {
    text-align: center;
    padding: 3rem;
    background: rgba(248, 207, 41, 0.08);
    border: 2px solid rgba(248, 207, 41, 0.4);
    border-radius: 12px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 207, 41, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-highlight {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-secondary p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-yellow);
    color: #000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(248, 207, 41, 0.3);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 207, 41, 0.5);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.05) 0%, rgba(153, 0, 255, 0.05) 100%);
    position: relative;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid var(--accent-yellow);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    background: rgba(248, 207, 41, 0.08);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(248, 207, 41, 0.15);
}

.feature-item .check {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 900;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(248, 207, 41, 0.5);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.feature-item strong {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.08) 0%, rgba(153, 0, 255, 0.08) 100%);
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(248, 207, 41, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    animation: stepFadeIn 0.8s ease both;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

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

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), #e5b526);
    color: #000;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(248, 207, 41, 0.4);
    transition: all 0.3s ease;
}

.step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(248, 207, 41, 0.6);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
}

.cta-primary.final {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.5rem 4rem !important;
    font-size: 1.2rem !important;
}

.cta-alt {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.btn-copy {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-copy:hover {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(248, 207, 41, 0.4);
    transform: translateY(-2px);
}

.final-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid rgba(248, 207, 41, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 207, 41, 0.4), transparent);
}

.footer p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer p:hover {
    color: var(--accent-yellow);
}

.footer strong {
    color: var(--accent-yellow);
    font-weight: 600;
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Notification System */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

.notification {
    background: linear-gradient(135deg, rgba(248, 207, 41, 0.2), rgba(248, 207, 41, 0.08));
    border: 1px solid rgba(248, 207, 41, 0.4);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(248, 207, 41, 0.2);
    animation: slideInUp 0.4s ease;
}

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

.notification.fade-out {
    animation: slideOutDown 0.4s ease forwards;
}

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

.notification-icon {
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(248, 207, 41, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.notification-username {
    color: var(--accent-yellow);
    font-weight: 700;
}

.notification-handle {
    color: var(--accent-cyan);
    font-weight: 700;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--accent-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vsl-container {
        display: none;
    }

    .vsl-container-mobile {
        display: block;
    }

    .live-ticker {
        order: -1;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .stat-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .stat-box {
        padding: 1rem;
        text-align: center;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section {
        padding: 3rem 20px;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .feature-header {
        flex-direction: column;
        gap: 1rem;
    }

    .notification-container {
        max-width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .notification {
        font-size: 0.85rem;
    }
}

/* Telegram Floating Bubble */
.telegram-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    animation: bubbleEntrance 0.6s ease-out;
}

@keyframes bubbleEntrance {
    from {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.telegram-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #0099dd 0%, #0077bb 100%);
}

.telegram-bubble:active {
    transform: scale(0.95);
}

.telegram-bubble svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .telegram-bubble {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .telegram-bubble svg {
        width: 26px;
        height: 26px;
    }
}
