.cv-video-container {
    font-family: 'Outfit', sans-serif;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.cv-video-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.badge-soon {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.premium-title {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 800;
    letter-spacing: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 139, 146, 0.2));
}

.subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.minimal-loader {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: loaderMove 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

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

@media (max-width: 768px) {
    .premium-title { 
        letter-spacing: 10px; 
        font-size: 4rem;
    }
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}
