/* --- Global Styles & Theme --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0b; /* Deep cinematic black */
    color: #e5e7eb;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* --- Header & Navigation --- */
header {
    background: linear-gradient(to bottom, #1a1a1c, #0a0a0b);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 2px solid #3b82f6; /* Modern blue accent */
}

header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header h2 {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-top: 10px;
    font-weight: 400;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #111827;
}

nav a, header a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover, header a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* --- Search Bar & Form --- */
.search-container {
    margin-top: 20px;
}

input[type="text"], input[type="email"], textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #374151;
    background: #1f2937;
    color: white;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
}

button {
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #2563eb;
}

/* --- Movie Grid Layout --- */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.movie-card {
    background: #111827;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-card img {
    width: 100%;
    height: 320px;
    object-fit: cover; /* Keeps posters perfectly aligned */
}

.movie-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    height: 60px; /* Aligns titles */
    display: flex;
    align-items: center;
}

.movie-card p {
    padding: 0 15px 15px;
    font-size: 0.85rem;
    color: #9ca3af;
    flex-grow: 1;
}

/* --- Action Buttons --- */
.download-btn, .downlad-btn, .downlod-btn {
    display: block;
    text-align: center;
    background: #ef4444; /* Alert red for play buttons */
    color: white;
    padding: 10px;
    margin: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.download-btn:hover {
    background: #dc2626;
}

/* Suggestion Form at bottom of Index */
#suggestionForm {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #111827;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

/* Back to Top link styling */
.movie-grid > a {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}