html,
body {
  background: hsl(0, 0%, 5%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;

  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.01),
    0 0 30px rgba(0, 0, 0, 0.6);
  overflow-x: visible;
  overflow-y: visible;
}




a {
  text-decoration: none;
  color: inherit;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  color: inherit;
}

a:hover {
  color: #007bff !important;
}


/* Navbar */
.custom-navbar {
   background-color: #1A1A1A;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 10px 10px;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid transparent !important;

  /* Subtle gradient for more depth illusion */
  /* background-image: linear-gradient(145deg, #2e343e, #252b33); */

  /* 👇 Sticky navbar styles */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.custom-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  pointer-events: none;
}


.nav-item {
  position: relative;
  padding: 5px 20px;
  cursor: pointer;
  font-weight: 500;
}

/* 📂 Dropdown Menu */
.dropdown-menu.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -200px;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.8);
  min-width: 600px; /* wide enough for two columns */
  z-index: 1000;
  font-family: 'Inter', sans-serif;

  display: none;                     /* 🔑 grid for layout */
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;                    /* row gap + column gap */
}

/* ✅ Show on hover */
.dropdown:hover .custom-dropdown {
  display: grid;
}

/* 🔹 Section wrapper */
.dropdown-section {
  margin-bottom: 0; /* grid handles spacing */
}

/* ✨ Section Heading */
.dropdown-heading {
  font-size: 14px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
  border-left: 3px solid #FFD700;
  padding-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* 🔗 Links container (auto-flow inside columns) */
.link-row,
.link-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 🔗 Links */
.link-row a,
.link-grid a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
  display: block;
}

.link-row a:hover,
.link-grid a:hover {
  background-color: rgba(255, 215, 0, 0.08);
  color: #FFD700;
  box-shadow: 0px 0px 6px rgba(255, 215, 0, 0.25);
}

/* 🖥️ Desktop-only section */
.desktop-only {
  display: block;
}




/* Dropdown container */
.nav-item.dropdown {
  position: relative;
  cursor: pointer;
  /* color: #fff; */
  /* font-weight: 500; */
}

/* Dropdown menu hidden by default */
.dropdown-menu.follow-dropdown {
  display: none;
  position: absolute;
  top: 100%; /* directly below "Follow Us" */
  left: 50%; /* start at center */
  transform: translateX(-50%); /* perfectly centered */
  background-color: #1a1e27;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  z-index: 999;
  white-space: nowrap;
}

/* Show on hover */
.nav-item.dropdown:hover .dropdown-menu.follow-dropdown {
  display: flex;
  gap: 50px;
  justify-content: center;
}

/* Icon styling */
/* Base styling - white icons */
.follow-dropdown .icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* makes black icons white */
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* WhatsApp hover - brand green */
.follow-dropdown a:hover img[alt="WhatsApp"] {
  filter: invert(51%) sepia(91%) saturate(436%) hue-rotate(95deg) brightness(95%) contrast(92%);
  transform: scale(1.15);
}

/* X hover - pure black */
.follow-dropdown a:hover img[alt="X"] {
  filter: brightness(0); 
  transform: scale(1.15);
}




/* Responsive Navbar */



