/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f00;
}

.logo span {
  color: #fff;
}

nav ul.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

nav ul.nav-links li {
  margin: 0 10px;
}

nav ul.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul.nav-links a:hover {
  color: #f90;
}

.search-box input {
  padding: 8px;
  border-radius: 4px;
  border: none;
  width: 200px;
}

/* Hero Banner */
.hero {
  background: url('https://via.placeholder.com/1400x400?text=FindItFirst+Banner') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 15px;
}

.hero-text h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.hero-text p {
  color: #ccc;
  font-size: 18px;
}

/* Categories */
.categories {
  padding: 30px;
}

.categories h2 {
  margin-bottom: 15px;
  color: #f90;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.category-grid a {
  background-color: #222;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.category-grid a:hover {
  background-color: #f90;
  color: #000;
}

/* Latest Releases */
.latest {
  padding: 30px;
}

.latest h2 {
  margin-bottom: 20px;
  color: #f90;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Movie Cards */
.movie-card {
  background-color: #222;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
  padding-bottom: 10px;
}

.movie-card:hover {
  transform: scale(1.03);
}

.movie-card img {
  width: 100%;
  display: block;
}

.movie-card h3 {
  font-size: 16px;
  margin: 10px 0 10px;
}

.movie-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.download-btn {
  display: inline-block;
  background-color: #f90;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #fff;
}

/* Movie Cards */
.movie-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
  padding-bottom: 15px;
}

.movie-card:hover {
  transform: scale(1.03);
}

.movie-card img {
  width: 100%;
  display: block;
}

.movie-card h3 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.movie-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.download-btn {
  display: inline-block;
  background-color: #f90;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #fff;


/* Footer */
footer {
  background-color: #000;
  padding: 40px 30px 20px;
  color: #ccc;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  margin-bottom: 10px;
  color: #f90;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul a:hover {
  color: #f90;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Social Icons (Text-based for now) */
.social-icons li {
  display: inline;
  margin-right: 10px;
}
