:root {
    --primary: #ffffff;
    --accent: #ffcc00;
    --bg-dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
    font-family: var(--font-main);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bgVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding-bottom: 8vh;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}

.title {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
    opacity: 0.8;
}

.premium-btn {
    position: relative;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.premium-btn:active {
    transform: translateY(0) scale(0.95);
}

.btn-text {
    position: relative;
    z-index: 3;
    font-weight: 400;
    letter-spacing: 0.05rem;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
}

.premium-btn:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay > * {
    animation: fadeIn 1s ease-out forwards;
}
