body {
    font-family: Arial, sans-serif;
    margin: 0;

    background: radial-gradient(circle at top, #1a1a1a, #000);
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    overflow-x: hidden; 
}


html {
    scroll-behavior: smooth;
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--bg);
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    z-index: -1;
    transition: 0.5s;
}


.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    animation: fadeInUp 2s ease;
}

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


.logo {
    width: 140px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
}


h2 {
    margin: 10px 0;
    font-size: 26px;
}


.subtitle {
    font-size: 14px;
    color: #bbb;
}


button {
    position: relative;
    overflow: hidden;

    background: linear-gradient(45deg, #e50914, #ff2a2a);
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}


button span {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255,255,255,0.5);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


#filmesSeries {
    margin-top: 20px;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    display: none;
}

#filmesSeries img {
    width: 100%;
    border-radius: 10px;
}