* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    overflow: hidden;
    background-color: #000;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
    color: white; 
    z-index: 2;
    width: 90%;
    max-width: 400px;
}

.logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem; 
    margin-bottom: 30px; 
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.style1_btn {
    width: 260px; 
    height: 55px;
    margin: 0 auto;
    background: linear-gradient(90deg, #fb7638 0%, #fe1eab 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(254, 30, 171, 0.4), 0 0 0 3px rgba(255, 255, 255, .25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.style1_btn:active {
    transform: scale(0.97);
}

.style1_btn .finger {
    position: absolute;
    right: -10px;
    top: 70%;
    transform: translateY(-50%);
    width: 32px; 
    height: auto;
    pointer-events: none;
    animation: finger-bounce 0.8s infinite alternate;
    z-index: 10; 
}

.style1_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px 50px 0 0;
    pointer-events: none;
    z-index: 1;
}

@keyframes finger-bounce {
    0% {
        transform: translateY(-50%) scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}