/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #fff;
  --accent: #ff2323;
  --bg: #0a0a0a;
  --text: #fff;
  --white: #fff;
  --shadow: 0 8px 32px rgba(0,0,0,0.32);
  --glass-bg: rgba(20,20,20,0.55);
  --glass-dark: rgba(0,0,0,0.72);
  --glass-blur: blur(24px);

  /* Navigation specific */
  --nav-glass: rgba(20,20,20,0.55);
  --nav-blur: blur(18px);
  --nav-shadow: 0 8px 32px rgba(0,0,0,0.22);
  --nav-radius: 18px;
  --nav-text: #fff;
}

/* ========== BASE BODY ========== */
body {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #ff2323 0%, #000 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.5px;
}

/* ========== GLASSY CONTAINERS ========== */
header,
nav,
.hero,
.video-card,
.artist-card,
.video-item,
.gallery,
.about,
.contact,
.social-media,
.footer-modern {
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

/* ========== NAVIGATION ========== */
nav {
  background: var(--nav-glass);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  box-shadow: var(--nav-shadow);
  border-bottom: 2.5px solid var(--accent);
  border-radius: 0 0 var(--nav-radius) var(--nav-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 72px;
  position: relative;
  z-index: 100;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
nav .logo {
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--nav-text);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
  transition: color 0.2s;
  user-select: none;
}
nav .logo span {
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(255,35,35,0.32);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav ul li {
  position: relative;
}
nav ul li a,
nav .dropbtn {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
}
nav ul li a:hover,
nav .dropbtn:hover,
nav ul li a:focus,
nav .dropbtn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,35,35,0.18);
}
nav .dropdown-content {
  display: none;
  position: absolute;
  background: var(--nav-glass);
  min-width: 180px;
  box-shadow: 0 4px 18px rgba(255,35,35,0.13);
  z-index: 1000;
  border-radius: 12px;
  margin-top: 8px;
  left: 0;
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border: 1.5px solid rgba(255,255,255,0.08);
}
nav .dropdown:hover .dropdown-content,
nav .dropdown:focus-within .dropdown-content {
  display: block;
}
nav .dropdown-content li a {
  display: block;
  padding: 12px 20px;
  color: var(--nav-text);
  border-radius: 0;
  font-weight: 500;
  background: none;
}
nav .dropdown-content li a:hover,
nav .dropdown-content li a:focus {
  background: var(--accent);
  color: #fff;
}
.nav-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7em 1.7em;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.08em;
  cursor: pointer;
  margin-left: 32px;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-btn:hover,
.nav-btn:focus {
  background: #d90000;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  color: var(--white);
  padding: 3rem 5vw 5rem 5vw;
  margin: 2rem auto;
  max-width: 1200px;
  overflow: hidden;
  z-index: 1;
  background: var(--glass-dark);
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('/images/hero-background.jpg') center center/cover no-repeat;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(18px);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero h1 {
  font-size: 3.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2.5px;
  text-shadow: 0 2px 16px rgba(255,35,35,0.22);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  border: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1.5px;
}
.cta-btn:hover {
  background: #d90000;
  color: #fff;
}

/* ========== MAIN CONTENT ========== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5vw;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
}

/* ========== VIDEO CARDS ========== */
.featured .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.video-card {
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--glass-bg);
  box-shadow: 0 4px 16px rgba(255,35,35,0.10);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(255,35,35,0.22);
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
  border-radius: 14px 14px 0 0;
}
.video-info {
  padding: 1rem;
}
.video-info h3 {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== ARTIST CARDS ========== */
.artists .artist-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.artist-card {
  padding: 1.2rem 1rem;
  text-align: center;
  width: 140px;
  border: 2px solid #222;
  background: var(--glass-bg);
  transition: box-shadow 0.2s, border 0.2s;
}
.artist-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent);
}
.artist-card img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin-bottom: 0.7rem;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.artist-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

/* ========== VIDEO LIST ========== */
.videos .video-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.video-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--accent);
  background: var(--glass-bg);
  transition: box-shadow 0.2s;
}
.video-item:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
}
.video-item iframe {
  width: 100%;
  height: 120px;
  border: none;
  display: block;
  border-radius: 14px;
}

/* ========== GALLERY ========== */
.gallery {
  margin: 4rem 0;
  padding: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: var(--glass-bg);
}
.gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-btn {
  border: 2px solid #222;
  padding: 0.6rem 1.5rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  background: var(--glass-bg);
  border-radius: 14px;
}
.gallery-btn.active,
.gallery-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #222;
  border-radius: 14px;
  background: var(--glass-bg);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  border-radius: 14px 14px 0 0;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0 0 14px 14px;
}

/* ========== ABOUT & CONTACT ========== */
.about {
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg);
}
.contact {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: var(--glass-bg);
}
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact form {
  display: flex;
  flex-direction: column;
}
.contact label {
  margin-bottom: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact input, .contact textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-size: 1rem;
  background: var(--glass-bg);
  color: #fff;
}
.contact input:focus, .contact textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  outline: none;
}
.contact button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s;
}
.contact button:hover {
  background: #d90000;
}

/* ========== SOCIAL MEDIA ========== */
.social-media {
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 3rem auto 2rem auto;
  background: var(--glass-bg);
}
.social-media h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--accent);
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--glass-bg);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.12);
}
.social-links svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

/* ========== BUTTONS ========== */
.modern-btn, .show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0 auto;
  padding: 12px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1.5px;
}
.modern-btn:hover, .modern-btn:focus, .show-more-btn:hover, .show-more-btn:focus {
  background: #d90000;
  box-shadow: 0 6px 24px rgba(255, 35, 35, 0.22);
  transform: translateY(-2px) scale(1.04);
}
.modern-btn .icon, .show-more-btn .icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.hide { display: none; }

