:root {
    --primary: #9d00ff;
    --primary-glow: rgba(157, 0, 255, 0.5);
    --secondary: #00f2ff;
    --secondary-glow: rgba(0, 242, 255, 0.5);
    --bg-dark: #0a0a0c;
    --card-bg: rgba(20, 20, 25, 0.7);
    --text-main: #ffffff;
    --text-dim: #b0b0b5;
    --accent-red: #ff0055;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    line-height: 1.6;
}

/* Background Animated Gradient Mesh */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
    z-index: 10;
}

/* Hero Titles */
.hero-section {
    margin-bottom: 3rem;
}

.glitch-text {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 10px var(--primary-glow);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -10px;
    opacity: 0.9;
}

/* Glass Video Card */
.video-container {
    margin-bottom: 3rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(157, 0, 255, 0.3);
}

.player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background: #000;
}

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

.video-info {
    padding: 2rem;
    text-align: left;
}

.video-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-info p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Conversion Focus Styles */
.conversion-status {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(157, 0, 255, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(157, 0, 255, 0.2);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.3s ease;
}

#conversion-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.5px;
    margin: 0;
}

#conversion-text.complete {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Buttons and Actions */
.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), #7a00cc);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.cta-button.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

.hint {
    color: var(--text-dim);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer {
    margin-top: 5rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-section { animation-delay: 0.2s; }
.video-container { animation-delay: 0.4s; }
.actions { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.8rem;
    }
    .container {
        margin: 2rem auto;
    }
}
