/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scrollbar-width:none;
}

/* Body Styling */
body {
    background-color: #141414;
    color: #fff;
    font-size: 16px;
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #141414;
}

.logo img {
    width: 150px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.profile img {
    width: 30px;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: absolute;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.hero button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    background-color: #e50914;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Movie Section */
.movies {
    padding: 50px 20px;
}

.movies h2 {
    margin-bottom: 20px;
}

.movie-row {
    display: flex;
    overflow-x: auto;
    gap: 15px;
}

.movie-row img {
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s;
}

.movie-row img:hover {
    transform: scale(1.1);
}

/* Footer Section */
footer {
    padding: 20px;
    text-align: center;
    background-color: #141414;
}

/* moba */

.card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 40%;
  }
  
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  .container {
    padding: 2px 16px;
  }