
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: url("backgrnd.png") no-repeat center ;
  background-size:cover;
  background-color: #ED1D24;
  color: rgb(250, 215, 215);
  min-height: 100vh;
  background-position: fixed;
}
.logo_gif {
    height:400px;
  width: 800px;
  display: block;
  margin: 20px auto;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 0 0 20px 20px;
  z-index: 1000;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
.links a {
  margin-right: 100px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 15px;
}
.links a:hover {
  color: red;
}

.container {
  padding: 120px 40px 40px;
  text-align: center;
  background: rgba(0,0,0, 0.5);
  width:1000px;
  margin-left:200px;

}
.container1{
  padding: 120px 40px 40px;
  text-align: center;
}
.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  border-radius: 15px;
}
.card h2 {
  margin: 15px 0 10px;
  color: rgb(255, 255, 255);
}
.card p {
  font-size: 14px;
  color: #ddd;
}

.card-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 20px;
  color: #000000;
  font-size: 14px;
  margin-top: 170px;
}
.footer a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}
.footer a:hover {
  text-decoration: underline;
}
#imgheight {
    position: center;
    height: 300px;
    border-radius: 15px;
    z-index: -1000;
}

.movies {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.movies h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 70, 85, 0.6);
}


.quick-links {
    background-color: rgba(0,0,0,0.5);
    width:1000px;
  display: flex;
  margin-left:200px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
}

.link-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.link-content {
  padding: 20px;
  text-align: center;
  color: #fff;
}

.link-content h3 {
  margin-bottom: 10px;
  color: #ff4655;
}

.link-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #ff4655;
  background: rgba(255, 70, 85, 0.2);
  color: #fff;
  transition: 0.3s;
}

.card-btn:hover {
  background: #ff4655;
  color: #fff;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 70, 85, 0.6);
}
