:root {
    --bg-color: #0b0710;
    --surface-color: #160e22;
    --primary-color: #e50950;
    --primary-hover: #ff1c6b;
    --secondary-color: #83254f;
    --accent-color: #d4af37;
    /* Gold */
    --text-main: #fcfcfc;
    --text-muted: #a69bb5;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Animations */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.bg-glow-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    top: -10vw;
    left: -10vw;
}

.bg-glow-2 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    bottom: -10vw;
    right: -10vw;
    animation-delay: -5s;
    opacity: 0.4;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.1);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Screens */
.screen {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlide 0.6s forwards;
    text-align: center;
}

.screen.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutSlide {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.screen.exit {
    animation: fadeOutSlide 0.5s forwards;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons and Options */
.btn {
    background: linear-gradient(135deg, var(--primary-color), #c20743);
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229, 9, 80, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s;
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 80, 0.6);
    background: linear-gradient(135deg, var(--primary-hover), #db0e4f);
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.option-card {
    background: rgba(22, 14, 34, 0.7);
    border: 1px solid rgba(229, 9, 80, 0.3);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    color: var(--text-main);
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.option-card:hover {
    border-color: var(--primary-color);
    background: rgba(229, 9, 80, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(229, 9, 80, 0.2);
}

.option-card:active {
    transform: scale(0.98);
}

.option-selected {
    border-color: var(--primary-color);
    background: rgba(229, 9, 80, 0.3);
    transform: scale(0.98);
}

/* Progress bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 3px;
}

/* Loading Screen specific */
.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(229, 9, 80, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Results Chart */
.falling-ball {
    position: fixed;
    top: -50px;
    border-radius: 50%;
    animation: fall linear forwards;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

.chart-container {
    width: 100%;
    height: 200px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 20%;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    animation: growUp 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    transform-origin: bottom;
}

.chart-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

@keyframes growUp {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Video Placeholders and Testimonials */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 80, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    z-index: 2;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

/* Sales Page Enhancements */
.sales-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 1rem auto;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-box {
    background: rgba(22, 14, 34, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(229, 9, 80, 0.15);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    font-size: 2.5rem;
}

/* Utilities */
.text-left {
    text-align: left;
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1.5rem;
    }
}