/* Container and Box Layout */
.container {
  display: flex;
  height: 359px;
  box-sizing: border-box;
  padding: 0 7rem !important;
  margin: 58px auto 0 auto;
  /* Top margin stays 39px, bottom margin set to 0 */
  /* rest unchanged */
  max-width: 70%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.box {

  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.box1 {
  background-color: #131A45;
}

.box2 {
  background-color: #6E1723;
}

.box3 {
  background-color: #7A7E11;
}


.box img {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Box 1 */
.box1 img:first-child {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;

}

/* Box 2 */
.box2 img:first-child {
  position: absolute;
  bottom: 0;
  right: -4%;
  width: 99%;
  height: 99%;
  object-fit: cover;
  transform: translateX(-10px);
  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;

}

/* Box 3 */
.box3 img:first-child {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 99%;
  height: 99%;
  object-fit: cover;
  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;

}

.box1:hover img:first-child,
.box2:hover img:first-child,
.box3:hover img:first-child {
  /* transform: translateY(-6px) scale(1.02); */
  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));

}


.img1 {
  position: absolute;
  bottom: 0;
  right: 1%;
  left: -100%;
  width: 120% !important;
  height: auto !important;
  object-fit: contain;
  z-index: 20;

  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
}

.img2 {
  position: absolute;
  bottom: 0;
  left: -115%;
  width: 120% !important;
  height: auto !important;
  object-fit: contain;
  z-index: 20;

  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
}

.img3 {
  position: absolute;
  bottom: 0;
  left: -7%;
  width: 110% !important;
  height: auto !important;
  object-fit: contain;
  z-index: 10;

  filter: drop-shadow(0px 18px 25px rgba(0, 0, 0, 0.6));
}

.player {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.player-mbappe {
  background-color: #00cfff;
}

.player-haaland {
  background-color: #ff4d4d;
}

.player-vinicius {
  background-color: #ffe600;
}

.player-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  text-align: center;
  background: linear-gradient(to right, #131A45 33.3%, #6E1723 33.3%, #6E1723 66.6%, #7A7E11 66.6%);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  gap: 20px;
}

.player {
  color: white;
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 4vw, 38px);
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}

.player-mbappe {
  background-color: #131A45;
}

.player-haaland {
  background-color: #6E1723;
}

.player-vinicius {
  background-color: #7A7E11;
}

.vs-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  color: white;
  font-size: clamp(22px, 5vw, 40px);
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 900;
  padding: 20px 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}



.line {
  height: 3px;
  width: 90%;
  background-color: #2A303B;
  margin: auto;
  /* Centers it horizontally */
}


.tab-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 4% auto 30px auto;
  padding: 0;
  background: transparent;
}

/* Tab buttons */
.tab-btn {
  padding: 8px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF; /* default text */
  background-color: #1A1A1A; /* dark theme tab background */
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;


}

/* Hover effect */
.tab-btn:hover {
  color: #FFD700; /* gold on hover */
  border-color: #FFD700; /* subtle border highlight */
  transform: scale(1.05);
}

/* Active tab (keep your color, just aligned to theme) */
.tab-btn.active {
  color: #0D0D0D; /* dark text for contrast */
  font-weight: 600;
  background-color: #FFD700; /* gold */
  border-color: #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* .last-five{
  display: none !important;
} */


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-bottom: 12px;
  color: #222;
}

p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.player-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.scroll-container {
  max-height: 400px;
  /* customize: adjust to fit ~3 match cards */
  overflow-y: auto;
  /* vertical scroll */
  margin-bottom: 2rem;
  /* spacing between sections */
  padding-right: 8px;
  /* space so scrollbar doesn’t overlap cards */
  border-radius: 10px;
  /* optional rounded edges */
}

/* Cards layout */
.matches-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* space between match cards */
}

