@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap");

:root {
  /* Color Palette - Based on #E08C00 and #2E3393 */
  --bg-light: #ffffff; /* white background */
  --bg-dark: #1a1d3d; /* dark background for footer */
  --surface-dark: #13142e; /* darker surface */
  --primary: #E08C00; /* Main orange */
  --secondary: #2E3393; /* Main blue */
  --accent: #E08C00; /* Orange accent */
  --text-main: #2c3e50; /* dark text for light background */
  --text-light: #f5f7fa; /* light text for dark backgrounds */
  --text-muted: #6c757d; /* muted text */
  --glass-bg: rgba(255, 255, 255, 0.95); /* glass background */
  --glass-border: rgba(0, 0, 0, 0.1);
  --logo-color: #2E3393; /* logo color in blue */

  /* Footer variations */
  --footer-dark: #1a1d3d; /* Dark variation of #2E3393 */
  --footer-darker: #0f1129; /* Even darker variation */

  /* Spacing */
  --container-max: 1400px;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Floating Music Notes */
.music-note {
  position: fixed; /* Changed from absolute to prevent document height expansion */
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
  animation: float 18s linear infinite;
  bottom: -100px; /* Start below the viewport */
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1,
h2,
h3,
h4,
.font-outfit {
  font-family: "Outfit", sans-serif;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Utility (softened) */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background: linear-gradient(135deg, rgba(46, 51, 147, 0.95) 0%, rgba(46, 51, 147, 0.92) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(224, 140, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: white; /* white on transparent header */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: color 0.3s ease;
}

.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
  text-decoration: none;
  color: white;
}

.logo span {
  color: var(--primary); /* subtitle in orange */
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* Scrolled header - white logo */
header.scrolled .logo,
header.scrolled .logo:link,
header.scrolled .logo:visited,
header.scrolled .logo:hover,
header.scrolled .logo:active {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-trigger {
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.search-trigger:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Scrolled header - white search icon */
header.scrolled .search-trigger {
  color: white;
}

.btn-live {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(224, 140, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* stronger, warmer shimmer */
.btn-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  height: 100%;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 235, 160, 0.18),
    transparent
  );
  transform: skewX(-18deg);
  filter: blur(2px);
  animation: shimmer 3.6s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
}

/* animated glow ring */
.btn-live::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 60px;
  box-shadow: 0 0 0 rgba(192, 130, 42, 0);
  pointer-events: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  animation: ring-glow 5.5s ease-in-out infinite;
}

.btn-live:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(6, 10, 18, 0.26);
}

@keyframes shimmer {
  0% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }
  20% {
    opacity: 0.95;
  }
  50% {
    transform: translateX(30%) skewX(-18deg);
    opacity: 1;
  }
  100% {
    transform: translateX(180%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes breathe {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(6, 10, 18, 0.14);
  }
  50% {
    transform: scale(1.015);
    box-shadow: 0 14px 34px rgba(6, 10, 18, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(6, 10, 18, 0.14);
  }
}

@keyframes ring-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 130, 42, 0.08);
  }
  50% {
    box-shadow: 0 8px 30px 6px rgba(192, 130, 42, 0.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 130, 42, 0);
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-live,
  .btn-live::before,
  .btn-live::after,
  .live-dot,
  .live-dot::before,
  .live-dot::after {
    animation: none !important;
    transition: none !important;
  }
}

.header-actions i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-actions i:hover {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a.active {
  color: var(--primary);
}

/* Scrolled header - white text */
header.scrolled nav ul li a {
  color: white !important;
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li a.active {
  color: var(--primary) !important;
}

.mobile-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-toggle:hover {
  color: var(--primary);
}

/* Scrolled header - white mobile toggle */
header.scrolled .mobile-toggle {
  color: white;
}

/* Dropdown styling */
nav ul li {
  position: relative;
  padding: 10px 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: block; /* Override nav ul flex */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

nav ul li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  padding: 0;
  display: block;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.85rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main) !important;
}

.dropdown-menu li a:hover {
  background: rgba(224, 140, 0, 0.1);
  color: var(--primary) !important;
}

.dropdown-menu li a.active {
  color: var(--primary) !important;
}

/* Scrolled header - dropdown menu styling */
header.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(224, 140, 0, 0.3);
}

header.scrolled .dropdown-menu li a {
  color: var(--text-main) !important;
}

header.scrolled .dropdown-menu li a:hover,
header.scrolled .dropdown-menu li a.active {
  color: var(--primary) !important;
}

.nav-item-has-children > a i {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-item-has-children:hover > a i {
  transform: rotate(180deg);
}

/* WordPress default submenu class */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: block;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

nav ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu li {
  padding: 0;
  display: block;
}

.sub-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.85rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main) !important;
}

.sub-menu li a:hover {
  background: rgba(224, 140, 0, 0.1);
  color: var(--primary) !important;
}

.sub-menu li a.active {
  color: var(--primary) !important;
}

/* Scrolled header - submenu styling */
header.scrolled .sub-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(224, 140, 0, 0.3);
}

header.scrolled .sub-menu li a {
  color: var(--text-main) !important;
}

header.scrolled .sub-menu li a:hover,
header.scrolled .sub-menu li a.active {
  color: var(--primary) !important;
}


/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 51, 147, 0.7) 0%, rgba(224, 140, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 1050px;
  z-index: 5;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  opacity: 1;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
  color: white;
  opacity: 1;
}

