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

body {
    background: #050505;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    padding: 120px 0 70px;
}

.hero h1 {
    font-size: 82px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    color: #999;
    max-width: 650px;
}

.movies-section {
    padding-bottom: 60px;
}

.movies-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.movie-card {
    color: white;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.movie-card:hover {
    transform: scale(1.04);
}

.movie-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 12px;
}

.movie-info h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #777;
    margin-top: 60px;
}

@media(max-width:768px) {

.hero h1 {
    font-size: 46px;
}

.hero p {
    font-size: 18px;
}

.movie-grid {
    grid-template-columns: repeat(2, 1fr);
}

.movie-card img {
    height: 260px;
}

}
video::cue {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.5;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.95),
        0 0 2px rgba(0,0,0,1);
    background: rgba(0,0,0,0.25);
font-family: 'Trebuchet MS', sans-serif;
letter-spacing: 0.3px;
    font-weight: 500;
}

video::-webkit-media-text-track-display {
    transform: translateY(-5%);
}