/* Custom scrollbar styling */
.scroll-container::-webkit-scrollbar {
  width: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scroll-container::-webkit-scrollbar-track {
  background: transparent;
}


/* Responsive */
@media (max-width: 600px) {
  .tab-container {
    gap: 12px;
    padding: 10px 14px;
  }

  .tab {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* .content {
    padding: 20px;
  } */
}



@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide {
  animation: slideDown 0.4s ease forwards;
}


/* Container */
.table-container{
  border: 1px solid #fbfbfb24;
  max-width: 1000px;
  min-width: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin: 3rem auto;
  padding-bottom: 20px;
  padding-top: 30px;
}

/* Title */
.stat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 0px;
  text-transform: uppercase;
  margin-top: 3px;
}


/* Table */

.Stats-table {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* regular for body text */
  width: auto;   /* shrink to content */
 
  border-collapse: collapse;
  /* remove gaps between cells */
  text-align: center;
  /* margin-bottom: 20px; */
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  line-height: 25px;
  /* margin-top: 30px; */
  margin: 30px auto;
}


.Stats-table th,
.Stats-table td {
  border: none;
  /* remove all cell borders */
  padding: 15px 30px;
  /* 20px top/bottom, 30px left/right */
}

.Stats-table th {
  border-bottom: 2px solid #FFD700;
  /* keep header bottom line */
  color: #FFFFFF;
  font-weight: bold;
  font-size: 17px;
}

.Stats-table tbody tr {
  border-spacing: 0 15px;
  /* add vertical spacing */
}

.Stats-table tbody tr:nth-child(even) {
  background-color: #2A2A2A;
}

.Stats-table tbody tr:nth-child(odd) {
  background-color: #1A1A1A;
}



.Stats-table .stat-name {
  font-size: 0.7em ;
  color: #707070;
  display: block;
  margin-top: 4px;
}

.stat-text{
  font-size: 1.2rem;
  font-weight: 500;
}


.extra-row {
  display: none;
  animation: slideDown 0.4s ease forwards;
}



.stat-title2 {
  font-family: 'Lato', sans-serif;
  /* Clean, modern font */
  text-align: center;
  /* Centers the title */
  color: #7c7c7c;
  /* Bright yellow — great contrast */
  font-size: clamp(0.6rem, 2vw, 0.9rem);
  /* Noticeable title size */
  margin-bottom: 4px;
  /* Tight space above subtitle */
  font-weight: 200;
  /* Bold and strong */
  margin-top: 0;
  /* Removes extra top space */
}

.stat-titleabove {
  font-family: 'Overpass', sans-serif;
  text-align: center;
  color: #2A2A2A !important;
  /* keep pure white */
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3rem;
  margin-bottom: 0 !important;



  background: linear-gradient(120deg, #ffffff 60%, #e6e6e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* btn below the table */

.Dt-btnu {
  display: block;
  margin: 20px auto 0;    /* centered below table */
  padding: 3px 8px;      /* smaller size */
  background:#e6c200;    /* gold accent */
  color: #000000;         /* dark text */
  font-size: 14px;        /* smaller text */
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.Dt-btnu:hover {
  background: #e6c200;    /* slightly darker gold */
}

.Dt-btnu .dynamic-link {
  color: inherit;
  text-decoration: none;
  display: block;
}


.Dt-btn2 {
  padding: 2px 10px;
  font-size: 70%;
  background-color: #dee609;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50px;
  /* pill-style */
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  display: block;
  margin: 2% auto;
  margin-bottom: 0;

}

.Dt-btn2:hover {
  background-color: #0669d2;
}

/* looking for tab */
.looking-box {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 40px; /* Equal left and right space */
  text-align: center;
  border-radius: 16px;
  border: 1px solid #2A2A2A;
  background-color: #1A1A1A;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.08);
  box-sizing: border-box; /* Ensure padding included in width */
}

.lookingbox-title {
  font-size: 26px; /* slightly bigger for better hierarchy */
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0px;
}

.text-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 5 items per row */
  gap: 15px 25px;
  justify-items: center; /* center items horizontally */
  align-items: center;   /* center items vertically */
  text-align: center;    /* center text inside items */
}

.text-item a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s ease;
}

/* Gold underline on hover */
.text-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.text-item a:hover {
  color: #FFD700;
}

.text-item a:hover::after {
  width: 100%;
}



/* Bottom Bar */
/* 📌 Bottom Bar */
/* 📌 Bottom Bar */
.bottom-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #1A1A1A; /* Dark background */
  padding: 0.8rem 1.2rem;
  font-size: 14px;
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  position: sticky;
  bottom: 0;
  z-index: 900;
  font-family: 'Inter', sans-serif;
}

/* Left & Right Labels */
.label-left a {
  font-weight: 600;
  color: #FFD700; /* Gold for clickable link */
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.label-left a:hover {
  color: #fff; /* hover white */
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.6); /* subtle gold glow */
}

.label-right {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 0.8rem;
  color: #c5bdbd; /* muted grey text */
  font-family: 'Inter', sans-serif;
}

/* Last Updated text adjustments */
.label-right span {
  white-space: nowrap; /* keep date inline */
}

/* Menu Button */
.menu-btn {
  background-color: #FFD700; /* gold background */
  border: 1px solid rgb(0, 0, 0);
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000; /* black text */
  gap: 6px;
  transition: all 0.2s ease;
}

.menu-btn:hover {
  background-color: #FFC107; /* slightly darker gold on hover */
  color: #111; /* darker text for contrast */
}

/* Hamburger / Close icons */
.hamburger-icon,
.close-icon {
  vertical-align: middle;
  stroke: #000000; /* black stroke */
  width: 22px;
  height: 22px;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.menu-btn:hover .hamburger-icon,
.menu-btn:hover .close-icon {
  stroke: #111; /* darker on hover for contrast */
  transform: scale(1.1); /* subtle grow effect */
}


/* Drop-up Menu */
.dropup-menu {
  display: none;
  /* hidden by default */
  flex-direction: column;
  position: absolute;
  bottom: 59px;


  /* Set max visible height */
  overflow-y: auto;
  /* 🧠 Optional smoother scroll experience */
  scroll-behavior: smooth;

  right: 0;
  background-color: #1A1A1A;
  /* border: 1px solid #ccc; */
  /* border-radius: 1px; */
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  width: 400px;
  z-index: 100;
  margin-bottom: 3px;
  /* margin-top: 60px; */


  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;

  /* ✅ SCROLL SETTINGS */
  max-height: calc(95vh - 100px);
  /* 👈 sets 80px gap from top of screen */
  overflow-y: auto;
  /* enable vertical scroll if needed */
  scrollbar-width: thin;
  /* Firefox */
}

.dropup-menu::-webkit-scrollbar {
  width: 6px;
}

.dropup-menu::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 4px;
}

.dropup-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropup-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}


