/* ======================================
   YESMOVIES — PINK GRADIENT THEME X1
   ====================================== */

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

/* HEADER & FOOTER */
header,
footer {
  background: #ffffff;
  text-align: center;
  padding: 25px 20px;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(210, 20, 90, 0.08);
}

/* HEADINGS */
h1 {
  color: #d81b60;
  margin: 0;
  text-shadow: 0 0 6px rgba(216, 27, 96, 0.25);
}
h2 {
  color: #c2185b;
  margin: 30px 0 15px;
  text-shadow: 0 0 5px rgba(210, 20, 90, 0.15);
}
h3 {
  color: #880e4f;
  margin: 20px 0 10px;
}

/* TEXT */
p {
  line-height: 1.6;
  margin: 15px 0;
}
ul {
  margin: 15px 0;
  padding-left: 20px;
}
hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* LINKS */
a {
  color: #c2185b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
a:hover {
  color: #d81b60;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #d81b60;
  outline-offset: 2px;
}

/* LOGO + ICON */
.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #c2185b, #d81b60, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(210, 20, 90, 0.25);
  text-decoration: none;
}
.text-logo::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #d81b60;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 0 4px rgba(216, 27, 96, 0.3));
}

/* NAVIGATION */
nav ul {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
nav li {
  display: inline;
}
nav a {
  color: #c2185b;
  font-weight: 700;
  transition: color 0.25s ease;
}
nav a:hover {
  color: #d81b60;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(216, 27, 96, 0.15);
}

/* PRIMARY BUTTON (MAGENTA GRADIENT) */
.btn-magenta {
  display: inline-block;
  background: linear-gradient(135deg, #c2185b, #d81b60, #e91e63);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.25);
}
.btn-magenta:hover {
  background: linear-gradient(135deg, #e91e63, #f06292);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.35);
}
.btn-magenta:focus {
  outline: 3px solid #c2185b;
  outline-offset: 2px;
}

/* VIEW FULL BUTTON */
#view-full {
  text-align: center;
  margin: 25px 0 35px;
}
#view-full [data-vbtn] {
  display: inline-block;
  margin: 0 auto;
  background: linear-gradient(90deg, #c2185b, #d81b60);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 0 10px rgba(216, 27, 96, 0.25);
}
#view-full [data-vbtn]::after {
  content: "\27A3";
  font-size: 24px;
  margin-left: 10px;
  vertical-align: middle;
}
#view-full [data-vbtn]:hover {
  background: linear-gradient(90deg, #e91e63, #ec407a);
  transform: translateY(-2px);
}
#view-full [data-vbtn]:active {
  transform: translateY(1px);
}
#view-full [data-vbtn]:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(216, 27, 96, 0.15);
}

/* FOOTER */
footer {
  border-top: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: inset 0 1px 12px rgba(216, 27, 96, 0.08);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #c2185b;
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: #d81b60;
}
.footer-copy {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #555;
}
