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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  min-height: 100vh;
  padding: 40px;
}

/* ================= GRID LAYOUT ================= */
.parent {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 18px;
}

/* ================= POSTER ================= */
.div1 {
  grid-column: span 2;
  grid-row: span 5;
  width: 700px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CONTENT ================= */
.div2 {
  grid-column: span 3;
  padding: 10px 10px 10px 20px;
}

/* Titles */
.div2 h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #93c5fd;
}

.div2 h2 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
  color: #bfdbfe;
}

.div2 h3 {
  font-size: 1rem;
  color: #fca5a5;
  margin: 15px 0;
}

/* Paragraph */
.div2 p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5f5;
  max-width: 90%;
}

/* ================= INFO CARDS ================= */
.container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.container:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.container i {
  font-size: 2rem;
  color: #60a5fa;
}

.container p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.container h2 {
  font-size: 1.2rem;
  margin: 2px 0 0;
  color: #e0f2fe;
}

/* Divider */
hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

/* ================= CONTACT ================= */
.query-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #1e34683f;
  padding: 10px 40px;
  width: 200px;
  border-radius: 12px;
}

.query-contact h1 {
  font-size: 1.1rem;
  color: #f8fafc;
}

.query-contact h3 {
  font-size: 0.95rem;
  color: #94a3b8;
}
.queries{
    display: flex;
    align-items: center;
    gap: 30px;
}
/* ================= REGISTER BUTTON ================= */
.div2 a {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #0ea5e9);
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div2 a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.45);
}
.links {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .parent {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .div1,
  .div2 {
    grid-column: span 1;
  }

  .div2 {
    padding: 10px;
  }

  body {
    padding: 20px;
  }
}

        