/* ===========================================
   LOOKSERIES — STREAMING THEME STYLE X1
   =========================================== */

body {
  font-family: 'Arial', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
  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 #e0e0e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* HEADINGS */
h1 {
  color: #512da8; /* deep purple */
  margin: 0;
  text-shadow: 0 0 8px rgba(63,81,181,0.3);
}
h2 {
  color: #3949ab; /* indigo blue */
  margin: 30px 0 15px;
  text-shadow: 0 0 6px rgba(103,58,183,0.25);
}
h3 {
  color: #1A1A1A;
  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 {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* LINKS */
a {
  color: #512da8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: #673ab7;
  text-shadow: 0 0 6px rgba(103,58,183,0.4);
}
a:focus {
  outline: 2px solid #7e57c2;
  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, #3f51b5, #7e57c2, #512da8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(103,58,183,0.5);
  text-decoration: none;
  animation: glow-pulse 3s infinite alternate;
}
.text-logo::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 14px solid #3f51b5;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  filter: drop-shadow(0 0 5px rgba(63,81,181,0.5));
}

@keyframes glow-pulse {
  from { text-shadow: 0 0 6px rgba(103,58,183,0.3); }
  to { text-shadow: 0 0 16px rgba(103,58,183,0.7), 0 0 24px rgba(63,81,181,0.6); }
}

/* NAV MENU */
nav ul {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
nav li { display: inline; }
nav a {
  color: #222;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.25s ease;
}
nav a:hover {
  background: linear-gradient(90deg, #512da8, #7e57c2);
  color: #fff;
  box-shadow: 0 0 12px rgba(103,58,183,0.4);
  transform: translateY(-2px);
}

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

/* ===== PURPLE BUTTON (MODERN GLOW) ===== */
.btn-red {
  display: inline-block;
  background: linear-gradient(135deg, #512da8, #7e57c2);
  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(63,81,181,0.3);
}
.btn-red:hover {
  background: linear-gradient(135deg, #5e35b1, #9575cd);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(103,58,183,0.5);
}
.btn-red:focus {
  outline: 3px solid #7e57c2;
  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, #3f51b5, #7e57c2);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 13px 35px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  box-shadow: 0 0 12px rgba(103,58,183,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, #5e35b1, #9575cd);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(103,58,183,0.5);
}
#view-full [data-vbtn]:hover::after {
  transform: translateX(4px);
}
#view-full [data-vbtn]:focus {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(103,58,183,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: #512da8;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer-links a:hover {
  color: #7e57c2;
  text-shadow: 0 0 6px rgba(103,58,183,0.5);
}
.footer-copy {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
