/* ===========================================
   LOOKMOVIE.GROUP — LIGHT CINEMATIC THEME X1
   =========================================== */

body {
  font-family: 'Arial', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* HEADER & FOOTER */
header, footer {
  background: #ffffff;
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* HEADINGS */
h1 {
  color: #D32F2F;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.25);
}
h2 {
  color: #E65100;
  margin: 30px 0 15px;
  text-shadow: 0 0 6px rgba(255, 193, 7, 0.15);
}
h3 {
  color: #212121;
  margin: 20px 0 10px;
}

/* PARAGRAPHS & LISTS */
p {
  line-height: 1.7;
  margin: 15px 0;
  color: #333;
}
ul {
  margin: 15px 0;
  padding-left: 20px;
}
hr {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* LINKS */
a {
  color: #D32F2F;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: #FFC107;
  text-shadow: 0 0 6px rgba(255, 193, 7, 0.6);
}
a:focus {
  outline: 2px solid #FFC107;
  outline-offset: 2px;
}

/* ===== LOGO TEXT ===== */
.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #FFC107, #D32F2F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
  text-decoration: none;
  animation: glow-pulse 2.5s infinite alternate;
}
.text-logo::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #D32F2F;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.6));
}

/* LOGO ANIMATION */
@keyframes glow-pulse {
  from { text-shadow: 0 0 6px rgba(255,193,7,0.3); }
  to { text-shadow: 0 0 16px rgba(255,193,7,0.8), 0 0 24px rgba(211,47,47,0.6); }
}

/* NAVIGATION */
nav ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
nav li {
  display: inline;
}
nav a {
  color: #1c1c1c;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.25s ease;
}
nav a:hover {
  background: linear-gradient(90deg, #FFC107, #D32F2F);
  color: #fff;
  box-shadow: 0 0 12px rgba(255,193,7,0.5);
  transform: translateY(-2px);
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255,193,7,0.3);
}

/* ===== RED BUTTON (MODERN GLOW) ===== */
.btn-red {
  display: inline-block;
  background: linear-gradient(145deg, #D32F2F, #B71C1C);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(211, 47, 47, 0.4);
}
.btn-red:hover {
  background: linear-gradient(145deg, #E53935, #C62828);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,193,7,0.5), 0 0 8px rgba(211,47,47,0.4);
}
.btn-red:focus {
  outline: 3px solid #FFC107;
  outline-offset: 2px;
}

/* ===== VIEW FULL BUTTON ===== */
#view-full {
  text-align: center;
  margin: 35px 0;
}
#view-full [data-vbtn] {
  display: inline-block;
  margin: 0 auto;
  background: linear-gradient(90deg, #FFC107, #D32F2F);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 35px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  position: relative;
  box-shadow: 0 0 12px rgba(255,193,7,0.3);
}
#view-full [data-vbtn]::after {
  content: "\27A3";
  font-size: 24px;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s ease;
}
#view-full [data-vbtn]:hover {
  background: linear-gradient(90deg, #FFD54F, #E53935);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255,193,7,0.5), 0 0 10px rgba(211,47,47,0.5);
}
#view-full [data-vbtn]:hover::after {
  transform: translateX(4px);
}
#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(255,193,7,0.25);
}

/* ===== FOOTER ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #D32F2F;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-links a:hover {
  color: #FFC107;
  text-shadow: 0 0 6px rgba(255,193,7,0.6);
}
.footer-copy {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
