* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #14181d;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    padding: 20px 40px;
}

.app-container {
    max-width: 1100px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-icon {
    font-size: 32px;
    opacity: 0.8;
}

.nav-links a {
    color: #8c9ba5;
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.hero-section {
    margin: 20px 0 30px;
}

.hero-section h1 {
    font-size: 26px;
    font-weight: bold;
    color: #e0e0e0;
}

.movie-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 15px;
    color: #8c9ba5;
    margin-bottom: 15px;
    font-weight: normal;
}

.movie-grid {
    display: flex;
    gap: 18px;
}

.movie-card {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background-color: #222b35;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.movie-card:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.15);
    z-index: 10;
}