.hero-content p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.hero-btns {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary)
  );
  color: white;
  box-shadow: 0 6px 18px rgba(224, 140, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px rgba(224, 140, 0, 0.5);
}

/* News Section Redesign */
.news-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

/* Hero Buttons Container */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-card.featured {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.news-card.featured .news-img {
  height: 350px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card.featured:hover .news-img {
  transform: scale(1.05);
}

.news-card.featured .news-body {
  padding: 35px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card.featured h3 {
  font-size: 2rem;
  margin: 15px 0;
  line-height: 1.25;
  font-weight: 700;
}

.news-card.featured p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 25px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.news-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item-small {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.news-item-small:hover {
  transform: translateX(10px);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.05);
}

.news-item-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.news-item-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-tag-small {
  font-size: 0.7rem;
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.news-meta-small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}

/* Gallery Sections */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Video Gallery Specific */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.video-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.05);
  background: var(--accent);
  transition: transform 0.18s ease;
}

/* Player Bar Refinement (Compact) - softened */
.player-bar {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 650px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 22px rgba(6, 10, 18, 0.28);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1.5;
}

.player-thumb {
  width: 35px;
  height: 35px;
  background: var(--primary);
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&q=80&w=200");
  background-size: cover;
}

.player-text h4 {
  font-size: 0.85rem;
  margin-bottom: 0;
  white-space: nowrap;
}

.player-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 2;
  justify-content: center;
}

.play-btn {
  width: 35px;
  height: 35px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 9px rgba(12, 14, 18, 0.2);
  font-size: 0.9rem;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--accent);
}

.player-progress-container {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin: 0 10px;
}

.player-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%; /* Initial width */
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: width 0.1s linear;
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0.5;
  justify-content: flex-end;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Live Indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224, 140, 0, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  border: 1px solid rgba(224, 140, 0, 0.3);
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(224, 140, 0, 0.3);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(224, 140, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(224, 140, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 140, 0, 0);
  }
}

.text-primary {
  color: var(--primary);
}

/* Sections */
.section {
  padding: 20px 0;
  position: relative;
}

/* Section Divider */
.section-divider {
  padding: 15px 0;
}

.section-divider .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 15%, var(--primary) 50%, var(--secondary) 50%, var(--secondary) 85%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 25px;
}

.section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0;
}

/* Shows Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.show-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.show-card:hover {
  transform: translateY(-10px);
}

.show-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.show-time {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.show-body {
  padding: 25px;
}

.show-body h3 {
  margin-bottom: 10px;
}

.show-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-more {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.member-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 22px rgba(6, 10, 18, 0.12);
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-member p {
  color: var(--text-muted);
}

/* Section Headers with Buttons */
.section-header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 25px;
}

.section-header-flex::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.btn-outline-small {
  padding: 10px 20px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(46, 51, 147, 0.05);
}

.btn-outline-small:hover {
  background: var(--secondary);
  color: white;
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(46, 51, 147, 0.3);
}

/* Professional Photo Gallery (Artistic Grid) */
.photo-artistic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 25px;
  grid-auto-flow: dense;
}

.photo-item-pro {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.photo-item-pro.tall {
  grid-row: span 2;
}
.photo-item-pro.wide {
  grid-column: span 2;
}

.photo-img-pro {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(20%) brightness(0.9);
}

.photo-item-pro:hover .photo-img-pro {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.1);
}

