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

:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2B;
    --secondary: #004E89;
    --accent: #FFD23F;
    --success: #06D6A0;
    --danger: #EF476F;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

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

.btn-cta-pulse {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(245, 87, 108, 0.7); }
}

.btn-cta-pulse:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: moveBackground 20s linear infinite;
}

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

.urgency-banner {
    background: var(--danger);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(239, 71, 111, 0.4);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

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

.live-badge-hero {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.live-icon {
    animation: blink 1s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

/* Countdown */
.countdown-container {
    margin: 40px 0;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.countdown-label-small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mega Buttons */
.btn-mega {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 50px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-mega::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-mega:hover::before {
    width: 300px;
    height: 300px;
}

.btn-mega:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(245, 87, 108, 0.6);
}

.btn-mega:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: var(--gradient-3);
    box-shadow: 0 15px 50px rgba(79, 172, 254, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.6);
}

.btn-final {
    background: var(--gradient-4);
    box-shadow: 0 15px 50px rgba(67, 233, 123, 0.4);
}

.btn-final:hover {
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.6);
}

.btn-icon {
    font-size: 28px;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-mega:hover .btn-arrow {
    transform: translateX(10px);
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

/* Event Info Hero */
.event-info-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.info-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.info-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.badge-icon {
    font-size: 36px;
}

.info-badge strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-badge p {
    font-size: 14px;
    opacity: 0.9;
}

/* Social Proof */
.social-proof {
    background: var(--light);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Content Detailed */
.content-detailed {
    padding: 80px 0;
    background: var(--light);
}

.content-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-1);
    border-radius: 20px 0 0 20px;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 16px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.audience-item {
    background: var(--gradient-1);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Registration */
.registration {
    padding: 80px 0;
    background: var(--gradient-1);
}

.registration-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.registration-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.guarantee-badge {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.registration-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 16px;
}

.label-icon {
    font-size: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 3px solid var(--light);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
}

.btn-submit-mega {
    width: 100%;
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 22px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(245, 87, 108, 0.6);
}

.form-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 30px;
    text-align: center;
}

.success-box {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.success-icon-large {
    font-size: 64px;
    margin-bottom: 15px;
    display: block;
    animation: scale-in 0.5s ease;
}

@keyframes scale-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.success-box p {
    color: var(--text-light);
    font-size: 16px;
}

.btn-whatsapp-mega {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 22px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-icon {
    font-size: 28px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-4);
    text-align: center;
    color: white;
}

.final-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 48px;
}

.footer h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
}

.footer-note {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

.hidden {
    display: none !important;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2000;
}

.admin-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.btn-export, .btn-clear {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-export {
    background: var(--primary);
    color: white;
}

.btn-export:hover {
    background: var(--primary-dark);
}

.btn-clear {
    background: var(--danger);
    color: white;
}

.btn-clear:hover {
    background: #d32f2f;
}

.registrations-list {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.registration-item {
    padding: 10px;
    margin: 5px 0;
    background: var(--light);
    border-radius: 6px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .btn-mega {
        padding: 20px 30px;
        font-size: 16px;
    }
    
    .registration-box {
        padding: 30px 20px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-cta-pulse {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-panel {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px;
        max-width: 100%;
    }
}