/* ========== FOOTER ========== */
.footer-modern {
  color: #e0e0e0;
  padding: 40px 0 20px 0;
  font-family: 'Inter', Arial, sans-serif;
  border-top: 4px solid var(--accent);
  border-radius: 18px 18px 0 0;
  background: var(--glass-bg);
}
.footer-modern__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-modern__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-modern__link {
  color: #fff;
  background: var(--glass-bg);
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,35,35,0.08);
}
.footer-modern__link:hover,
.footer-modern__link:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
}
.footer-modern__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-modern__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-modern__label {
  font-size: 14px;
  margin-right: 6px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-modern__newsletter input[type="email"] {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.08);
  font-size: 14px;
  outline: none;
  background: var(--glass-bg);
  color: #fff;
}
.footer-modern__newsletter input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.footer-modern__newsletter button {
  padding: 8px 18px;
  border-radius: 14px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1.5px;
}
.footer-modern__newsletter button:hover {
  background: #d90000;
}
.footer-modern__social {
  display: flex;
  gap: 14px;
}
.footer-modern__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #232323;
  border-radius: 20px;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--accent);
}
input:checked + .slider:before {
  transform: translateX(18px);
}
.toggle-label {
  font-size: 13px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-modern__copyright {
  margin-top: 16px;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-modern__icon {
  color: var(--accent) !important;
  background: rgba(20,20,20,0.55);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  transition: color 0.2s, background 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-modern__icon:hover,
.footer-modern__icon:focus {
  color: #fff !important;
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--glass-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 16px;
    border-radius: 0 0 12px 12px;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 18px;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a,
  nav .dropbtn {
    width: 100%;
    text-align: left;
    padding-left: 24px;
  }
  .nav-btn {
    margin: 16px 0 0 0;
    width: 100%;
  }
  .hero {
    flex-direction: column;
    padding: 2rem 2vw 3rem 2vw;
  }
  main {
    padding: 2rem 2vw;
  }
  .artists .artist-list {
    gap: 1rem;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 0.5rem;
  }
  .footer-modern__container {
    padding: 0 8px;
  }
  .footer-modern__nav,
  .footer-modern__extras {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-modern__newsletter {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .stat-card {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .featured .video-grid {
    grid-template-columns: 1fr;
  }
  .artists .artist-list {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .gallery-item img {
    height: 140px;
  }
}

/* ========== SPLASH SCREEN ========== */
.splash-screen {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: linear-gradient(120deg, #ff2323 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  pointer-events: all;
  /* Glass effect */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.splash-content {
  text-align: center;
  color: var(--white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 2.5em 2em 2em 2em;
  min-width: 320px;
  max-width: 90vw;
  animation: fadeInSplash 1s;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
@keyframes fadeInSplash {
  from { opacity: 0; transform: translateY(30px);}
  to   { opacity: 1; transform: translateY(0);}
}
.splash-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(255,35,35,0.18);
  margin-bottom: 18px;
  border: 3px solid var(--accent);
  background: #fff;
}
.splash-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
}
.splash-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2em;
  opacity: 0.85;
  color: var(--white);
}
.splash-loader {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.splash-loader span {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
  animation: splash-bounce 1.2s infinite alternate;
  box-shadow: 0 2px 8px rgba(255,35,35,0.18);
}
.splash-loader span:nth-child(2) { animation-delay: 0.2s; }
.splash-loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes splash-bounce {
  0%   { transform: translateY(0);}
  100% { transform: translateY(-18px);}
}

/* ========== PLATFORM STATS ========== */
.platform-stats {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 1rem;
  background: var(--glass-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.stat-card {
  min-width: 140px;
  text-align: center;
  padding: 1.2em 1.5em;
  background: var(--glass-dark);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,35,35,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  margin: 0.5em 0;
}
.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
}
.stat-label {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ========== MULTI SOCIAL VIEW ========== */
.multi-social-view {
  max-width: 1100px;
  margin: 48px auto 0 auto;
  background: #e53935;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,64,67,0.08), 0 1.5px 4px rgba(60,64,67,0.06);
  padding: 32px 32px 24px 32px;
  font-family: 'Roboto', Arial, sans-serif;
}
.multi-social-view h2 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  color: #fff;
}
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.social-card {
  background: #fff;
  border: 1.5px solid #e53935;
  border-top: 4px solid #e53935;
  border-radius: 12px;
  padding: 18px 16px 12px 16px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  box-shadow: 0 1px 4px rgba(229,57,53,0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.social-card:hover {
  box-shadow: 0 4px 16px rgba(229,57,53,0.13);
  border-color: #b71c1c;
}
.social-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.social-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #e53935;
}
.social-name {
  font-weight: 600;
  font-size: 1em;
  color: #e53935;
  margin-right: 8px;
}
.social-platform img {
  vertical-align: middle;
  margin-left: 2px;
  filter: grayscale(1) brightness(0.7) sepia(1) hue-rotate(-20deg) saturate(6) brightness(1.2);
}
.social-card-content {
  font-size: 1.02em;
  color: #222;
  margin-bottom: 8px;
}
.social-card-content a {
  color: #e53935;
  text-decoration: none;
  font-weight: 500;
}
.social-card-content a:hover {
  text-decoration: underline;
}
.social-preview-img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 1px 4px rgba(229,57,53,0.08);
}
.social-card-footer {
  margin-top: auto;
  font-size: 0.93em;
  color: #e53935;
  padding-top: 8px;
}
.modern-btn.show-more-btn {
  background: #fff;
  color: #e53935;
  border: none;
  padding: 0.7em 2em;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.08em;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(229,57,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  margin-top: 24px;
}
.modern-btn.show-more-btn:hover {
  background: #e53935;
  color: #fff;
}
.modern-btn .btnIcon {
  margin-left: 8px;
  display: inline-block;
}
.modern-btn .arrowIcon {
  vertical-align: middle;
  transition: transform 0.2s;
}
@media (max-width: 900px) {
  .multi-social-view {
    padding: 18px 2vw 12px 2vw;
  }
  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ========== DARK MODE ========== */
body.dark-mode {
  background: #181818;
  color: #f1f1f1;
}
body.dark-mode header,
body.dark-mode nav,
body.dark-mode .footer-modern {
  background: #222;
  color: #f1f1f1;
}
body.dark-mode .video-card,
body.dark-mode .artist-card,
body.dark-mode .gallery-item {
  background: #232323;
  color: #f1f1f1;
}
body.dark-mode .modern-btn,
body.dark-mode .cta-btn {
  background: #333;
  color: #fff;
  border-color: #444;
}
body.dark-mode .footer-modern__newsletter input,
body.dark-mode .footer-modern__newsletter button {
  background: #222;
  color: #fff;
  border-color: #444;
}
body.dark-mode .footer-modern__link {
  color: #f1f1f1;
}
body.dark-mode .footer-modern__toggle .toggle-label {
  color: #f1f1f1;
}

/* ========== SIGNUP MODAL ========== */
.modal {
  display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); justify-content: center; align-items: center;
}
.modal-content {
  background: #fff; padding: 2em 2.5em; border-radius: 10px; max-width: 350px; width: 90%; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: popin .3s;
}
@keyframes popin { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.close {
  position: absolute; right: 18px; top: 12px; font-size: 1.7em; color: #e53935; cursor: pointer;
}
#signupForm input {
  width: 100%; margin: 0.7em 0; padding: 0.8em; border: 1px solid #ddd; border-radius: 5px; font-size: 1em;
}
#signupForm button {
  width: 100%; background: #e53935; color: #fff; border: none; padding: 0.9em; border-radius: 5px;
  font-weight: 700; font-size: 1.1em; cursor: pointer; margin-top: 0.5em;
  transition: background 0.2s;
}
#signupForm button:hover { background: #b71c1c; }
#signupMsg { margin-top: 1em; font-size: 0.98em; }
.state {
  background: #181818;
  color: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}
.state-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.state-item {
  min-width: 120px;
}
.state-number {
  font-size: 2.2em;
  font-weight: 700;
  color: #e53935;
  display: block;
}
.state-label {
  font-size: 1em;
  color: #fff;
  opacity: 0.85;
}
.state-map {
  margin: 0 auto;
  max-width: 600px;
}
.state-map-caption {
  font-size: 0.95em;
  color: #ccc;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .state-summary {
    flex-direction: column;
    gap: 18px;
  }
}
.multi-social-view {
  background: #2a0010; /* very dark maroon */
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(42, 0, 16, 0.25);
  padding: 32px 24px;
  margin: 32px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.multi-social-view h2,
.multi-social-view h2 span {
  color: #fff;
}

.social-card {
  background: rgba(255, 255, 255, 0.18); /* glassy white */
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(42, 0, 16, 0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; /* white text for contrast */
}

.social-card a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.social-card-header .social-name {
  color: #fff;
  font-weight: bold;
}

.modern-btn.show-more-btn {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(42, 0, 16, 0.15);
  padding: 12px 32px;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.modern-btn.show-more-btn:hover {
  background: #fff;
  color: #2a0010;
}
.multi-social-view {
  background: radial-gradient(ellipse at 20% 20%, #3a1a1a 0%, #1a0a0a 100%);
  color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Galaxy stars effect */
.multi-social-view::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background: 
    url('https://www.transparenttextures.com/patterns/stardust.png') repeat,
    linear-gradient(120deg, rgba(80,20,20,0.2) 0%, rgba(40,10,10,0.5) 100%);
  opacity: 0.5;
}

/* Make sure all text is white */
.multi-social-view,
.multi-social-view * {
  color: #fff !important;
}

/* Card styling */
.social-card {
  background: rgba(60, 20, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(80,20,20,0.25);
  margin: 16px 0;
  padding: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s;
}
.social-card:hover {
  box-shadow: 0 8px 32px 0 rgba(120,40,40,0.4);
}

/* Header and avatar */
.social-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.social-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid #fff;
}
.social-name {
  font-weight: bold;
  margin-right: 8px;
}
.social-platform img {
  filter: brightness(0) invert(1);
}

/* Card content */
.social-card-content p, .social-card-content a, .social-card-content strong {
  color: #fff !important;
}
.social-card-content a {
  text-decoration: underline;
  color: #ffb3b3 !important;
}
.social-preview-img {
  margin-top: 12px;
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.3);
}

/* Card footer */
.social-card-footer {
  margin-top: 16px;
  font-size: 0.95em;
  opacity: 0.7;
}

/* Button styling */
.modern-btn {
  background: linear-gradient(90deg, #a33a3a 0%, #3a1a1a 100%);
  color: #fff !important;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(80,20,20,0.2);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
  position: relative;
}
.modern-btn:hover {
  background: linear-gradient(90deg, #d94f4f 0%, #4a1a1a 100%);
  box-shadow: 0 4px 24px 0 rgba(200,80,80,0.3);
}
/* Glassy Simple Theme for State Section */
.state {
  background: linear-gradient(120deg, #e0e7ef 0%, #f8fafc 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  border-radius: 24px;
  margin: 40px 0;
  backdrop-filter: blur(0px);
}

.state h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222e3a;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.state-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 44px;
}

.state-item {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(200, 220, 255, 0.25);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 41, 59, 0.07);
  padding: 28px 22px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s, transform 0.2s;
}

.state-item:hover {
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.state-number {
  font-size: 2rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(59, 130, 246, 0.08);
}

.state-label {
  font-size: 1rem;
  color: #475569;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.state-map {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.state-map img {
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.10);
  margin-bottom: 12px;
  border: 1px solid rgba(200, 220, 255, 0.18);
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.state-map-caption {
  font-size: 0.98rem;
  color: #334155;
  background: rgba(255,255,255,0.45);
  padding: 8px 20px;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(30, 41, 59, 0.04);
  max-width: 600px;
  border: 1px solid rgba(200, 220, 255, 0.13);
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .state-summary {
    gap: 16px;
  }
  .state-item {
    min-width: 110px;
    padding: 18px 8px;
  }
  .state-map img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .state-summary {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .state {
    padding: 32px 0 18px 0;
  }
  .state h2 {
    font-size: 1.3rem;
  }
}
.state-metrics {
  background: #111;
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.state-metrics__title {
  font-size: 2em;
  margin-bottom: 32px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.state-metrics__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
}

.state-metrics__item {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
}

.state-metrics__value {
  display: block;
  font-size: 2.5em;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: #e53935;
}

.state-metrics__label {
  display: block;
  font-size: 1.1em;
  margin-top: 8px;
  letter-spacing: 1px;
}
.artist-spotlight, .community, .faq {
  background: #181818;
  color: #fff;
  padding: 48px 0;
  margin: 0 0 32px 0;
}
.spotlight-card {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.spotlight-img {
  width: 160px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.spotlight-info h3 { margin-top: 0; }
.testimonials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial {
  background: #222;
  border-radius: 8px;
  padding: 24px;
  max-width: 320px;
  font-style: italic;
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { margin-bottom: 24px; }
.faq-item h4 { margin-bottom: 8px; color: #e53935; }
.events-list { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.event-card { background: #232323; border-radius: 10px; padding: 24px; min-width: 260px; max-width: 340px; color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.12);}
.event-card h3 { color: #e53935; margin-top: 0; }
.playlist { background: #181818; color: #fff; padding: 48px 0; }
.playlist-embed { max-width: 600px; margin: 0 auto; }
.press { background: #222; color: #fff; padding: 48px 0; text-align: center; }
.press-logos { display: flex; gap: 32px; justify-content: center; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.press blockquote { font-style: italic; color: #e53935; margin: 0 auto; max-width: 600px; }
.newsletter-highlight { background: #e53935; color: #fff; padding: 48px 0; text-align: center; }
.newsletter-benefits { list-style: none; padding: 0; margin: 0 0 24px 0; }
.newsletter-benefits li { margin: 8px 0; font-size: 1.1em; }
.newsletter-form input[type="email"] { padding: 10px; border-radius: 5px 0 0 5px; border: none; width: 220px; }
.newsletter-form button { padding: 10px 18px; border-radius: 0 5px 5px 0; border: none; background: #fff; color: #e53935; font-weight: bold; cursor: pointer; }
section {
  margin-bottom: 56px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.events {
  background: #181818;
  color: #fff;
  padding: 48px 0;
}
.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}
.event-card {
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  padding: 24px 20px 32px 20px;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s;
}
.event-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(229,57,53,0.18);
}
.event-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
  height: 120px;
}
.event-card h3 {
  color: #e53935;
  margin: 12px 0 8px 0;
  font-size: 1.2em;
}
.event-card p {
  font-size: 1em;
  margin-bottom: 18px;
  color: #eee;
}
.event-card .modern-btn {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 1em;
}
.event-card .modern-btn:hover {
  background: #b71c1c;
}
@media (max-width: 900px) {
  .events-list { flex-direction: column; align-items: center; }
  .event-card { max-width: 90vw; }
}
section {
  margin-bottom: 64px;   /* Adds space below every section */
}

section:last-of-type {
  margin-bottom: 0;      /* Removes space after the last section */
}
.faq,
.playlist,
.press,
.newsletter-highlight {
  margin-bottom: 56px; /* or 64px, or any value you like */
}
.vevo-playlist {
  background: #111;
  color: #fff;
  padding: 48px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(255,35,35,0.10);
}
.vevo-playlist h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.vevo-playlist-embed {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,35,35,0.13);
}
.vevo-playlist iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
@media (max-width: 700px) {
  .vevo-playlist-embed {
    max-width: 98vw;
  }
  .vevo-playlist iframe {
    height: 180px;
  }
}
.promo-pricing {
  background: #181818;
  color: #fff;
  padding: 56px 0 32px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
}
.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 0 0;
}
.pricing-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255,35,35,0.10);
  padding: 32px 24px 40px 24px;
  width: 320px;
  max-width: 95vw;
  text-align: left;
  position: relative;
  border: 2px solid #222;
  transition: box-shadow 0.2s, border 0.2s;
}
.pricing-card.popular {
  border: 2.5px solid var(--accent, #ff2323);
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
}
.pricing-card .badge {
  position: absolute;
  top: -18px;
  right: 18px;
  background: var(--accent, #ff2323);
  color: #fff;
  font-size: 0.95em;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  letter-spacing: 1px;
}
.pricing-card h3 {
  margin: 0 0 12px 0;
  color: var(--accent, #ff2323);
  font-size: 1.3em;
  font-weight: 900;
  text-transform: uppercase;
}
.pricing-card .price {
  font-size: 2.1em;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
}
.pricing-card .price span {
  color: var(--accent, #ff2323);
  font-size: 1.2em;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #fff;
  opacity: 0.92;
}
.promo-faq {
  background: #222;
  color: #fff;
  padding: 48px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
}
.promo-faq h2 {
  color: #fff;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  margin-bottom: 24px;
}
.faq-item h4 {
  margin-bottom: 8px;
  color: var(--accent, #ff2323);
}
.promo-contact {
  background: #181818;
  color: #fff;
  padding: 48px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
}
.promo-contact h2 {
  color: #fff;
}
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #bbb;
  font-size: 1em;
  background: var(--glass-bg, rgba(20,20,20,0.55));
  color: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent, #ff2323);
  outline: none;
}
.contact-form button {
  background: var(--accent, #ff2323);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #b71c1c;
}
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .pricing-card {
    width: 95vw;
    max-width: 340px;
  }
}
.community-join-section {
  background: #181818;
  color: #fff;
  padding: 56px 0 32px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(255,35,35,0.10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.community-join-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.community-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  font-size: 1.1em;
}
.community-benefits li {
  margin: 10px 0;
  text-align: left;
  color: #fff;
  font-weight: 500;
  padding-left: 1.2em;
  position: relative;
}
.community-join-form {
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.community-join-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #bbb;
  font-size: 1em;
  background: var(--glass-bg, rgba(20,20,20,0.55));
  color: #fff;
}
.community-join-form input:focus {
  border-color: var(--accent, #ff2323);
  outline: none;
}
.community-join-form button {
  background: var(--accent, #ff2323);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.community-join-form button:hover {
  background: #b71c1c;
}
#communityJoinMsg {
  color: #fff;
  margin-top: 12px;
  font-size: 1.05em;
}
.community-social {
  background: #222;
  color: #fff;
  padding: 48px 0;
  border-radius: 18px;
  margin-bottom: 56px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.community-social h2 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--accent);
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--glass-bg);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.12);
}
.social-links svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}
@media (max-width: 700px) {
  .community-join-section, .community-social {
    padding: 32px 0 18px 0;
    max-width: 98vw;
  }
  .community-join-form {
    max-width: 98vw;
  }
}
.gallery {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
}
.gallery h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
}
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-btn {
  border: 2px solid #222;
  padding: 0.6rem 1.5rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  background: var(--glass-bg);
  border-radius: 14px;
}
.gallery-btn.active,
.gallery-btn:hover {
  background: #ff2323;
  color: #fff;
  border-color: #ff2323;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #222;
  border-radius: 14px;
  background: var(--glass-bg);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  border-radius: 14px 14px 0 0;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ff2323;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0 0 14px 14px;
}
.modern-btn.show-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0 auto;
  padding: 12px 32px;
  background: #ff2323;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1.5px;
}
.modern-btn.show-more-btn:hover {
  background: #b71c1c;
}
.artists {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
}
.artists h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
}
.artist-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.artist-card {
  padding: 1.2rem 1rem;
  text-align: center;
  width: 140px;
  border: 2px solid #222;
  background: var(--glass-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  margin-bottom: 12px;
}
.artist-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: #ff2323;
  transform: translateY(-6px) scale(1.04);
}
.artist-card img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin-bottom: 0.7rem;
  object-fit: cover;
  border: 2px solid #ff2323;
  background: #fff;
}
.artist-card h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}
.modern-btn.show-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0 auto;
  padding: 12px 32px;
  background: #ff2323;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1.5px;
}
.modern-btn.show-more-btn:hover {
  background: #b71c1c;
}
@media (max-width: 900px) {
  .artist-list {
    gap: 1rem;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .artist-list {
    flex-direction: column;
    align-items: center;
  }
}
.events {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  color: #fff;
  padding: 56px 0 40px 0;
  border-radius: 24px;
  margin-bottom: 56px;
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
}
.events h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
}
.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}
.event-card {
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  padding: 24px 20px 32px 20px;
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.event-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(229,57,53,0.18);
}
.event-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
  height: 120px;
}
.event-card h3 {
  color: #ff2323;
  margin: 12px 0 8px 0;
  font-size: 1.2em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-card p {
  font-size: 1em;
  margin-bottom: 18px;
  color: #eee;
}
.event-card .modern-btn {
  background: #ff2323;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-card .modern-btn:hover {
  background: #b71c1c;
}
.modern-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0 auto;
  padding: 12px 32px;
  background: #ff2323;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1.5px;
}
.modern-btn:hover {
  background: #b71c1c;
}
@media (max-width: 900px) {
  .events-list { flex-direction: column; align-items: center; }
  .event-card { max-width: 90vw; }
}
.multi-social-view {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  padding: 48px 0 32px 0;
  margin: 48px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.multi-social-view h2 {
  font-family: 'Montserrat',sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.social-card {
  background: var(--glass-bg, rgba(60, 20, 20, 0.85));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(80,20,20,0.25);
  margin: 16px 0;
  padding: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.social-card:hover {
  box-shadow: 0 8px 32px 0 rgba(120,40,40,0.4);
}
.social-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.social-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #ff2323;
}
.social-name {
  font-weight: 600;
  font-size: 1em;
  color: #ff2323;
  margin-right: 8px;
}
.social-platform img {
  vertical-align: middle;
  margin-left: 2px;
  filter: grayscale(1) brightness(0.7) sepia(1) hue-rotate(-20deg) saturate(6) brightness(1.2);
}
.social-card-content {
  font-size: 1.02em;
  color: #fff;
  margin-bottom: 8px;
}
.social-card-content a {
  color: #ffb3b3;
  text-decoration: underline;
  font-weight: 500;
}
.social-card-content a:hover {
  text-decoration: underline;
  color: #fff;
}
.social-preview-img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 1px 4px rgba(229,57,53,0.08);
}
.social-card-footer {
  margin-top: auto;
  font-size: 0.93em;
  color: #ff2323;
  padding-top: 8px;
}
.modern-btn.show-more-btn {
  background: #ff2323;
  color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(42, 0, 16, 0.15);
  padding: 12px 32px;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.modern-btn.show-more-btn:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 900px) {
  .multi-social-view {
    padding: 18px 2vw 12px 2vw;
  }
  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.artist-spotlight.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.artist-spotlight h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.spotlight-card {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  padding: 32px 24px;
  border: 2px solid #222;
  transition: box-shadow 0.2s, border 0.2s;
}

.spotlight-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
}

.spotlight-img-wrap {
  flex-shrink: 0;
}

.spotlight-img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border: 3px solid var(--accent, #ff2323);
  background: #fff;
}

.spotlight-info h3 {
  margin-top: 0;
  color: var(--accent, #ff2323);
  font-size: 1.3em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spotlight-info p {
  color: #e0e0e0;
  margin-bottom: 1.2em;
  font-size: 1.08em;
}

@media (max-width: 700px) {
  .spotlight-card {
    flex-direction: column;
    align-items: center;
    padding: 24px 10px;
    gap: 18px;
  }
  .spotlight-img {
    width: 100px;
    height: 100px;
  }
}
.community.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.community.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.community-testimonials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.community-testimonial-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 32px 24px;
  max-width: 320px;
  min-width: 220px;
  color: #fff;
  font-style: italic;
  font-size: 1.08em;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  margin-bottom: 12px;
}

.community-testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
  transform: translateY(-6px) scale(1.04);
}

.community-testimonial-card span {
  display: block;
  margin-top: 18px;
  color: #ffb3b3;
  font-style: normal;
  font-size: 0.98em;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .community-testimonials {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .community-testimonial-card {
    max-width: 98vw;
    min-width: 0;
    padding: 24px 12px;
  }
}
.vevo-playlist.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.vevo-playlist.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vevo-playlist-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 32px 24px 24px 24px;
  max-width: 700px;
  margin: 0 auto;
  transition: box-shadow 0.2s, border 0.2s;
}

.vevo-playlist-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
}

.vevo-playlist-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,35,35,0.13);
  margin-bottom: 18px;
}

.vevo-playlist-embed iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.vevo-playlist-actions {
  margin-top: 12px;
}

@media (max-width: 700px) {
  .vevo-playlist-card {
    padding: 18px 4px 16px 4px;
    max-width: 98vw;
  }
  .vevo-playlist-embed iframe {
    height: 180px;
  }
}
.faq.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.faq.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 32px 24px;
  color: #fff;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}

.faq-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
  transform: translateY(-4px) scale(1.03);
}

.faq-card h4 {
  margin-bottom: 10px;
  color: var(--accent, #ff2323);
  font-size: 1.15em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-card p {
  color: #e0e0e0;
  font-size: 1.08em;
}

.faq-card a {
  color: #ffb3b3;
  text-decoration: underline;
  font-weight: 500;
}

.faq-card a:hover {
  color: #fff;
}

@media (max-width: 700px) {
  .faq-card {
    padding: 20px 10px;
  }
}
.state-metrics.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.state-metrics.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.state-metrics-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.state-metrics-card {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 32px 18px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}

.state-metrics-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
  transform: translateY(-6px) scale(1.04);
}

.state-metrics-value {
  font-size: 2.5em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e53935;
}

.state-metrics-label {
  font-size: 1.1em;
  margin-top: 8px;
  letter-spacing: 1px;
  color: #fff;
}

@media (max-width: 700px) {
  .state-metrics-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .state-metrics-card {
    width: 98vw;
    min-width: 0;
    padding: 24px 10px;
  }
}
.about.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.about.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 32px 24px;
  color: #fff;
  font-size: 1.15em;
  margin: 0 auto;
  max-width: 600px;
}

@media (max-width: 700px) {
  .about-card, .about.glassy-section {
    padding: 24px 8px;
    max-width: 98vw;
  }
}
.social-media.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.social-media.glassy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 18px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--accent, #ff2323);
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--glass-bg, rgba(20,20,20,0.55));
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent, #ff2323);
  color: #fff;
  border-color: var(--accent, #ff2323);
  transform: scale(1.12);
}

.social-links svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

@media (max-width: 700px) {
  .social-media.glassy-section {
    padding: 24px 8px;
    max-width: 98vw;
  }
  .social-links {
    gap: 1rem;
  }
}
.vevo-playlists.glassy-section {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 24px;
  padding: 56px 0 40px 0;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}

.vevo-playlists h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vevo-playlists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.vevo-playlist-card {
  background: var(--glass-bg, rgba(20,20,20,0.55));
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  border: 2px solid #222;
  padding: 24px 18px 18px 18px;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
}

.vevo-playlist-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: var(--accent, #ff2323);
}

.vevo-playlist-card h3 {
  color: var(--accent, #ff2323);
  font-size: 1.15em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.vevo-playlist-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,35,35,0.13);
  margin-bottom: 14px;
}

.vevo-playlist-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

.vevo-playlist-actions {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .vevo-playlists-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .vevo-playlist-card {
    max-width: 98vw;
    min-width: 0;
    padding: 18px 6px 12px 6px;
  }
}
.community-v2 {
  background: linear-gradient(120deg, #ff2323 0%, #1a1a2e 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  padding: 64px 0 48px 0;
  margin: 0 auto 64px auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.community-v2 h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(255,35,35,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.community-v2-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.community-v2-card {
  background: rgba(255,255,255,0.10);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(255,35,35,0.10);
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  min-width: 220px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2.5px solid rgba(255,255,255,0.13);
}

.community-v2-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.22);
  transform: translateY(-6px) scale(1.04);
  border-color: #fff;
}

.community-v2-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(255,35,35,0.18);
  background: #fff;
}

.community-v2-quote p {
  font-size: 1.13em;
  font-style: italic;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.5;
}

.community-v2-quote span {
  color: #ffd6d6;
  font-style: normal;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  text-align: center;
}

.community-v2-cta {
  text-align: center;
  margin-top: 24px;
}

.community-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff2323 0%, #ff6b6b 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 16px 38px;
  font-size: 1.18em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.community-v2-btn:hover {
  background: linear-gradient(90deg, #ff6b6b 0%, #ff2323 100%);
  box-shadow: 0 8px 32px rgba(255,35,35,0.22);
  transform: translateY(-2px) scale(1.04);
}
.community-v2-btn svg {
  vertical-align: middle;
  margin-left: 4px;
}

@media (max-width: 700px) {
  .community-v2-cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .community-v2-card {
    max-width: 98vw;
    min-width: 0;
    padding: 24px 12px;
  }
  .community-v2 {
    padding: 32px 0 24px 0;
    max-width: 98vw;
  }
}
.hidden-hashtags {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
<style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .watermark-section {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 56px 0 32px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .watermark-section h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.1rem;
      color: #fff;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .watermark-cards {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 32px 0 0 0;
    }
    .watermark-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      padding: 32px 24px 40px 24px;
      width: 320px;
      max-width: 95vw;
      text-align: left;
      position: relative;
      border: 2px solid #222;
      transition: box-shadow 0.2s, border 0.2s;
    }
    .watermark-card.popular {
      border: 2.5px solid #ff2323;
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
    }
    .watermark-card .badge {
      position: absolute;
      top: -18px;
      right: 18px;
      background: #ff2323;
      color: #fff;
      font-size: 0.95em;
      font-weight: 900;
      padding: 6px 16px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(255,35,35,0.10);
      letter-spacing: 1px;
    }
    .watermark-card h3 {
      margin: 0 0 12px 0;
      color: #ff2323;
      font-size: 1.3em;
      font-weight: 900;
      text-transform: uppercase;
    }
    .watermark-card .price {
      font-size: 2.1em;
      font-weight: 900;
      color: #fff;
      margin-bottom: 18px;
    }
    .watermark-card .price span {
      color: #ff2323;
      font-size: 1.2em;
    }
    .watermark-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
    }
    .watermark-card ul li {
      margin-bottom: 10px;
      font-size: 1.05em;
      color: #fff;
      opacity: 0.92;
    }
    .modern-btn {
      background: #ff2323;
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 12px 32px;
      font-size: 1.15rem;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
      cursor: pointer;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      outline: none;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-top: 10px;
    }
    .modern-btn:hover {
      background: #b71c1c;
    }
    .watermark-example {
      margin: 40px auto 0 auto;
      max-width: 600px;
      text-align: center;
    }
    .watermark-example video,
    .watermark-example img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      margin-bottom: 12px;
    }
    .watermark-example .wm-logo {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 80px;
      opacity: 0.85;
      z-index: 2;
      border-radius: 12px;
      background: rgba(255,255,255,0.12);
      padding: 4px 8px;
    }
    .promo-faq {
      background: #222;
      color: #fff;
      padding: 48px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .promo-faq h2 {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      margin-bottom: 24px;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
    }
    .faq-list {
      max-width: 700px;
      margin: 0 auto;
      text-align: left;
    }
    .faq-item {
      margin-bottom: 24px;
    }
    .faq-item h4 {
      margin-bottom: 8px;
      color: #ff2323;
    }
    .promo-contact {
      background: #181818;
      color: #fff;
      padding: 48px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .promo-contact h2 {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      margin-bottom: 24px;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
    }
    .contact-form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      border-radius: 8px;
      border: 1.5px solid #bbb;
      font-size: 1em;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #ff2323;
      outline: none;
    }
    .contact-form button {
      background: #ff2323;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .contact-form button:hover {
      background: #b71c1c;
    }
    @media (max-width: 900px) {
      .watermark-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
      }
      .watermark-card {
        width: 95vw;
        max-width: 340px;
      }
    }
    @media (max-width: 600px) {
      .hero {
        padding: 48px 0 32px 0;
      }
      .hero h1 {
        font-size: 2em;
      }
      .watermark-section {
        padding: 32px 0 18px 0;
      }
      .promo-faq, .promo-contact {
        padding: 24px 0;
      }
    }
  </style>
  <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .hero p {
      font-size: 1.25em;
      max-width: 700px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .section-service {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 56px 0 32px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .section-service h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.1rem;
      color: #fff;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .service-cards {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 32px 0 0 0;
    }
    .service-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      padding: 32px 24px 40px 24px;
      width: 340px;
      max-width: 95vw;
      text-align: left;
      position: relative;
      border: 2px solid #222;
      transition: box-shadow 0.2s, border 0.2s;
    }
    .service-card.popular {
      border: 2.5px solid #ff2323;
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
    }
    .service-card .badge {
      position: absolute;
      top: -18px;
      right: 18px;
      background: #ff2323;
      color: #fff;
      font-size: 0.95em;
      font-weight: 900;
      padding: 6px 16px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(255,35,35,0.10);
      letter-spacing: 1px;
    }
    .service-card h3 {
      margin: 0 0 12px 0;
      color: #ff2323;
      font-size: 1.3em;
      font-weight: 900;
      text-transform: uppercase;
    }
    .service-card .price {
      font-size: 2.1em;
      font-weight: 900;
      color: #fff;
      margin-bottom: 18px;
    }
    .service-card .price span {
      color: #ff2323;
      font-size: 1.2em;
    }
    .service-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
    }
    .service-card ul li {
      margin-bottom: 10px;
      font-size: 1.05em;
      color: #fff;
      opacity: 0.92;
    }
    .modern-btn {
      background: #ff2323;
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 12px 32px;
      font-size: 1.15rem;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
      cursor: pointer;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      outline: none;
      letter-spacing: 1.5px;
      display: inline-block;
      margin-top: 10px;
    }
    .modern-btn:hover {
      background: #b71c1c;
    }
    .service-example {
      margin: 40px auto 0 auto;
      max-width: 700px;
      text-align: center;
    }
    .service-example img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(255,35,35,0.10);
      margin-bottom: 12px;
    }
    .promo-faq {
      background: #222;
      color: #fff;
      padding: 48px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .promo-faq h2 {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      margin-bottom: 24px;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
    }
    .faq-list {
      max-width: 700px;
      margin: 0 auto;
      text-align: left;
    }
    .faq-item {
      margin-bottom: 24px;
    }
    .faq-item h4 {
      margin-bottom: 8px;
      color: #ff2323;
    }
    .promo-contact {
      background: #181818;
      color: #fff;
      padding: 48px 0;
      border-radius: 18px;
      margin-bottom: 56px;
      text-align: center;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .promo-contact h2 {
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      margin-bottom: 24px;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1.5px;
    }
    .contact-form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      border-radius: 8px;
      border: 1.5px solid #bbb;
      font-size: 1em;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #ff2323;
      outline: none;
    }
    .contact-form button {
      background: #ff2323;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .contact-form button:hover {
      background: #b71c1c;
    }
    @media (max-width: 900px) {
      .service-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
      }
      .service-card {
        width: 95vw;
        max-width: 340px;
      }
    }
    @media (max-width: 600px) {
      .hero {
        padding: 48px 0 32px 0;
      }
      .hero h1 {
        font-size: 2em;
      }
      .section-service {
        padding: 32px 0 18px 0;
      }
      .promo-faq, .promo-contact {
        padding: 24px 0;
      }
    }
  </style>
   <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .originals-hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .originals-hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .originals-hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .originals-hero .cta-btn {
      background: #ff2323;
      color: #fff;
      font-weight: 900;
      border: none;
      border-radius: 14px;
      padding: 1em 2.5em;
      font-size: 1.15em;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .originals-hero .cta-btn:hover {
      background: #b71c1c;
      color: #fff;
    }
    .originals-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px 32px 16px;
    }
    .originals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2em;
    }
    .original-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.18s, box-shadow 0.18s;
      position: relative;
      border: 2px solid #222;
    }
    .original-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .original-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: filter 0.2s;
    }
    .original-card:hover img {
      filter: brightness(0.92) saturate(1.1);
    }
    .original-card-content {
      padding: 1.5em 1.5em 1.2em 1.5em;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .original-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.3em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .original-card p {
      flex: 1;
      margin-bottom: 1.2em;
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .original-card .modern-btn {
      background: #ff2323;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 0.7em 1.5em;
      font-weight: 900;
      font-size: 1em;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
      align-self: flex-start;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 2px 8px rgba(255,35,35,0.10);
    }
    .original-card .modern-btn:hover {
      background: #b71c1c;
    }
    .about-originals {
      max-width:800px;
      margin:3em auto 0 auto;
      text-align:center;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 32px 24px;
    }
    .about-originals h2 {
      color: #ff2323;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.5em;
      margin-bottom: 0.5em;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1px;
    }
    .about-originals p {
      color: #e0e0e0;
      font-size: 1.08em;
    }
    @media (max-width: 600px) {
      .originals-hero {
        padding: 48px 0 32px 0;
      }
      .originals-hero h1 {
        font-size: 2em;
      }
      .original-card img {
        height: 160px;
      }
      .about-originals {
        padding: 18px 8px;
      }
    }
  </style>
  <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .people-hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .people-hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .people-hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .people-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px 32px 16px;
    }
    .people-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap: 2em;
    }
    .person-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.18s, box-shadow 0.18s;
      position: relative;
      padding-bottom: 1.5em;
      border: 2px solid #222;
    }
    .person-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .person-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-top: 2em;
      margin-bottom: 1em;
      border: 4px solid #fff;
      box-shadow: 0 2px 8px rgba(255,35,35,0.10);
      background: #eee;
    }
    .person-card h3 {
      margin: 0 0 0.3em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.2em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .person-card .role {
      color: #ff2323;
      font-size: 1em;
      font-weight: 700;
      margin-bottom: 0.7em;
      font-family: 'Roboto',sans-serif;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .person-card p {
      color: #e0e0e0;
      font-size: 0.98em;
      font-family: 'Roboto',sans-serif;
      margin: 0 1em 0 1em;
    }
    .person-social {
      margin-top: 1em;
      display: flex;
      gap: 0.7em;
      justify-content: center;
    }
    .person-social a {
      color: #ff2323;
      font-size: 1.2em;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 50%;
      width: 36px;
      height: 36px;
      justify-content: center;
      border: 1.5px solid rgba(255,255,255,0.08);
      box-shadow: 0 2px 8px rgba(255,35,35,0.10);
    }
    .person-social a:hover {
      color: #fff;
      background: #ff2323;
      border-color: #ff2323;
      transform: scale(1.12);
    }
    .about-people {
      max-width:800px;
      margin:3em auto 0 auto;
      text-align:center;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 32px 24px;
    }
    .about-people h2 {
      color: #ff2323;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.5em;
      margin-bottom: 0.5em;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 1px;
    }
    .about-people a {
      color: #ff2323;
      text-decoration: underline;
      font-weight: 700;
    }
    @media (max-width: 600px) {
      .people-hero {
        padding: 48px 0 32px 0;
      }
      .people-hero h1 {
        font-size: 2em;
      }
      .person-card img {
        width: 90px;
        height: 90px;
      }
      .about-people {
        padding: 18px 8px;
      }
    }
  </style>
  <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .adv-hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .adv-hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .adv-hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .adv-hero .cta-btn {
      background: #ff2323;
      color: #fff;
      font-weight: 900;
      border: none;
      border-radius: 14px;
      padding: 1em 2.5em;
      font-size: 1.15em;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .adv-hero .cta-btn:hover {
      background: #b71c1c;
      color: #fff;
    }
    .adv-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px 32px 16px;
    }
    .adv-values {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2em;
      margin-bottom: 3em;
    }
    .adv-value-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 2em 1.5em 1.5em 1.5em;
      text-align: center;
      transition: transform 0.18s, box-shadow 0.18s;
      border: 2px solid #222;
    }
    .adv-value-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .adv-value-card svg {
      margin-bottom: 1em;
      color: #ff2323;
    }
    .adv-value-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.2em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .adv-value-card p {
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .adv-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2em;
      margin: 3em 0 3em 0;
    }
    .adv-stat-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(255,35,35,0.08);
      padding: 2em 2.5em;
      text-align: center;
      min-width: 180px;
      margin: 0.5em 0;
      border: 2px solid #222;
    }
    .adv-stat-number {
      font-size: 2.2em;
      font-weight: 700;
      color: #ff2323;
      font-family: 'Montserrat',sans-serif;
      text-shadow: 0 2px 12px rgba(255,35,35,0.18);
    }
    .adv-stat-label {
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
      margin-top: 0.3em;
    }
    .adv-solutions {
      margin: 3em 0 2em 0;
    }
    .adv-solutions h2 {
      text-align: center;
      margin-bottom: 1.5em;
      font-family: 'Montserrat',sans-serif;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .adv-solutions-list {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2em;
    }
    .adv-solution-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 2em 1.5em 1.5em 1.5em;
      text-align: left;
      transition: transform 0.18s, box-shadow 0.18s;
      border: 2px solid #222;
    }
    .adv-solution-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .adv-solution-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.1em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .adv-solution-card p {
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .adv-contact {
      text-align: center;
      margin: 3em 0 2em 0;
    }
    .adv-contact a {
      background: #ff2323;
      color: #fff;
      border-radius: 14px;
      padding: 1em 2.5em;
      font-weight: 900;
      font-size: 1.1em;
      text-decoration: none;
      transition: background 0.2s;
      display: inline-block;
      margin-top: 1em;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
    }
    .adv-contact a:hover {
      background: #b71c1c;
    }
    @media (max-width: 600px) {
      .adv-hero { padding: 48px 0 32px 0; }
      .adv-hero h1 { font-size: 2em; }
      .adv-stat-card { padding: 1.2em 1em; min-width: 120px; }
      .adv-value-card, .adv-solution-card { padding: 1.2em 1em; }
    }
  </style>
   <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .artist-hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .artist-hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .artist-hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .artist-hero .cta-btn {
      background: #ff2323;
      color: #fff;
      font-weight: 900;
      border: none;
      border-radius: 14px;
      padding: 1em 2.5em;
      font-size: 1.15em;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .artist-hero .cta-btn:hover {
      background: #b71c1c;
      color: #fff;
    }
    .artist-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px 32px 16px;
    }
    .artist-values {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2em;
      margin-bottom: 3em;
    }
    .artist-value-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 2em 1.5em 1.5em 1.5em;
      text-align: center;
      transition: transform 0.18s, box-shadow 0.18s;
      border: 2px solid #222;
    }
    .artist-value-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .artist-value-card svg {
      margin-bottom: 1em;
      color: #ff2323;
    }
    .artist-value-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.2em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .artist-value-card p {
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .artist-benefits {
      margin: 3em 0 2em 0;
    }
    .artist-benefits h2 {
      text-align: center;
      margin-bottom: 1.5em;
      font-family: 'Montserrat',sans-serif;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .artist-benefits-list {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2em;
    }
    .artist-benefit-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      padding: 2em 1.5em 1.5em 1.5em;
      text-align: left;
      transition: transform 0.18s, box-shadow 0.18s;
      border: 2px solid #222;
    }
    .artist-benefit-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .artist-benefit-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.1em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .artist-benefit-card p {
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .artist-contact {
      text-align: center;
      margin: 3em 0 2em 0;
    }
    .artist-contact a {
      background: #ff2323;
      color: #fff;
      border-radius: 14px;
      padding: 1em 2.5em;
      font-weight: 900;
      font-size: 1.1em;
      text-decoration: none;
      transition: background 0.2s;
      display: inline-block;
      margin-top: 1em;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 16px rgba(255,35,35,0.18);
    }
    .artist-contact a:hover {
      background: #b71c1c;
    }
    .artist-faq {
      max-width: 800px;
      margin: 3em auto 2em auto;
    }
    .artist-faq h2 {
      text-align: center;
      color: #ff2323;
      margin-bottom: 1em;
      font-family: 'Montserrat',sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .faq-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .faq-item {
      margin-bottom: 1.5em;
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(255,35,35,0.08);
      padding: 1.2em 1.5em;
      border: 2px solid #222;
    }
    .faq-item h3 {
      margin: 0 0 0.5em 0;
      font-size: 1.05em;
      color: #ff2323;
      font-family: 'Montserrat',sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .faq-item p {
      margin: 0;
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    @media (max-width: 600px) {
      .artist-hero { padding: 48px 0 32px 0; }
      .artist-hero h1 { font-size: 2em; }
      .artist-value-card, .artist-benefit-card, .faq-item { padding: 1.2em 1em; }
    }
  </style>
  <style>
    body {
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      color: #fff;
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .news-hero {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      color: #fff;
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 32px rgba(255,35,35,0.12);
      border-radius: 0 0 24px 24px;
      margin-bottom: 32px;
    }
    .news-hero h1 {
      font-family: 'Montserrat',sans-serif;
      font-size: 2.8em;
      margin-bottom: 0.3em;
      letter-spacing: 2px;
      text-shadow: 0 2px 16px rgba(255,35,35,0.22);
      text-transform: uppercase;
      font-weight: 900;
    }
    .news-hero p {
      font-size: 1.25em;
      max-width: 600px;
      margin: 0 auto 1.5em auto;
      font-family: 'Roboto',sans-serif;
      color: #e0e0e0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.22);
    }
    .news-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 16px 32px 16px;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
      gap: 2em;
    }
    .news-card {
      background: var(--glass-bg, rgba(20,20,20,0.55));
      border-radius: 18px;
      box-shadow: 0 2px 16px rgba(255,35,35,0.10);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.18s, box-shadow 0.18s;
      position: relative;
      min-height: 420px;
      border: 2px solid #222;
    }
    .news-card:hover {
      transform: translateY(-6px) scale(1.025);
      box-shadow: 0 8px 32px rgba(255,35,35,0.18);
      border-color: #ff2323;
    }
    .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: filter 0.2s;
    }
    .news-card-content {
      padding: 1.5em 1.5em 1.2em 1.5em;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .news-card .news-date {
      font-size: 0.95em;
      color: #ff2323;
      margin-bottom: 0.5em;
      font-family: 'Roboto',sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .news-card h3 {
      margin: 0 0 0.5em 0;
      font-family: 'Montserrat',sans-serif;
      font-size: 1.25em;
      color: #ff2323;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .news-card p {
      flex: 1;
      margin-bottom: 1.2em;
      color: #e0e0e0;
      font-size: 1em;
      font-family: 'Roboto',sans-serif;
    }
    .news-card a {
      color: #ff2323;
      font-weight: 900;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.2s;
      margin-top: 0.5em;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .news-card a:hover {
      color: #fff;
      text-decoration: underline;
    }
    @media (max-width: 600px) {
      .news-hero { padding: 48px 0 32px 0; }
      .news-hero h1 { font-size: 2em; }
      .news-card img { height: 120px; }
      .news-card, .news-card-content { padding: 1.2em 1em; }
    }
  </style>
  <style>
    :root {
      --primary: #fff;
      --accent: #ff2323;
      --bg: #0a0a0a;
      --text: #fff;
      --white: #fff;
      --shadow: 0 8px 32px rgba(0,0,0,0.32);
      --glass-bg: rgba(20,20,20,0.55);
      --glass-dark: rgba(0,0,0,0.72);
      --glass-blur: blur(24px);
    }
    body {
      font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
      background: linear-gradient(120deg, #ff2323 0%, #000 100%);
      background-attachment: fixed;
      color: var(--text);
      min-height: 100vh;
      margin: 0;
      padding: 0;
      letter-spacing: 0.5px;
    }
    header {
      background: var(--glass-dark);
      box-shadow: var(--shadow);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-bottom: 2.5px solid var(--accent);
      border-radius: 0 0 18px 18px;
      margin-bottom: 40px;
      position: relative;
      z-index: 10;
    }
    .header-inner {
      max-width: 800px;
      margin: 0 auto;
      padding: 22px 32px;
      display: flex;
      align-items: center;
    }
  /* ==========================================================================
   SINGLE CONSOLIDATED STYLESHEET
   --------------------------------------------------------------------------
   - De-duplicated and merged from all provided parts.
   - Logically sorted for maintainability.
   - Includes all features: glassy containers, interactive elements,
     modals, dark mode, and full responsiveness.
   ========================================================================== */

/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #fff;
  --accent: #ff2323;
  --bg: #0a0a0a;
  --text: #fff;
  --white: #fff;
  --shadow: 0 8px 32px rgba(0,0,0,0.32);
  --glass-bg: rgba(20,20,20,0.55);
  --glass-dark: rgba(0,0,0,0.72);
  --glass-blur: blur(24px);

  /* Navigation specific */
  --nav-glass: rgba(20,20,20,0.55);
  --nav-blur: blur(18px);
  --nav-shadow: 0 8px 32px rgba(0,0,0,0.22);
  --nav-radius: 18px;
  --nav-text: #fff;
}

/* ========== BASE & GLOBAL STYLES ========== */
body {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #ff2323 0%, #000 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  letter-spacing: 0.5px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5vw;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(255,35,35,0.12);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #d90000;
}

section {
  margin-bottom: 64px;
}
section:last-of-type {
  margin-bottom: 0;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--glass-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* ========== LAYOUT: NAVIGATION ========== */
nav {
  background: var(--nav-glass);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  box-shadow: var(--nav-shadow);
  border-bottom: 2.5px solid var(--accent);
  border-radius: 0 0 var(--nav-radius) var(--nav-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 72px;
  position: relative;
  z-index: 100;
}
nav .logo {
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--nav-text);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
  transition: color 0.2s;
  user-select: none;
  text-decoration: none;
}
nav .logo span {
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(255,35,35,0.32);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav ul li a,
nav .dropbtn {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
}
nav ul li a:hover,
nav .dropbtn:hover,
nav ul li a:focus,
nav .dropbtn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,35,35,0.18);
}
nav .dropdown-content {
  display: none;
  position: absolute;
  background: var(--nav-glass);
  min-width: 180px;
  box-shadow: 0 4px 18px rgba(255,35,35,0.13);
  z-index: 1000;
  border-radius: 12px;
  margin-top: 8px;
  left: 0;
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border: 1.5px solid rgba(255,255,255,0.08);
}
nav .dropdown:hover .dropdown-content,
nav .dropdown:focus-within .dropdown-content {
  display: block;
}
nav .dropdown-content li a {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 500;
  background: none;
}

/* ========== LAYOUT: FOOTER ========== */
.footer-modern {
  color: #e0e0e0;
  padding: 40px 0 20px 0;
  font-family: 'Inter', Arial, sans-serif;
  border-top: 4px solid var(--accent);
  border-radius: 18px 18px 0 0;
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1.5px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}
.footer-modern__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-modern__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-modern__link {
  color: #fff;
  background: var(--glass-bg);
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,35,35,0.08);
}
.footer-modern__link:hover,
.footer-modern__link:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
}
.footer-modern__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-modern__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-modern__label {
  font-size: 14px;
  margin-right: 6px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-modern__newsletter input[type="email"] {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.08);
  font-size: 14px;
  outline: none;
  background: var(--glass-bg);
  color: #fff;
}
.footer-modern__newsletter input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.footer-modern__newsletter button {
  padding: 8px 18px;
  border-radius: 14px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1.5px;
}
.footer-modern__newsletter button:hover {
  background: #d90000;
}
.footer-modern__social {
  display: flex;
  gap: 14px;
}
.footer-modern__icon {
  color: var(--accent) !important;
  background: rgba(20,20,20,0.55);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(255,35,35,0.10);
  transition: color 0.2s, background 0.2s, border 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-modern__icon:hover,
.footer-modern__icon:focus {
  color: #fff !important;
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12);
}
.footer-modern__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #232323;
  border-radius: 20px;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--accent);
}
input:checked + .slider:before {
  transform: translateX(18px);
}
.toggle-label {
  font-size: 13px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-modern__copyright {
  margin-top: 16px;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== UTILITY & HELPER CLASSES ========== */
.glassy-section {
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 56px 2vw 48px 2vw;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-title .icon {
  color: var(--accent);
  font-size: 1.2em;
}

.modern-btn, .nav-btn, .cta-btn, .show-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,35,35,0.18);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  letter-spacing: 1.5px;
  text-decoration: none;
}
.modern-btn:hover, .nav-btn:hover, .cta-btn:hover, .show-more-btn:hover,
.modern-btn:focus, .nav-btn:focus, .cta-btn:focus, .show-more-btn:focus {
  background: #d90000;
  box-shadow: 0 6px 24px rgba(255, 35, 35, 0.22);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}
.nav-btn {
  padding: 0.7em 1.7em;
  font-size: 1.08em;
  margin-left: 32px;
}
.cta-btn {
  padding: 1rem 2.5rem;
}

.glassy-card-hover {
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.glassy-card-hover:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255,35,35,0.25);
  border-color: var(--accent);
}

.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,35,35,0.22);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: #d90000;
}

/* ========== MODALS, BANNERS & OVERLAYS ========== */
.splash-screen {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: linear-gradient(120deg, #ff2323 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  pointer-events: all;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.splash-content {
  text-align: center;
  color: var(--white);
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 2.5em 2em 2em 2em;
  min-width: 320px;
  max-width: 90vw;
  animation: fadeInSplash 1s;
}
@keyframes fadeInSplash {
  from { opacity: 0; transform: translateY(30px);}
  to   { opacity: 1; transform: translateY(0);}
}
.splash-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(255,35,35,0.18);
  margin-bottom: 18px;
  border: 3px solid var(--accent);
  background: #fff;
}
.splash-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
}
.splash-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2em;
  opacity: 0.85;
}
.splash-loader {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.splash-loader span {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
  animation: splash-bounce 1.2s infinite alternate;
  box-shadow: 0 2px 8px rgba(255,35,35,0.18);
}
.splash-loader span:nth-child(2) { animation-delay: 0.2s; }
.splash-loader span:nth-child(3) { animation-delay: 0.4s; }
@keyframes splash-bounce {
  0%   { transform: translateY(0);}
  100% { transform: translateY(-18px);}
}

.modal {
  display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5); justify-content: center; align-items: center;
}
.modal-content {
  background: #fff; padding: 2em 2.5em; border-radius: 10px; max-width: 350px; width: 90%; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: popin .3s;
}
@keyframes popin { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.close {
  position: absolute; right: 18px; top: 12px; font-size: 1.7em; color: #e53935; cursor: pointer;
}
#signupForm input {
  width: 100%; margin: 0.7em 0; padding: 0.8em; border: 1px solid #ddd; border-radius: 5px; font-size: 1em;
}
#signupForm button {
  width: 100%; background: #e53935; color: #fff; border: none; padding: 0.9em; border-radius: 5px;
  font-weight: 700; font-size: 1.1em; cursor: pointer; margin-top: 0.5em;
  transition: background 0.2s;
}
#signupForm button:hover { background: #b71c1c; }
#signupMsg { margin-top: 1em; font-size: 0.98em; }

.video-modal {
  position: fixed; z-index: 9999; inset: 0; background: rgba(0,0,0,0.75); display: flex;
  align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-content { position: relative; width: 90%; max-width: 900px; transform: scale(0.8); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.video-modal.active .video-modal-content { transform: scale(1); }
.responsive-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--glass-dark); border-radius: 18px; box-shadow: 0 12px 48px rgba(0,0,0,0.3); border: 1.5px solid rgba(255,255,255,0.08); }
.responsive-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close { position: absolute; top: -45px; right: -15px; width: 40px; height: 40px; background: var(--accent); color: var(--white); border: none; border-radius: 50%; font-size: 1.8rem; font-weight: 300; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(255,35,35,0.22); transition: background 0.2s, transform 0.2s; }
.video-modal-close:hover { background: #d90000; transform: rotate(90deg); }

.cookie-consent-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--nav-glass); backdrop-filter: var(--nav-blur); -webkit-backdrop-filter: var(--nav-blur); box-shadow: 0 -8px 32px rgba(0,0,0,0.22); border-top: 2px solid var(--accent); padding: 1.5rem 2rem; z-index: 10000; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cookie-consent-banner.visible { transform: translateY(0); }
.cookie-text { color: #e0e0e0; font-size: 1.05rem; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.cookie-btn { padding: 0.75rem 1.5rem; border: none; border-radius: 12px; font-size: 1rem; font-weight: 900; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.cookie-btn.accept { background: var(--accent); color: var(--white); box-shadow: 0 2px 8px rgba(255,35,35,0.18); }
.cookie-btn.accept:hover { background: #d90000; }
.cookie-btn.decline { background: var(--glass-bg); color: var(--white); border: 1.5px solid rgba(255,255,255,0.12); }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.1); }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  color: var(--white);
  padding: 3rem 5vw 5rem 5vw;
  margin: 2rem auto;
  max-width: 1200px;
  overflow: hidden;
  z-index: 1;
  background: var(--glass-dark);
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('/images/hero-background.jpg') center center/cover no-repeat;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(18px);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2.5px;
  text-shadow: 0 2px 16px rgba(255,35,35,0.22);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.22);
}

/* ========== CONTENT SECTIONS ========== */
/* --- Featured Videos --- */
.featured .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.video-card {
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--glass-bg);
  box-shadow: 0 4px 16px rgba(255,35,35,0.10);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(255,35,35,0.22);
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
  border-radius: 14px 14px 0 0;
}
.video-info { padding: 1rem; }
.video-info h3 {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
  color: var(--accent);
}