.dropup-menu a {
  padding: 10px;
  text-decoration: none;
  color: rgb(211, 206, 206);
  border-bottom: 0.5px solid #3e3e3e;
  transition: background 0.2s;
  padding-left: 14px;
}

.dropup-menu a:hover {
  /* background-color: #f9f9f9; */
}

/* Submenu */
.submenu-container {
  position: relative;
}

.has-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu {
  display: none;
  flex-direction: column;
  background-color: #2a2a2ad0;
  border-left: 2px solid #ddd;
  margin-left: 10px;
  padding-left: 10px;
  margin-top: 6px;
  font-weight: 400;
}

.submenu a {
  padding: 6px 12px;
  display: block;
  text-decoration: none;
  color: rgb(211, 206, 206);
  border-bottom: 0.5px solid #3e3e3e;
  position: relative;
  padding-left: 24px;
}

.submenu a::before {
  content: "•";
  position: absolute;
  left: 10px;
  font-size: 16px;
  color: #888;
  top: 50%;
  transform: translateY(-50%);
}

.submenu .submenu a {
  padding-left: 44px;
}

.submenu .submenu .submenu a {
  padding-left: 54px;
}


.submenu a:last-child {
  border-bottom: none;
}


.arrow {
  margin-left: 8px;
  font-size: 12px;
}


/* Optional: divider style from your current code */
.divider {
  color: #888;
  font-weight: bold;
  font-size: 14px;
}



/* Bottom section container for spacing */
 footer {
  background-color: #1A1A1A; 
  color: #FFFFFF;
  padding: 50px 20px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #2A2A2A;
  padding-bottom: 30px;
}

.footer-about h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
  color: #ccc;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #FFD700;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
  margin-top: -10px !important;
}

.social-icons {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  font-size: 18px;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
}



/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
  /* spacing above social icons */
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
  /* X blue */
}

.social-icons a.whatsapp:hover {
  color: #25D366;
  /* WhatsApp green */
}


.football-dropdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  /* 👈 Change this value to control top space */

}

.football-dropdown select {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.football-dropdown select:hover {
  background: #ffffff;
}

.football-dropdown .season-content {
  display: none;
  border-radius: 12px;
  /* Removed background, backdrop-filter, and border */
  color: #fff;
}

.football-dropdown .season-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #0D0D0D; /* main dark bg */
  color: #FFFFFF; /* default text */
  line-height: 1.7;
  margin-top: 30px;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #1A1A1A; /* container bg */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.05); /* subtle gold glow */
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700; /* gold heading */
  margin-bottom: 20px;
  text-align: center;
}

