/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f0f4f8, #d9e6f2);
    color: #333;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 850px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #007acc;
    margin-bottom: 30px;
    font-weight: 600;
}

.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

input[type="text"], select {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: box-shadow 0.3s ease;
    width: 60%;
}

input[type="text"]:focus, select:focus {
    box-shadow: 0px 4px 10px rgba(0, 112, 202, 0.2);
}

select {
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

.result-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.movie-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.movie-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 112, 202, 0.2);
}

.movie-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.movie-info {
    padding: 10px;
    text-align: left;
}

.movie-info h3 {
    font-size: 1.1em;
    color: #007acc;
    margin: 5px 0;
}

.movie-info p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}