.photo-info-pro {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.photo-item-pro:hover .photo-info-pro {
  transform: translateY(0);
  opacity: 1;
}

.photo-info-pro h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.photo-info-pro p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Refined Video Gallery (Vertical Stack) */
.video-pro-player {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

.video-main-display {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.play-btn-main {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(6, 10, 18, 0.18);
  transition: all 0.3s ease;
  animation: pulse-wave 2.2s infinite;
}

.play-btn-main:hover {
  transform: scale(1.08);
  background: var(--secondary);
  box-shadow: 0 0 30px rgba(46, 51, 147, 0.18);
  animation: none;
}

.video-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.video-thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  overflow: hidden;
  padding: 0 60px;
}

.video-thumbs-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 5px;
  width: 100%;
}

.video-thumbs-slider::-webkit-scrollbar {
  display: none;
}

.thumb-nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.thumb-nav.prev {
  left: 0;
}

.thumb-nav.next {
  right: 0;
}

.thumb-nav:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(224, 140, 0, 0.4);
}

.video-thumb-item-pro {
  min-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.video-thumb-item-pro:hover,
.video-thumb-item-pro.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.thumb-img-pro {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.thumb-info-pro {
  padding: 15px;
}
.thumb-info-pro h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding: 60px;
  border-radius: 32px;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: rgba(46, 51, 147, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 140, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Form checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.checkbox-label .link {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox-label .link:hover {
  color: var(--secondary);
}

/* Google reCAPTCHA */
.g-recaptcha {
  margin: 15px 0;
}

.error-message {
  color: #e74c3c !important;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Form messages */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
  font-size: 0.95rem;
}

.form-message.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Buttons */

/* Buttons */
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: white;
  color: var(--secondary);
  border-color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Player Visualizer Refinement */
.visualizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  padding: 0 10px;
}

.vis-bar {
  width: 4px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 2px;
  animation: bounce 0.8s ease-in-out infinite alternate;
}

/* Footer & Widgets */
.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.widget-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.widget-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.widget-links {
  list-style: none;
}

.widget-links li {
  margin-bottom: 12px;
}

.widget-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget-links li a:hover {
  color: var(--primary);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  padding: 12px 20px;
  font-size: 0.8rem;
}

/* Social Links Refinement */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  color: white;
  border-color: transparent;
}

/* Specific brand colors and glows on hover */
.social-links a:nth-child(1):hover {
  background: #3b5998;
  box-shadow: 0 0 16px rgba(59, 89, 152, 0.34);
} /* Facebook */
.social-links a:nth-child(2):hover {
  background: #1da1f2;
  box-shadow: 0 0 16px rgba(29, 161, 242, 0.34);
} /* Twitter */
.social-links a:nth-child(3):hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 0 16px rgba(214, 36, 159, 0.34);
} /* Instagram */
.social-links a:nth-child(4):hover {
  background: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.34);
} /* YouTube */

footer {
  padding: 0; /* Reset padding for internal sections */
  background: var(--footer-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(224, 140, 0, 0.2);
}

.footer-top {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  background: var(--footer-dark);
}

.footer-bottom {
  padding: 40px 0 100px; /* Reduced padding for more compact player bar clearance */
  background: var(--footer-darker);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  position: relative;
}

.footer-bottom .copyright,
.footer-bottom .logo {
  color: var(--text-light);
}

.footer-bottom .logo span {
  color: var(--primary);
}

@keyframes bounce {
  from {
    height: 5px;
  }
  to {
    height: 25px;
  }
}

/* Responsive */
@media (max-width: 1440px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .news-container {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 29, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 100px 0 50px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .player-bar {
    padding: 10px 15px;
  }
  .section {
    padding: 50px 0;
  }

  .photo-artistic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .photo-item-pro.wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: 80px 0 40px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .photo-artistic-grid {
    grid-template-columns: 1fr;
  }

  .video-thumbs-wrapper {
    gap: 10px;
    padding: 0 50px;
  }
  .video-thumb-item-pro {
    min-width: 160px;
  }

  .contact-grid {
    padding: 20px;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.search-content {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.search-overlay.active .search-content {
  transform: translateY(0);
}

.search-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--glass-border);
  padding: 15px 0;
  font-size: 1.8rem;
  color: white;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input-wrapper input:focus {
  border-bottom-color: var(--primary);
}

.search-btn-pro {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding-left: 20px;
  transition: transform 0.3s ease;
}

.search-btn-pro:hover {
  transform: scale(1.1);
}

.search-hint {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page Header (Sub-pages) */
.page-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
  width: 100%;
}

.page-hero .hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* =========================================
   Blog Redesign (Professional Grid)
   ========================================= */

/* Featured Post Section */
.featured-post-section {
  padding-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: white;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.featured-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-cat-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-color);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

.featured-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-main);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.post-meta i {
  color: var(--primary);
}

.post-excerpt {
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: white;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.blog-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Push content button down */
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}

.read-more-link:hover {
  gap: 12px;
  color: var(--primary);
}

/* =========================================
   Single Post Page Styles
   ========================================= */

.single-post-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax feel */
}

.single-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.3),
    rgba(15, 23, 42, 1)
  );
}