.legal-heading-main {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFFFFF; /* strong white */
  margin-top: 40px;
  margin-bottom: 12px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.legal-heading {
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFD700; /* gold subheadings */
  margin-top: 30px;
  margin-bottom: 8px;
}

.legal-text {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #D1D1D1; /* softer white for body text */
}

.legal-section {
  margin-bottom: 50px;
}

.legal-header {
  background-color: #1A1A1A;
  padding: 25px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.legal-header-title {
  color: #FFD700;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}


/* GENERAL CONTAINER */
.vote-container {
  padding: 2rem;
  background: #0f0f0f;
  color: white;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* SECTION TITLE */
.vote-heading {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #E6C200); /* gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.3),  /* soft gold glow */
    0 0 12px rgba(255, 215, 0, 0.15); /* subtle outer glow */

  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Segoe UI', sans-serif;
}



/* CARD LAYOUT */
.vote-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.vote-card {
  background: #1b1b1b;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
  perspective: 1000px;
}

.vote-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}

/* PLAYER NAME STYLING */
.player-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 2px solid;
  font-weight: bold;
  letter-spacing: 1px;
}

/* BUTTON STYLE */
.vote-btn {
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* BLUE THEME - MBAPPE */
.blue {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.blue-border {
  border-color: #007bff;
  color: #007bff;
}

.blue-btn {
  background: #007bff;
  color: black;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
}

.blue-btn:hover {
  background: #3399ff;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
}

/* RED THEME - HAALAND */
.red {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.red-border {
  border-color: #ff4d4d;
  color: #ff4d4d;
}

.red-btn {
  background: #ff4d4d;
  color: black;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}

.red-btn:hover {
  background: #ff6666;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

/* YELLOW THEME - VINICIUS */
.yellow {
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
}

.yellow-border {
  border-color: #fdd835;
  color: #fdd835;
}

.yellow-btn {
  background: #fdd835;
  color: black;
  box-shadow: 0 0 12px rgba(255, 255, 0, 0.5);
}

.yellow-btn:hover {
  background: #ffee58;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}


.page-container {
  display: flex;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 1% auto;
}

.donation-container {
  background: white;
  border-radius: 20px;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(81, 79, 79, 0.7);
  padding: 40px;
  max-width: 500px;
  text-align: center;
  margin-bottom: 0px;
  /* Reduce space below donation box */
}

.donation-container h1 {
  color: #111;
  margin-bottom: 10px;
}

.donation-container p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.donate-button {
  background: #1e88e5;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.3s ease;
}

.donate-button:hover {
  background: #1565c0;
}


.footer2-card {
  background: linear-gradient(145deg, #2A303B);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(82, 79, 79, 0.7);
  border-radius: 15px;
  padding: 20px 25px;
  margin: 20px auto;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.footer2-card span {
  font-size: 16px;
  color: #1e88e5;
  font-weight: 600;
}

.footer2-arrow,
.footer3-arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
}


.footer2-card:hover .footer2-arrow,
 .footer3-arrow {
  transform: translateX(5px);
}


.footer2-follow {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.footer2-follow p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.footer2-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer2-icon {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease, filter 0.3s ease;
  filter: grayscale(100%) brightness(0.5);
}

.footer2-icon:hover {
  transform: scale(1.1);
  filter: none;
}

.footer3-card {
  background: #1A1A1A;                  /* dark card */
  border: 1px solid #262626;            /* subtle border */
  border-radius: 10px;
  padding: 14px 18px;
  margin: 1rem auto;
  max-width: 43.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;

  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.footer3-cardfaq{
   text-transform: none !important;
}

.footer3-card:hover {
  background: #2A2A2A;                  /* lighter on hover */
  border-color: #FFD700;                /* gold glow effect */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer2-arrow {
  color: #FFD700;                       /* gold arrow */
  font-size: 18px;
  transition: transform 0.3s ease;
}

.footer3-card:hover .footer2-arrow {
  transform: translateX(5px);           /* smooth slide effect */
}




/* About Section Wrapper */
.mvhv-about-wrapper {
  background-color: #0D0D0D; /* main dark background */
  color: #FFFFFF;            /* primary text color */
  padding: 70px 25px;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.mvhv-about-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Main Title */
.mvhv-title {
  font-size: 2.9rem;
  color: #FFD700;            /* gold accent for title */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Subtitle */
.mvhv-subtitle {
  font-size: 1.8rem;
  color: #FFD700;            /* gold accent for subtitle */
  margin-top: 50px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700; /* gold left border */
  padding-left: 12px;
  font-weight: 600;
}

/* Paragraph Text */
.mvhv-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #C9C9C9;            /* light gray for readability */
}

/* Highlighted Text / Quote */
.mvhv-highlight {
  font-size: 1.2rem;
  margin-top: 30px;
  color: #FFD700;            /* gold highlight for emphasis */
  font-style: italic;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.mvhv-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.mvhv-social-icons a {
  font-size: 30px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.mvhv-social-icons a:hover {
  color: #00ffe0;
}

/* Popup Overlay */
.mvhv-modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.85); /* slightly darker overlay */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px); /* subtle glassy effect */
}

/* Modal Content Box */
.mvhv-modal-content {
  background: linear-gradient(145deg, #1A1A1A, #2A2A2A); /* theme-based gradient */
  padding: 28px 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.2); /* soft gold glow */
  font-family: 'Segoe UI', sans-serif;
}

/* Modal Title */
.mvhv-modal-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #FFD700; /* gold highlight */
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 8px;
}

/* Modal Close Button */
.mvhv-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  color: #FFD700;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.mvhv-modal-close:hover {
  color: #fff;
}

/* Form Inputs */
#mvhvAdForm input,
#mvhvAdForm textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0 20px;
  background-color: #0D0D0D;
  color: #FFFFFF;
  border: 1px solid #333;
  border-radius: 6px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#mvhvAdForm input:focus,
#mvhvAdForm textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  outline: none;
}

/* Textarea Specific */
#mvhvAdForm textarea {
  resize: vertical;
  min-height: 90px;
}



#mvhvAdForm input[type="email"] {
  /* Same styling as other inputs */
}

/* ✅ Success Popup Overlay */
.mvhv-popup-success {
  display: none; /* initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.85); /* dark overlay */
  backdrop-filter: blur(4px); /* subtle frosted glass */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ✅ Ensure all text inside stays gold */
.mvhv-popup-success .mvhv-popup-box p,
.mvhv-popup-success .mvhv-popup-box span,
.mvhv-popup-success .mvhv-popup-box strong,
.mvhv-popup-wait .mvhv-popup-box1 p {
  color: #FFD700 !important;
}

/* ✅ Success Popup Box */
.mvhv-popup-success .mvhv-popup-box {
  background: linear-gradient(145deg, #1A1A1A, #2A2A2A); /* dark gradient */
  color: #FFD700 !important; /* gold text */
  padding: 24px 32px;
  border-radius: 10px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25); /* gold glow */
  max-width: 90%;
  width: 420px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.4); /* soft gold border */
  animation: popupScale 0.35s ease;
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
}

/* ✅ Animation: scale + fade */
@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Wrapper & container */
#fbv-wrapper {
  background-color:#0D0D0D;
  color: #e0e0e0;
  padding: 70px 25px;
  font-family: 'Segoe UI', sans-serif;
}

.fbv-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Main Title */
.fbv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: #FFD700; /* gold */
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Subtitles */
.fbv-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF; /* keep subtitles white */
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700; /* gold accent instead of teal */
  padding-left: 12px;
  letter-spacing: 0.5px;
}

/* Paragraph Text */
.fbv-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #e5e4e4; /* softer white for readability */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/* Buttons */
.fbv-button {
  display: inline-block;
  padding: 7px 15px;
  font-weight: bold;
  border-radius: 3px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #FFD700;         /* gold border */
  transition: all 0.3s ease;
  color:#0D0D0D;
  margin-top: 8px;
  text-transform: uppercase;
  /* background-color: #1A1A1A;         dark background */
}

.sbmt-btn{
   padding: 4px 15px !important;
}

.fbv-button,
.fbv-button:link,
.fbv-button:visited {
  color: rgb(0, 0, 0);
  /* Text color */
  text-decoration: none;
  /* Remove underline */
  display: inline-block;
  /* Make it behave like a button */
}


.fbv-primary-button {
  background-color: #FFD700;
}

.fbv-primary-button:hover {
  background-color:#E6C200;
}

.fbv-secondary-button {
  background-color: #FFD700;
  color: #000000;
}

.fbv-secondary-button:hover {
  background-color: #E6C200;
  color: #0f111a;
}

/* Modal Overlay */
.fbv-modal-overlay {
  display: flex; /* hidden via inline JS until opened */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.85); /* darker overlay */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px); /* subtle blur for depth */
}

/* Modal Content Box */
.fbv-modal-content {
  background-color: #1A1A1A;
  padding: 28px 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 215, 0, 0.08); /* subtle gold outline */
  font-family: 'Montserrat', sans-serif;
}

