* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #1a1a2e;
    border-bottom: 2px solid #e94560;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e94560;
    letter-spacing: -0.5px;
}

nav a {
    color: #aaa;
    margin-left: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: color .3s;
    font-weight: 500;
}

nav a:hover {
    color: #fff;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 60px;
    width: 100%;
}

.hero {
    text-align: center;
    padding: 60px 20px 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #888;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background .3s, transform .2s;
}

.btn:hover {
    background: #c73652;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #e94560;
}

.btn-secondary:hover {
    background: #e94560;
}

.section {
    margin-top: 60px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.movie-card {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform .3s, border-color .3s;
    border: 1px solid #2a2a3e;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: #e94560;
}

.movie-poster {
    font-size: 52px;
    margin-bottom: 10px;
}

.movie-title {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
    margin-bottom: 5px;
}

.movie-year {
    font-size: 14px;
    color: #666;
}

.page-header {
    text-align: center;
    padding: 30px 0 20px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.page-header p {
    color: #888;
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 25px;
    color: #444;
    font-size: 14px;
    border-top: 1px solid #1a1a2e;
    margin-top: auto;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
    }
    nav a {
        margin: 0 12px;
        font-size: 14px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .hero {
        padding: 30px 10px;
    }
    main {
        padding: 10px 15px 40px;
    }
}