.single-post-header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 0;
}

.single-post-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.single-post-header .post-meta {
  color: rgba(255, 255, 255, 0.8);
}

.single-post-header .post-meta i {
  color: var(--primary);
}

.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.article-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-main);
  background: rgba(224, 140, 0, 0.08);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.drop-cap::first-letter {
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--primary-color);
  font-weight: 700;
}

.author-bio-box {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(224, 140, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(224, 140, 0, 0.2);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--primary);
}

.related-posts {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-img {
    min-height: 300px;
    order: -1;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .single-post-title {
    font-size: 2.5rem;
  }
}

.post-cat-badge {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-tag-small {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary); /* Green for all */
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4rem;
}

.page-link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 2px solid var(--glass-border);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 140, 0, 0.3);
}

.page-dots {
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating Social Menu */
.sfm-floating-menu {
  position: fixed;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sfm-floating-menu.middle-right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sfm-button {
  position: relative;
  width: 42px;
  height: 42px;
}

.sfm-shape-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(46, 51, 147, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.sfm-shape-button:hover {
  background: var(--primary);
  transform: translateX(-8px) scale(1.08);
  color: white;
  box-shadow: 0 6px 18px rgba(224, 140, 0, 0.4);
}

.sfm-tool-tip {
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--secondary);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sfm-tool-tip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--secondary);
}

.sfm-button:hover .sfm-tool-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .sfm-floating-menu {
    display: none;
  }
}

/* =========================================
   Radio Player Bar Styles (Added)
   ========================================= */
.player-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  height: 80px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.player-bar:hover {
  background: rgba(18, 18, 18, 0.95);
  border-color: rgba(46, 51, 147, 0.06);
  box-shadow: 0 12px 30px rgba(6, 10, 18, 0.18);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.player-thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #e66a3c);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.player-thumb::after {
  content: "\f001"; /* fa-music */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.player-text h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.player-text p {
  color: var(--primary);
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.play-btn {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 14px rgba(6, 10, 18, 0.16);
  z-index: 10;
}

.play-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.06);
}

.play-btn:hover i,
.play-btn:hover svg,
.play-btn:hover span {
  color: var(--primary) !important;
}

.play-btn:hover path {
  fill: var(--primary) !important;
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.visualizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.vis-bar {
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
  animation: visualize 0.8s ease-in-out infinite alternate;
}

@keyframes visualize {
  0% {
    height: 5px;
    opacity: 0.5;
  }
  100% {
    height: 20px;
    opacity: 1;
  }
}

.player-volume {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.player-volume:hover {
  color: var(--primary);
}

/* Responsive Player */
@media (max-width: 768px) {
  .player-bar {
    width: 95%;
    padding: 0 15px;
    bottom: 15px;
  }

  .player-info {
    min-width: auto;
  }

  .player-text {
    display: none; /* Hide text on very small screens if needed, or truncate */
  }

  .player-thumb {
    width: 40px;
    height: 40px;
  }

  .play-btn {
    width: 40px;
    height: 40px;
  }
}

/* Animated Wave Divider */
.wave-divider-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

.editorial {
  display: block;
  width: 100%;
  height: 80px;
  max-height: 80px;
  margin: 0;
  position: relative;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}

.parallax1 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}

.parallax2 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}

.parallax3 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}

.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax1 > use,
  .parallax2 > use,
  .parallax3 > use,
  .parallax4 > use {
    animation: none !important;
  }
}