/* Modal Title */
.fbv-modal-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: #FFD700; /* gold highlight instead of neon blue */
  text-align: center;
}

/* Modal Close Button */
.fbv-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  color: #CCCCCC;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.fbv-modal-close:hover {
  color: #FFD700;
}

/* Form inputs and textarea */
#fbv-modal-form input,
#fbv-modal-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin: 10px 0 18px;
  background-color: #0D0D0D;
  color: #FFFFFF;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#fbv-modal-form input:focus,
#fbv-modal-form textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
  outline: none;
}

#fbv-modal-form textarea {
  resize: vertical;
  min-height: 90px;
}


/* Inaccurate Stats Modal Overlay */
#fbv-inaccurate-modal {
  display: flex;
  /* initially hidden with inline style display:none */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 13, 0.85); /* dark overlay matching your main bg */
  justify-content: center;
  align-items: center;
  padding: 16px;
  font-size: 13px;
}

/* Inaccurate Stats Modal Content Box */
/* Scrollable Modal Content */
#fbv-inaccurate-modal .fbv-modal-content {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  width: 90%;         /* decreased width to make it narrower */
  max-width: 500px;   /* optional: smaller max width */
  color: #FFFFFF;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  border: 1px solid #FFD700;
  
  max-height: 90vh;   /* increased visible height */
  overflow-y: auto;
}