/* --- Artists --- */
.artist-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.artist-card {
  padding: 1.2rem 1rem;
  text-align: center;
  width: 140px;
  border: 2px solid #222;
  background: var(--glass-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,35,35,0.10);
  margin-bottom: 12px;
}
.artist-card:hover {
  box-shadow: 0 8px 32px rgba(255,35,35,0.18);
  border-color: #ff2323;
  transform: translateY(-6px) scale(1.04);
}
.artist-card img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin-bottom: 0.7rem;
  object-fit: cover;
  border: 2px solid #ff2323;
  background: #fff;
}
.artist-card h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

/* --- Gallery --- */
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-btn {
  border: 2px solid #222;
  padding: 0.6rem 1.5rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  background: var(--glass-bg);
  border-radius: 14px;
}
.gallery-btn.active,
.gallery-btn:hover {
  background: #ff2323;
  color: #fff;
  border-color: #ff2323;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid #222;
  border-radius: 14px;
  background: var(--glass-bg);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  border-radius: 14px 14px 0 0;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ff2323;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 0 0 14px 14px;
}

/* --- Multi Social View (Final "Galaxy" Theme) --- */
.multi-social-view {
  background: radial-gradient(ellipse at 20% 20%, #3a1a1a 0%, #1a0a0a 100%);
  color: #fff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,35,35,0.12);
  margin: 48px 0;
}
.multi-social-view::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: url('https://www.transparenttextures.com/patterns/stardust.png') repeat,
              linear-gradient(120deg, rgba(80,20,20,0.2) 0%, rgba(40,10,10,0.5) 100%);
  opacity: 0.5;
}
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding: 0 2rem;
}
.social-card {
  background: rgba(60, 20, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(80,20,20,0.25);
  padding: 20px;
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.social-card:hover {
  box-shadow: 0 8px 32px 0 rgba(120,40,40,0.4);
}
.social-card-header { display: flex; align-items: center; margin-bottom: 12px; }
.social-avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 12px; border: 2px solid #fff; }
.social-name { font-weight: bold; margin-right: 8px; color: #fff; }
.social-platform img { filter: brightness(0) invert(1); vertical-align: middle; }
.social-card-content { font-size: 1.02em; margin-bottom: 8px; }
.social-card-content p, .social-card-content a, .social-card-content strong { color: #fff !important; }
.social-card-content a { text-decoration: underline; color: #ffb3b3 !important; }
.social-card-content a:hover { color: #fff !important; }
.social-preview-img { margin-top: 12px; border-radius: 10px; max-width: 100%; box-shadow: 0 2px 12px 0 rgba(0,0,0,0.3); }
.social-card-footer { margin-top: auto; font-size: 0.95em; opacity: 0.7; padding-top: 8px; color: #ffb3b3;}

/* --- Stats / Metrics --- */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.stat-card {
  min-width: 140px;
  text-align: center;
  padding: 1.2em 1.5em;
  background: var(--glass-dark);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,35,35,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  margin: 0.5em 0;
}
.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 12px rgba(255,35,35,0.18);
}
.stat-label {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* --- Contact Form Section --- */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact-form label {
  margin-bottom: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-size: 1rem;
  background: var(--glass-bg);
  color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  outline: none;
}
.contact-form button {
  padding: 12px;
  font-size: 1.1em;
  margin-top: 0.5em;
}
.form-message {
  padding: 1rem; border-radius: 12px; margin-top: 1rem; font-weight: 700; text-align: center;
}
.form-message.success { background-color: rgba(30, 215, 96, 0.2); color: #1ed760; border: 1px solid #1ed760; }
.form-message.error { background-color: rgba(255, 35, 35, 0.2); color: var(--accent); border: 1px solid var(--accent); }
input:not([type="submit"]):not([type="checkbox"]):invalid { border-color: #ff9494; }
input:not([type="submit"]):not([type="checkbox"]):focus:invalid { border-color: var(--accent); }

/* --- Tour Dates --- */
.tour-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 850px; margin: 0 auto; padding: 0 1rem; }
.tour-item { display: flex; align-items: center; gap: 1.5rem; background: var(--glass-dark); padding: 1.25rem 1.5rem; border-radius: 16px; border: 1.5px solid rgba(255,255,255,0.08); }
.tour-date { flex-shrink: 0; text-align: center; background: var(--accent); color: var(--white); border-radius: 12px; padding: 0.8rem 1rem; width: 80px; box-shadow: 0 2px 8px rgba(255,35,35,0.18); }
.tour-date .month { display: block; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.tour-date .day { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1.1; margin-top: 4px; }
.tour-info { flex-grow: 1; }
.tour-info .venue { font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 0 0 0.25rem 0; }
.tour-info .location { font-size: 1.05rem; color: #e0e0e0; opacity: 0.9; }
.tour-item .modern-btn { margin: 0; padding: 12px 28px; font-size: 1rem; flex-shrink: 0; }

/* --- Discography --- */
.discography-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 0 1rem; }
.album-card { background: var(--glass-dark); border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.08); position: relative; }
.album-art-wrap { position: relative; }
.album-card img { width: 100%; display: block; }
.album-overlay { position: absolute; inset: 0; background: rgba(255, 35, 35, 0.85); display: flex; align-items: center; justify-content: center; gap: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.album-card:hover .album-overlay { opacity: 1; }
.stream-icon { color: var(--white); font-size: 2.5rem; text-decoration: none; transition: transform 0.2s; }
.stream-icon:hover { transform: scale(1.15); }
.album-info { padding: 1.25rem; }
.album-title { font-size: 1.2rem; font-weight: 700; color: var(--white); text-transform: uppercase; margin: 0 0 0.25rem 0; }
.album-year { font-size: 1rem; color: var(--accent); font-weight: 700; }

/* --- Press & Media --- */
.featured-quote { max-width: 700px; margin: 0 auto 3rem auto; text-align: center; }
.featured-quote blockquote { font-size: 1.3rem; font-style: italic; color: #e0e0e0; line-height: 1.6; border-left: 4px solid var(--accent); padding-left: 1.5rem; margin: 0 0 1rem 0; text-align: left; }
.featured-quote cite { font-style: normal; font-weight: 700; color: var(--white); font-size: 1.1rem; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 3rem; filter: brightness(0.8) grayscale(1); }
.press-logos img { max-height: 40px; opacity: 0.7; transition: opacity 0.3s, filter 0.3s; }
.press-logos img:hover { opacity: 1; filter: brightness(1) grayscale(0); }

/* --- Newsletter Signup Section --- */
.newsletter-signup { background: var(--glass-dark); text-align: center; border-top: 4px solid var(--accent); border-bottom: 4px solid var(--accent); padding: 56px 2vw 48px 2vw; }
.newsletter-signup .section-title { margin-bottom: 1rem; }
.newsletter-signup p { font-size: 1.15rem; color: #e0e0e0; max-width: 550px; margin: 0 auto 2rem auto; }
.newsletter-form { display: flex; justify-content: center; gap: 0; max-width: 500px; margin: 0 auto; }
.newsletter-form input[type="email"] { width: 100%; padding: 14px 20px; font-size: 1.1rem; border: 1.5px solid rgba(255,255,255,0.12); border-right: none; border-radius: 14px 0 0 14px; background: var(--glass-bg); color: var(--white); outline: none; }
.newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.newsletter-form button { padding: 14px 28px; border: none; background: var(--accent); color: var(--white); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 0 14px 14px 0; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: #d90000; }

/* ========== DARK MODE ========== */
body.dark-mode {
  background: #181818;
  color: #f1f1f1;
}
body.dark-mode .glassy-section,
body.dark-mode header,
body.dark-mode nav,
body.dark-mode .footer-modern {
  background: #222;
  color: #f1f1f1;
}
body.dark-mode .modern-btn,
body.dark-mode .cta-btn {
  background: #333;
  color: #fff;
  border-color: #444;
}
body.dark-mode .footer-modern__link {
  color: #f1f1f1;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 16px;
    border-radius: 0 0 12px 12px;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 18px;
  }
  nav ul li { width: 100%; }
  nav ul li a,
  nav .dropbtn {
    width: 100%;
    text-align: left;
    padding-left: 24px;
  }
  .nav-btn {
    margin: 16px 0 0 0;
    width: 100%;
  }
  .hero {
    flex-direction: column;
    padding: 2rem 2vw 3rem 2vw;
    text-align: center;
  }
  main {
    padding: 2rem 2vw;
  }
  .artist-list {
    gap: 1rem;
    justify-content: center;
  }
  .multi-social-view, .vevo-playlists-grid {
    padding: 18px 2vw 12px 2vw;
  }
  .social-cards-grid, .vevo-playlists-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .section-title, h2 { font-size: 1.8rem; margin-bottom: 32px; }
  .glassy-section { padding: 40px 1vw 32px 1vw; border-radius: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 0.5rem; }
  .footer-modern__container { padding: 0 8px; }
  .footer-modern__nav, .footer-modern__extras {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-modern__newsletter { flex-direction: column; gap: 6px; align-items: flex-start; }
  .stats-grid { flex-direction: column; gap: 1.2rem; align-items: center; }
  .stat-card { width: 100%; max-width: 320px; }
  .tour-item { flex-direction: column; text-align: center; gap: 1rem; }
  .tour-info { order: -1; }
  .tour-item .modern-btn { width: 100%; }
  .cookie-consent-banner { flex-direction: column; text-align: center; padding: 1.25rem; }
}

@media (max-width: 600px) {
  .featured .video-grid { grid-template-columns: 1fr; }
  .artists .artist-list { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; padding: 0; }
  .gallery-item img { height: 140px; }
  .hero h1 { font-size: 2.2rem; }
  .video-modal-close { top: 10px; right: 10px; }
}



