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

body.menu-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) #f5f5f5;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

body {
  font-family:
    "Open Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header-moderno {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(var(--color-primary-rgb), 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-moderno.scrolled {
  background: rgba(var(--color-primary-rgb), 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-moderno {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #f8f9fa;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-login {
  background: transparent;
  color: white;
  border: 2px solid #e5e5e5;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-portal {
  background: transparent;
  color: #f5a623;
  border: 2px solid #ffe8c5;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-portal:hover {
  background: var(--color-primary);
  color: #f5a623;
  transform: translateY(-2px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(var(--color-primary-rgb), 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 10px;
    margin-right: 1rem;
  }

  .btn-login {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .btn-portal {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* ===== HERO ===== */
.live-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 40px 32px 28px;
  position: relative;
  overflow: hidden;
}

.live-hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -50px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 201, 226, 0.22), transparent 70%);
  pointer-events: none;
}

.live-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.live-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.live-breadcrumb a {
  color: #bce8f3;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.live-breadcrumb a:hover {
  color: #fff;
}

.live-breadcrumb .sep {
  opacity: 0.5;
}

.live-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

.live-hero h1 {
  font-family: "Merriweather", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
}

.live-hero p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* ===== PLAYER STAGE ===== */
.live-stage {
  padding: 0 32px;
}

.stage-inner {
  max-width: 1140px;
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
}

.player-card {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.player-area {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 30%, rgba(74, 201, 226, 0.12), transparent 50%),
    linear-gradient(135deg, #0a2a30, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.player-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
}

.player-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.tag-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-live {
  background: var(--live-red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 48, 37, 0.4);
}

.tag-offline {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.tag-live .tag-dot {
  background: #fff;
  animation: liveBlink 1.4s infinite;
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.player-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.play-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.play-circle:hover {
  transform: scale(1.08);
}

.placeholder-title {
  font-family: "Merriweather", serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px;
  max-width: 540px;
}

.placeholder-sub {
  font-size: 12.5px;
  opacity: 0.75;
  margin: 0;
}

/* Player meta */
.player-meta {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid #f0eee9;
}

.player-meta h2 {
  font-family: "Merriweather", serif;
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.meta-actions {
  display: flex;
  gap: 8px;
  border-top: 1px solid #f0eee9;
  padding-top: 12px;
  flex-wrap: wrap;
}

.meta-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid #e8e4dc;
  background: #fff;
  color: #5a4a3a;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.meta-action-btn:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.meta-action-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.meta-action-btn.copied {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
}

.meta-action-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.meta-action-primary:hover:not(:disabled) {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

/* ===== LIBRARY ===== */
.live-library {
  padding: 40px 32px 80px;
}

.library-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.library-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.library-head h3 {
  font-family: "Merriweather", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.library-sub {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin: 4px 0 0;
}

.library-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid #e8e4dc;
  background: #fff;
  color: #5a4a3a;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.library-yt-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Video card */
.vcard {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.vcard:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.vthumb {
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(135deg, #2a3a3f, #1a2a2f);
  overflow: hidden;
}

.vthumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.vcard:hover .vthumb img {
  transform: scale(1.05);
}

.vthumb .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
  z-index: 2;
}

.vcard:hover .vthumb .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.vthumb .play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary-dark);
  margin-left: 2px;
}

.vthumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 3;
}

.vinfo {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vinfo h4 {
  font-family: "Merriweather", serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.35;
  flex: 1;
}

.vinfo .vmeta {
  display: flex;
  gap: 12px;
  font-size: 11.5px;
  color: var(--color-text-light);
  border-top: 1px dashed #efece6;
  padding-top: 8px;
}

.vinfo .vmeta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Skeleton loading */
.vcard-skeleton {
  pointer-events: none;
}

.vthumb-skeleton {
  aspect-ratio: 16 / 9;
  background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s linear infinite;
}

.vinfo-skeleton {
  padding: 14px 16px;
}

.vline-skeleton {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(110deg, #e8e8e8 8%, #f5f5f5 18%, #e8e8e8 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s linear infinite;
  margin-bottom: 8px;
}

.vline-skeleton.short {
  width: 60%;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted-foreground);
}

.empty-state svg {
  margin-bottom: 1rem;
}

.empty-state h4 {
  font-family: "Merriweather", serif;
  margin-bottom: 0.5rem;
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.floating-actions.hidden {
  transform: translateX(150%);
  opacity: 0;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-btn-whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  animation: pulse-instagram 2.5s ease-in-out infinite;
}

.floating-btn-youtube {
  background: #ff0000;
  animation: pulse-youtube 3s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

@keyframes pulse-instagram {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(131, 58, 180, 0.6);
  }
}

@keyframes pulse-youtube {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(253, 29, 29, 0.6);
  }
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: background var(--transition-base);
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copyright-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-logo-right {
  display: flex;
  align-items: center;
}

.footer-mtco-logo-small {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-mtco-logo-small:hover {
  opacity: 1;
}

.mtco-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.mtco-link:hover {
  transform: scale(1.05);
}

.footer-col {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.footer-col h5 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul.nav-flex-column li {
  margin-bottom: 8px;
}

.footer-col a.text-body-secondary:hover {
  color: #fff !important;
}

.footer-logo {
  max-height: 50px;
  width: auto;
  margin-right: 10px;
}

.footer-mtco-logo {
  height: 20px;
  width: auto;
  margin-right: 8px;
}

.footer-social-container {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-social-container a {
  display: block;
  transition: transform 0.3s ease;
  color: #fff !important;
}

.footer-social-container a:hover {
  transform: scale(1.1);
}

.f_area_icone_item {
  font-size: 18px;
  color: #fff;
  min-width: 24px;
  text-align: center;
  margin-top: 2px;
}

.footer-copyright {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== VLIBRAS ===== */
.vw-plugin-top-wrapper {
  z-index: 10000;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .live-hero {
    padding: 28px 16px 20px;
  }

  .live-hero h1 {
    font-size: 26px;
  }

  .live-stage {
    padding: 0 16px;
  }

  .live-library {
    padding: 28px 16px 60px;
  }

  .library-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .library-head h3 {
    font-size: 20px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .meta-actions {
    flex-wrap: wrap;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .footer {
    padding-bottom: 5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo-right {
    justify-content: center;
  }

  .vw-plugin-top-wrapper {
    bottom: 70px !important;
  }

  .footer-col {
    flex: 0 0 100%;
    min-width: 100%;
    text-align: center;
    padding: 15px 10px;
  }

  .footer-social-container {
    justify-content: center;
    align-items: center;
    margin: 15px 0;
  }

  .footer-copyright {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .live-hero {
    padding: 20px 12px 16px;
  }

  .live-hero h1 {
    font-size: 22px;
  }

  .live-stage {
    padding: 0 12px;
  }

  .live-library {
    padding: 24px 12px 60px;
  }

  .player-meta h2 {
    font-size: 15px;
  }

  .meta-action-btn {
    padding: 6px 10px;
    font-size: 11.5px;
  }

  .play-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .placeholder-title {
    font-size: 15px;
  }

  .footer-mtco-logo-small {
    height: 16px;
  }
}

@media (hover: none) {
  .footer-social-container a:hover {
    transform: none;
  }
}
