
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
   
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px); 
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-text-fill-color: transparent;
}

p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.movie-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#movie-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

#movie-genre {
    font-size: 1rem;
    color: #e94560;
    font-weight: 400;
}


button {
    background: linear-gradient(45deg, #e94560, #ff416c);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
    filter: brightness(1.1);
}

button:active {
    transform: scale(0.98);
}


footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

footer b {
    color: #e94560;
}