:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-red: #ff0000;
    --badge-bg: rgba(255, 255, 255, 0.1);
    --font-main: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

/* STARS BACKGROUND */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(-45deg);
    animation: shoot 2s linear;
    opacity: 0;
    z-index: -1;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateX(-600px) translateY(600px) rotate(-45deg);
        opacity: 0;
    }
}

/* MAIN WRAPPER */
.container {
    width: 100%;
    max-width: 1400px;
    padding: 1.5rem 1rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* HEADER / LOGO */
header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* LIVE BADGE */
.live-badge {
    display: inline-flex;
    align-items: center;
    background: #111;
    border: 1px solid #222;
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.live-tag {
    background: var(--accent-red);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.live-text {
    color: #ddd;
    font-size: 1rem;
    font-weight: 500;
}

/* HEADLINE */
.headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    padding: 0 1rem;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 25px;
    background: url("assets/line.avif") no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

/* VIDEO SECTION */
.video-section {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

.video-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 800px;
    font-weight: 500;
}

.text-red {
    color: var(--accent-red);
    font-weight: 700;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-box {
    background: rgba(220, 20, 20, 0.9);
    padding: 2rem 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulse-red 2s infinite;
    gap: 0.5rem;
}

@keyframes pulse-red {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.speaker-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.unmute-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.playing-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.click-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BUTTONS */
.reserve-btn {
    margin-top: 2rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reserve-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.reserve-btn .arrow {
    transition: margin-left 0.3s;
}

.reserve-btn:hover .arrow {
    margin-left: 0.5rem;
}

.unlock-text {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* REVEAL ANIM */
.reveal-text,
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-text.visible,
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-800 {
    transition-delay: 0.8s;
}

/* TICKER (FULL WIDTH, BUT SAFE) */
.ticker-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: #000;
    padding: 1.5rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    color: #444;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 4rem;
    letter-spacing: 1px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* GENERIC SECTIONS */
.details-section,
.benefits-section,
.comparison-section,
.video-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.details-title,
.benefits-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* =========== ALL THE DETAILS (WHERE / WHEN / WHAT) =========== */
.details-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.detail-card {
    background: linear-gradient(135deg, rgba(50, 10, 10, 0.6), rgba(30, 5, 5, 0.4));
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1.25rem;
    row-gap: 1rem;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-card:hover {
    background: linear-gradient(135deg, rgba(70, 15, 15, 0.8), rgba(50, 10, 10, 0.6));
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

/* icon on left */
.card-icon {
    grid-row: 1 / 2;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
}

/* content */
.card-content {
    display: contents;
}

.card-header {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-label {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-badge {
    background: var(--accent-red);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-description {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-top: 0.5rem;
}

/* arrow on far right, vertically centered-ish */
.card-arrow {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s;
}

.detail-card:hover .card-arrow {
    opacity: 1;
    color: var(--accent-red);
    transform: translateY(0);
}

/* =========== BENEFITS SECTION =========== */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: left;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verified-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* =========== COMPARISON SECTION =========== */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.comparison-column {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.comparison-column.with-event {
    border-color: rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(50, 10, 10, 0.6), rgba(30, 5, 5, 0.4));
}

.comparison-column.without-event {
    border-color: rgba(100, 100, 100, 0.4);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.4));
}

.comparison-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.icon-check,
.icon-cross {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-check {
    background: var(--accent-red);
    color: white;
}

.icon-cross {
    background: rgba(150, 150, 150, 0.5);
    color: #999;
}

.comparison-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.comparison-cta {
    width: fit-content;
    margin: 3rem auto 0;
}

/* =========== RESULTS SECTION =========== */
.results-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.results-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.result-img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(242, 8, 8, 0.575);
}

/* =================== RESPONSIVE TWEAKS =================== */

@media (max-width: 768px) {
    .logo {
        max-width: 140px;
    }

    .live-badge {
        padding: 6px 12px;
    }

    .live-text {
        font-size: 0.85rem;
    }

    .video-intro {
        font-size: 1.05rem;
        padding: 0 0.5rem;
    }

    .reserve-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* smaller unmute overlay on phones */
    .unmute-box {
        padding: 1rem 1.4rem;
        gap: 0.3rem;
    }

    .speaker-icon {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .playing-text {
        font-size: 0.95rem;
    }

    .click-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .detail-card {
        grid-template-columns: auto 1fr;
        column-gap: 1rem;
    }

    .card-arrow {
        display: none;
    }

    .benefit-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .verified-icon {
        width: 28px;
        height: 28px;
    }

    .comparison-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }

    .live-badge {
        flex-direction: row;
        padding: 5px 10px;
        gap: 0.3rem;
        text-align: center;
        white-space: nowrap;
    }

    .live-tag {
        margin-right: 0;
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .live-text {
        font-size: 0.55rem;
    }

    .headline {
        font-size: 1.8rem;
    }

    .video-intro {
        font-size: 0.9rem;
    }

    .reserve-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    /* even smaller unmute box on very small screens */
    .unmute-box {
        padding: 0.6rem 1rem;
    }

    .speaker-icon {
        font-size: 1.2rem;
        margin-bottom: 0px;
    }

    .playing-text {
        font-size: 0.8rem;
    }

    .click-text {
        font-size: 0.65rem;
    }

    .details-title,
    .benefits-title,
    .comparison-title,
    .growth-title,
    .results-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .card-label {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }

    .benefit-text,
    .comparison-item p {
        font-size: 0.85rem;
    }

    .step-badge {
        font-size: 0.75rem;
    }

    .step-card p {
        font-size: 0.8rem;
    }

    .special-card h4 {
        font-size: 0.95rem;
    }

    .results-grid {
        gap: 0.5rem;
    }

    .result-img {
        width: calc(50% - 0.25rem);
        height: auto;
        aspect-ratio: 1 / 2;
    }

    .disclaimer-section p {
        font-size: 0.75rem;
    }

    .copyright {
        font-size: 0.9rem;
    }

    .contact-title {
        font-size: 0.8rem;
    }
}

/* =========== CONTACT SECTION =========== */
.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 1rem;
}

/* =========== RISK DISCLAIMER =========== */
.disclaimer-section {
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

.disclaimer-section h4 {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
}

/* =========== MAIN FOOTER =========== */
.main-footer {
    width: 100%;
    align-self: stretch;
    background: #000;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding: 3rem 1rem;
    margin-top: 2rem;
    color: #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.copyright {
    font-size: 1.1rem;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-title {
    font-size: 0.95rem;
    color: #a0a0a0;
    letter-spacing: 1px;
}

.contact-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-numbers a {
    color: var(--accent-red);
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.contact-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.contact-numbers a::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
    font-weight: 400;
}

.contact-numbers a:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-numbers {
        gap: 1rem;
    }

    .contact-numbers a {
        width: 100%;
        justify-content: center;
    }
}

/* =========== MODAL =========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
    transform: translateY(-50px);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent-red);
}

.modal-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-content p {
    color: #aaa;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 6px;
}

.form-message.hidden {
    display: none;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.form-message.success {
    background: rgba(0, 255, 0, 0.1);
    color: #51cf66;
    border: 1px solid rgba(0, 255, 0, 0.2);
}