/* Style the scrollbar for WebKit browsers (Chrome, Edge, Safari) */
#fbv-inaccurate-modal .fbv-modal-content::-webkit-scrollbar {
  width: 3px;         /* thinner scrollbar */
}

#fbv-inaccurate-modal .fbv-modal-content::-webkit-scrollbar-track {
  background: #1A1A1A; /* track matches modal background */
  border-radius: 5px;
}

#fbv-inaccurate-modal .fbv-modal-content::-webkit-scrollbar-thumb {
  background-color: #FFD700; /* gold scrollbar */
  border-radius: 5px;
  border: 1px solid #FFD700;
}

#fbv-inaccurate-modal .fbv-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #fff; /* hover effect */
}

/* Inaccurate Stats Modal Title */
#fbv-inaccurate-modal .fbv-modal-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FFD700; /* gold highlight */
  font-weight: bold;
}

/* Inaccurate Stats Modal Close Button */
#fbv-inaccurate-modal .fbv-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #FFD700; /* gold close button */
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

#fbv-inaccurate-modal .fbv-modal-close:hover {
  color: #FFFFFF; /* hover effect */
}

/* Inputs and textarea inside the inaccurate stats form */
#fbv-inaccurate-form input,
#fbv-inaccurate-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  background-color: #2A2A2A; /* tertiary background */
  color: #FFFFFF;
  border: 1px solid #FFD700; /* gold border */
  border-radius: 5px;
  font-family: 'Segoe UI', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#fbv-inaccurate-form input:focus,
#fbv-inaccurate-form textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

#fbv-inaccurate-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Email Sending Popup */
.mvhv-popup-wait {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 13, 13, 0.85); /* dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  color: #FFD700; /* gold text for accent */
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.mvhv-popup-wait .mvhv-popup-box1 {
  background-color: #1A1A1A; /* secondary dark background */
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); /* subtle gold glow */
  max-width: 350px;
  color: #FFFFFF; /* ensure message text is white */
  border: 1px solid #FFD700; /* gold border accent */
}

.scroll-label {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  padding: 0.8rem 7rem;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent; /* fully transparent */
  cursor: pointer;
  user-select: none;
  perspective: 800px;
  text-align: center;
}

.scroll-label span {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  /* Gold gradient text */
  background: linear-gradient(120deg, #ffd90081, #ffc80087);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Thin yellow border around text */
  -webkit-text-stroke: 0.8px #FFD700;

  animation: scroll-text 15s linear infinite;
  transform: rotateX(1.5deg);
}

.scroll-label:hover span {
  animation-play-state: paused;
}

@keyframes scroll-text {
  0% {
    transform: translateX(100%) rotateX(1.5deg);
  }
  100% {
    transform: translateX(-100%) rotateX(1.5deg);
  }
}

@media (max-width: 480px) {
  .scroll-label {
    max-width: 90%;
    padding: 0.4rem 1.2rem;
  }

  .scroll-label span {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}


/* error */

.mvhv-error-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  background: #0f111a;
  padding: 40px 20px;
}

.mvhv-error-box {
  background: #1A1A1A;
  border: 1px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 40px;
  max-width: 650px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.mvhv-error-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.mvhv-error-status {
  font-size: 1.2rem;
  font-weight: 500;
  color: #eae0e0;
  margin-bottom: 25px;
}

.mvhv-error-stack {
  background: #0f111a;
  color: #c5bdbd;
  text-align: left;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-x: auto;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.mvhv-error-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #FFD700;
  color: #FFD700;
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mvhv-error-btn:hover {
  background: #FFD700;
  color: #0f111a;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}
