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

body {
    font-family: 'Heebo', sans-serif;
    background-color: #eee;
    background-image: url('images/background-light.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

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

.white-area {
    background-image: url('images/background-light.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 40px;
}

.container > *:not(.pre-hero):not(.white-area),
.white-area > * {
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Pre-Hero Banner */
.pre-hero {
    text-align: center;
    padding: 40px 20px 30px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%),
                url('images/background.webp') center/cover no-repeat #0a0a1a;
}

.attribution {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.pre-hero-logo {
    width: 150px;
    margin-bottom: 20px;
}

.hook-statement {
    font-size: clamp(16px, 3vw, 22px);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hook-statement strong {
    color: #fff;
}

/* Blue Section */
.blue-section {
    background: transparent;
    border: 2px solid #FFA500;
    border-radius: 4px;
    padding: 35px 30px 30px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blue-subtitle {
    font-size: clamp(20px, 3.5vw, 24px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.blue-divider {
    border: none;
    height: 0;
    margin: 0 auto 20px;
    max-width: 500px;
    border-top: 2px dashed rgba(255, 165, 0, 0.5);
}

.blue-headline {
    font-size: clamp(30px, 5.5vw, 46px);
    font-weight: 700;
    line-height: 1.5;
    color: #FFB732;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.15);
}

.blue-headline strong {
    font-weight: 900;
    color: #FFB732;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.blue-benefits {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #fff;
    line-height: 1.8;
}

.blue-benefits strong {
    color: #fff;
}

.event-details-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 165, 0, 0.3);
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.event-detail-item i {
    color: #FFA500;
    font-size: 26px;
}

@media (max-width: 768px) {
    .event-details-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .blue-section {
        padding: 25px 15px;
    }

    .blue-headline {
        font-size: clamp(26px, 7vw, 38px);
    }
}

/* Big CTA */
.big-cta {
    display: block;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 25px;
    padding: 22px 30px;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 900;
    font-family: 'Heebo', sans-serif;
    color: #fff;
    background: #FFA500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.big-cta:hover {
    background: #a52020;
    transform: scale(1.02);
}

.audience-line {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #fff;
    margin-bottom: 10px;
}

.audience-line strong {
    color: #FFA500;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 0;
}

.badge {
    display: inline-block;
    background: transparent;
    color: #FFA500;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    border: 2px solid #FFA500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3), inset 0 0 20px rgba(255, 165, 0, 0.1);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.3), inset 0 0 20px rgba(255, 165, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 165, 0, 0.5), inset 0 0 25px rgba(255, 165, 0, 0.2);
    }
}

.headline {
    font-family: 'Heebo', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFA500, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline-underline {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.headline-secondary {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 400;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.video-recommend {
    font-size: 18px;
    color: #FFA500;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.countdown-item {
    background: rgba(80, 200, 180, 0.08);
    border: 2px solid rgba(80, 200, 180, 0.3);
    border-radius: 4px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    font-size: 48px;
    font-weight: 900;
    color: #FFA500;
    display: block;
}

.countdown-unit {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

/* Video & Countdown Wrapper */
.video-countdown-wrapper {
    margin: 0 0 60px 0;
    border-radius: 4px;
    padding: 30px;
    padding-top: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #e0e0e0;
    background: #f9f9f9;
    color: #333;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.7);
}

.event-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
    flex-wrap: wrap;
    gap: 20px;
}

.event-date {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-day {
    font-size: 38px;
    font-weight: 900;
    color: #FFA500;
}

.event-full-date {
    font-size: 24px;
    color: #333;
    font-weight: 500;
}

.countdown-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-label-inline {
    font-size: 24px;
    color: #fff;
    white-space: nowrap;
    font-weight: 700;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat.animate {
    animation: fadeInUp 0.6s forwards;
}

.stat:nth-child(2).animate {
    animation-delay: 0.2s;
}

.stat:nth-child(3).animate {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #FFA500;
}

.stat-label {
    font-size: 14px;
    color: #888;
}

/* Pain Point */
.pain-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 30px;
    margin: 40px 0;
    border-right: 4px solid #FFA500;
    opacity: 0;
    transform: translateX(30px);
}

.pain-section.animate {
    animation: slideInRight 0.6s forwards;
}

.pain-section p {
    font-size: 22px;
    line-height: 1.8;
    color: #ccc;
}

/* What You'll Learn */
.learn-section {
    margin: 40px 0;
    text-align: center;
}

.learn-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-box {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.benefit-box:hover {
    transform: translateY(-5px);
    border-color: #FFA500;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.benefit-box p {
    font-size: 22px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.highlight-text {
    color: #FFA500;
    font-weight: 700;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFA500, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-icon i {
    font-size: 26px;
    color: #fff;
}

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

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* About - Full Width */
.about-section-full {
    display: flex;
    align-items: stretch;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    min-height: 500px;
    margin-top: 60px !important;
    margin-bottom: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #f8f8f8;
}

.about-image-side {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.about-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.about-slideshow .slide.active,
.about-slideshow .slide-with-caption.active .slide {
    opacity: 1;
}

.slide-with-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide-with-caption.active {
    opacity: 1;
}

.slide-with-caption .slide {
    position: relative;
    opacity: 1;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
}

.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slide-dot.active {
    background: #FFA500;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 12px 14px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
    border-radius: 4px;
}

.slide-arrow:hover {
    background: rgba(255, 165, 0, 0.8);
}

.slide-prev {
    right: 15px;
}

.slide-next {
    left: 15px;
}

.about-text-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-name {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFA500;
}

.about-bio {
    font-size: 17px;
    color: #444;
    margin: 0;
    line-height: 1.8;
}

.about-bio-second {
    margin-top: 16px;
}

.about-bio strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-section-full {
        flex-direction: column;
    }

    .about-image-side {
        flex: none;
        height: 350px;
    }

    .about-text-side {
        padding: 30px 20px;
        text-align: right;
    }

    .about-name {
        font-size: 36px;
    }

    .about-bio {
        font-size: 18px;
    }
}

/* Webinar Info */
.webinar-info {
    background: linear-gradient(135deg, #FFA500, #C43E00);
    border-radius: 4px;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.webinar-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

.webinar-info .date {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
}

.webinar-info .time {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(255, 140, 0, 0.15));
    padding: 10px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 165, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3), inset 0 0 15px rgba(255, 165, 0, 0.1);
    animation: pulseGlowOrange 2s ease-in-out infinite;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #FFA500;
    border-radius: 50%;
    position: relative;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px #FFA500, 0 0 20px #FF8C00, 0 0 30px rgba(255, 140, 0, 0.5);
}

.live-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #FFA500;
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
}

.live-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #FFA500;
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite 0.5s;
}

.live-text {
    color: #FFA500;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

/* Spots Counter */
.spots-counter {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: #888;
}

.spots-number {
    color: #FFA500;
    font-weight: 900;
    font-size: 20px;
}

/* Form */
.form-section {
    background: rgba(80, 200, 180, 0.08);
    border: 2px solid rgba(80, 200, 180, 0.3);
    border-radius: 4px;
    padding: 30px 30px 25px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.form-section.animate {
    animation: fadeInUp 0.6s forwards;
}

.form-title {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 12px;
    position: relative;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 4px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #FFA500;
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: #666;
}

.form-group input.valid {
    border-color: #4caf50;
}

.form-group input.invalid {
    border-color: #ff4444;
    animation: shake 0.5s;
}

.form-group .check-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4caf50;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group input.valid ~ .check-icon {
    opacity: 1;
}

.checkbox-group {
    text-align: right;
    margin-bottom: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    justify-content: center;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #FFA500;
    border-color: #FFA500;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\2713';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text {
    color: #fff;
    font-size: 14px;
}

.checkbox-error {
    display: none;
    color: #ff4444;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
    width: 100%;
}

.checkbox-error.show {
    display: block;
}

.submit-btn {
    width: 100%;
    max-width: 480px;
    padding: 18px;
    background: linear-gradient(90deg, #FFA500, #E88A00);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 77, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn .btn-text {
    position: relative;
    z-index: 1;
}

.submit-btn .btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text {
    visibility: hidden;
}

.submit-btn.loading .btn-loader {
    display: block;
}

.limited {
    margin-top: 15px;
    font-size: 18px;
    color: #888;
}

/* Pulsing Button */
.pulse-btn {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 40px rgba(255, 165, 0, 0.7), 0 0 60px rgba(255, 165, 0, 0.3);
    }
}

/* Form Trust Badges */
.form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.form-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #aaa;
}

.form-trust i {
    color: #4caf50;
    font-size: 14px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
}

.hero-date {
    text-align: center;
    align-items: center;
}

.hero-register-btn {
    max-width: 500px;
    font-size: clamp(32px, 7vw, 48px);
    animation: subtleGlow 3s ease-in-out infinite;
}

.countdown-section-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid rgba(80, 200, 180, 0.15);
    flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFA500, #E88A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: -10px;
    border: 2px solid #1a1a2e;
}

.avatar:first-child {
    margin-right: -10px;
}

.proof-text {
    font-size: 14px;
    color: #ccc;
}

.proof-text strong {
    color: #FFA500;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 10px 20px;
}

.open-popup-btn {
    width: 100%;
    max-width: 600px;
    padding: 28px 50px;
    background: linear-gradient(135deg, #FFA500 0%, #E88A00 100%);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 165, 0, 0.35);
    }
}

.open-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.35);
}

/* Registration Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 3000;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    padding: 35px 30px;
    border-radius: 4px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s;
    border: 2px solid rgba(80, 200, 180, 0.3);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.popup-close:hover {
    color: #fff;
}

.popup-title {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress-section {
    text-align: center;
    margin-bottom: 15px;
}

.progress-text {
    display: block;
    color: #FFA500;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFA500, #4caf50);
    border-radius: 4px;
    position: relative;
    width: 0%;
    animation: fillProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 90%; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: progressShine 2s infinite 1.5s;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percent {
    display: block;
    color: #4caf50;
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
}

/* Popup Form Styles */
.popup-content .form-group {
    max-width: 100%;
}

.popup-content .submit-btn {
    max-width: 100%;
}

.popup-content .form-trust {
    margin-top: 15px;
}

.popup-content .checkbox-text {
    font-size: 13px;
}

.logo-footer {
    margin-top: 35px;
    text-align: center;
}

.logo-footer img {
    max-width: 100px;
    height: auto;
    opacity: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 14px;
    color: #FFA500;
    padding: 8px 15px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 4px;
    background: rgba(255, 106, 0, 0.1);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFA500, #C43E00);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(233, 77, 0, 0.5);
    transition: bottom 0.4s ease, transform 0.3s;
    z-index: 1000;
    border: none;
    font-family: 'Heebo', sans-serif;
}

.floating-cta.visible {
    bottom: 30px;
}

.floating-cta:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    padding: 50px;
    border-radius: 4px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s;
    border: 2px solid #FFA500;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #FFA500;
}

.modal-text {
    color: #888;
    font-size: 20px;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #444;
    font-size: 12px;
}

/* Copyright Footer */
.copyright-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.copyright-footer p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.copyright-footer .disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    line-height: 1.5;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(233, 77, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(233, 77, 0, 0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2), inset 0 0 15px rgba(255, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), inset 0 0 20px rgba(255, 0, 0, 0.2);
    }
}

@keyframes pulseGlowOrange {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.3), inset 0 0 15px rgba(255, 165, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 140, 0, 0.5), inset 0 0 25px rgba(255, 165, 0, 0.2);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

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

/* Responsive */
@media (max-width: 600px) {
    .badge {
        font-size: 14px;
        padding: 10px 20px;
        letter-spacing: 1px;
    }

    .headline {
        font-size: clamp(38px, 11vw, 52px);
    }

    .headline-secondary {
        font-size: clamp(20px, 5vw, 28px);
    }

    .video-recommend {
        font-size: 14px;
    }

    .video-container {
        border: 1px solid #FFA500;
    }

    .form-title {
        margin-top: 10px;
    }

    .popup-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .stats {
        gap: 20px;
    }

    .about {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .countdown-item {
        min-width: 65px;
        padding: 12px 15px;
    }

    .countdown-number {
        font-size: 40px;
    }

    .floating-cta {
        width: calc(100% - 40px);
        text-align: center;
    }

    .event-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .event-date {
        align-items: center;
        width: 100%;
    }

    .countdown-inline {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .countdown {
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }

    .countdown-number {
        font-size: 40px;
    }

    .countdown-unit {
        font-size: 14px;
    }
}

/* ===== Accessibility ===== */

/* Skip Navigation */
.skip-nav {
    position: absolute;
    top: -100px;
    right: 0;
    background: #FFA500;
    color: #0a0a0a;
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessible Hidden Checkbox (replaces display:none) */
.sr-only-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-checkbox:checked + .checkbox-custom {
    background: #FFA500;
    border-color: #FFA500;
}

.sr-only-checkbox:checked + .checkbox-custom::after {
    content: '\2713';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.sr-only-checkbox:focus + .checkbox-custom {
    outline: 2px solid #FFA500;
    outline-offset: 2px;
}

/* Global Focus Indicators */
*:focus-visible {
    outline: 2px solid #FFA500;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

.open-popup-btn:focus-visible,
.submit-btn:focus-visible,
.floating-cta:focus-visible,
.hero-register-btn:focus-visible {
    outline: 3px solid #FFA500;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 165, 0, 0.3);
}

/* ===== Accessibility Widget ===== */

.a11y-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Heebo', sans-serif;
}

.a11y-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.a11y-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 165, 0, 0.5);
}

.a11y-toggle-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.a11y-toggle-btn i {
    font-size: 18px;
    color: #fff;
}

.a11y-panel {
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 280px;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.a11y-panel[hidden] {
    display: none;
}

.a11y-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 165, 0, 0.1);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.a11y-panel-header h4 {
    margin: 0;
    color: #FFA500;
    font-size: 18px;
    font-weight: 700;
}

.a11y-close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.a11y-close-btn:hover {
    color: #fff;
}

.a11y-options {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.a11y-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #e8e8e8;
    font-size: 15px;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-align: right;
}

.a11y-option:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.3);
}

.a11y-option[aria-pressed="true"] {
    background: rgba(255, 165, 0, 0.2);
    border-color: #FFA500;
    color: #FFA500;
}

.a11y-option-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #FFA500;
    flex-shrink: 0;
}

.a11y-option-text {
    flex: 1;
}

.a11y-reset {
    margin-top: 6px;
    border-color: rgba(255, 70, 70, 0.3);
    color: #ff6b6b;
}

.a11y-reset:hover {
    background: rgba(255, 70, 70, 0.15);
    border-color: rgba(255, 70, 70, 0.5);
}

.a11y-reset .a11y-option-icon {
    color: #ff6b6b;
}

@media (max-width: 600px) {
    .a11y-widget {
        bottom: 90px;
    }

    .a11y-toggle-btn {
        width: 32px;
        height: 32px;
    }

    .a11y-toggle-btn i {
        font-size: 15px;
    }

    .a11y-panel {
        width: 260px;
        bottom: 42px;
    }
}

/* ===== Accessibility Feature Toggles ===== */

/* Zoom (font size scaling) */
body.a11y-zoom-1 { zoom: 1.1; }
body.a11y-zoom-2 { zoom: 1.2; }
body.a11y-zoom-3 { zoom: 1.3; }
body.a11y-zoom-4 { zoom: 1.4; }
body.a11y-zoom--1 { zoom: 0.9; }
body.a11y-zoom--2 { zoom: 0.8; }

/* High Contrast */
body.a11y-high-contrast {
    background: #000 !important;
}

body.a11y-high-contrast .container,
body.a11y-high-contrast .benefit-box,
body.a11y-high-contrast .popup-content,
body.a11y-high-contrast .modal-content {
    background: #000 !important;
    border-color: #fff !important;
}

body.a11y-high-contrast *:not(.a11y-option-icon):not(.a11y-icon) {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

body.a11y-high-contrast .headline {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: #FFA500 !important;
    -webkit-text-fill-color: #FFA500 !important;
}

body.a11y-high-contrast img {
    filter: contrast(1.2);
}

/* Highlight Links */
body.a11y-highlight-links a {
    outline: 2px solid #FFA500 !important;
    outline-offset: 2px;
    text-decoration: underline !important;
    color: #FFA500 !important;
    -webkit-text-fill-color: #FFA500 !important;
}

body.a11y-highlight-links button {
    outline: 2px dashed #FFA500 !important;
    outline-offset: 2px;
}

/* Readable Font */
body.a11y-readable-font,
body.a11y-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.5px;
    word-spacing: 2px;
}

/* Stop Animations */
body.a11y-stop-animations *,
body.a11y-stop-animations *::before,
body.a11y-stop-animations *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

body.a11y-stop-animations .live-dot {
    animation: none !important;
    opacity: 1 !important;
}

body.a11y-stop-animations .live-dot::before,
body.a11y-stop-animations .live-dot::after {
    animation: none !important;
    display: none;
}

/* Accessibility Statement */
.accessibility-statement {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
}

.accessibility-statement a {
    color: #666;
    text-decoration: underline;
}

.accessibility-statement a:hover {
    color: #333;
}
