/* ===========================================
   FMOVIES — X1
   =========================================== */

/* BASE LAYOUT */
body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fdfdfd 0%, #f3f9ff 50%, #e6f3ff 100%);
  color: #1b1b1b;
  overflow-x: hidden;
}

/* HEADER & FOOTER */
header,
footer {
  background: linear-gradient(90deg, #ffffff, #f3f9ff);
  text-align: center;
  padding: 25px 20px;
  border-bottom: 1px solid #dce7f5;
  box-shadow: 0 2px 25px rgba(0, 72, 155, 0.15);
}

/* HEADINGS */
h1 {
  color: #0057b8;
  margin: 0;
  font-size: 2.5rem;
  text-shadow: 0 0 8px rgba(0, 91, 187, 0.3);
}
h2 {
  color: #0074cc;
  margin: 30px 0 15px;
  text-shadow: 0 0 6px rgba(0, 102, 204, 0.25);
}
h3 {
  color: #0d47a1;
  margin: 20px 0 10px;
}

/* PARAGRAPHS & TEXT */
p {
  line-height: 1.7;
  margin: 15px 0;
  color: #2c2c2c;
}
ul {
  margin: 15px 0;
  padding-left: 22px;
}
hr {
  margin: 35px 0;
  border: 0;
  border-top: 1px solid #d9e7f6;
}
.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 115, 230, 0.1);
}

/* LINKS */
a {
  color: #006eff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
a:hover {
  color: #00a2ff;
  text-shadow: 0 0 6px rgba(0, 136, 255, 0.4);
}
a:focus {
  outline: 2px solid #0074cc;
  outline-offset: 3px;
}

/* LOGO + ICON */
.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #006eff, #00b7ff, #33d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(0, 136, 255, 0.4);
  text-decoration: none;
}
.text-logo::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #0074cc;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 0 5px rgba(0, 100, 200, 0.5));
}

/* NAVIGATION */
nav ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
nav li {
  display: inline;
}
nav a {
  color: #0d47a1;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, #0074cc, #00b7ff);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: #0091ea;
  text-shadow: 0 0 6px rgba(0, 136, 255, 0.4);
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 100, 200, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 136, 255, 0.4);
}

/* BUTTONS */
.btn-blue {
  display: inline-block;
  background: linear-gradient(135deg, #006eff, #00b7ff, #33d1ff);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 115, 230, 0.3);
}
.btn-blue:hover {
  background: linear-gradient(135deg, #0085ff, #00caff);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 136, 255, 0.5);
}
.btn-blue:focus {
  outline: 3px solid #0074cc;
  outline-offset: 2px;
}

/* VIEW FULL BUTTON */
#view-full {
  text-align: center;
  margin: 35px 0 40px;
}
#view-full [data-vbtn],
#view-full span {
  display: inline-block;
  margin: 0 auto;
  background: linear-gradient(90deg, #006eff, #00b7ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  box-shadow: 0 0 12px rgba(0, 136, 255, 0.25);
}
#view-full [data-vbtn]::after {
  content: "\27A3";
  font-size: 22px;
  margin-left: 10px;
  vertical-align: middle;
}
#view-full [data-vbtn]:hover {
  background: linear-gradient(90deg, #00a2ff, #33d1ff);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
}
#view-full [data-vbtn]:focus {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0, 140, 255, 0.15);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 115, 230, 0.1);
}
table thead {
  background: linear-gradient(90deg, #0074cc, #00b7ff);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
table thead th {
  padding: 14px 18px;
  text-align: left;
}
table tbody tr:nth-child(even) {
  background: #f4f9ff;
}
table tbody tr:hover {
  background: linear-gradient(90deg, #e9f4ff, #e3f7ff);
  box-shadow: inset 0 0 8px rgba(0, 115, 230, 0.1);
}
table td {
  padding: 14px 18px;
  color: #333;
  border-bottom: 1px solid rgba(0, 115, 230, 0.1);
}

/* FOOTER */
footer {
  border-top: 1px solid #d8e5f5;
  background: linear-gradient(90deg, #ffffff, #f3f9ff);
  box-shadow: inset 0 0 20px rgba(0, 115, 230, 0.08);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #0074cc;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.footer-links a:hover {
  color: #00a2ff;
  text-shadow: 0 0 6px rgba(0, 136, 255, 0.3);
}
.footer-copy {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #555;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  nav ul {
    gap: 14px;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
