body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  z-index: 1000;
}


/* PREMIUM HIGHLIGHTS */
.large-card {
  background: linear-gradient(
    180deg,
    #1b1b1b 0%,
    #101010 100%
  );

  padding: 40px;

  border-radius: 18px;

  text-align: left;

  position: relative;

  overflow: hidden;

  transition: 0.4s;
}

/* HOVER */
.large-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.5);
}

/* TAG */
.card-tag {
  color: gold;

  font-size: 13px;

  letter-spacing: 2px;

  font-weight: bold;
}

/* TITLE */
.large-card h2 {
  margin: 20px 0;

  font-size: 30px;

  color: white;
}

/* TEXT */
.large-card p {
  color: #ccc;

  line-height: 1.6;

  margin-bottom: 25px;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: gold;
  font-size: 24px;
  font-weight: bold;
}

/* NAV */
.nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* BURGER */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 85vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 60px;
  color: gold;
}

.hero p {
  font-size: 22px;
  margin-bottom: 20px;
}

/* BUTTON */
.btn {
  background: #c40000;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* MAIN */
main {
  padding: 40px 0;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 30px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* INTRO */
.home-intro {
  text-align: center;
  margin-top: -200px;
  position: relative;
  z-index: 5;
}

.home-intro h1 {
  font-size: 48px;
  color: gold;
}

.home-intro p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* HIGHLIGHTS */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 60px;
  padding: 0 20px;
}

.highlight-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

/* EVENTS */
.events {
  margin-top: 80px;
  text-align: center;
}

.events h2 {
  color: gold;
  margin-bottom: 30px;
}

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

.event-card {
  background: #141414;
  padding: 20px;
  border-radius: 10px;
}

.event-card .date {
  color: #c40000;
  font-weight: bold;
  margin-bottom: 10px;
}
/* STARS */
.stars {
  margin-top: 80px;
  text-align: center;
}

.stars h1 {
  color: gold;
  margin-bottom: 10px;
}

.stars-sub {
  color: #ccc;
  margin-bottom: 40px;
}

/* GRID */
.stars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

/* CARD */
.star-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.star-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.star-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* TEXT */
.star-card h3 {
  margin: 15px 0 10px;
  color: gold;
}

.star-card p {
  padding: 0 15px 20px;
  font-size: 14px;
}


/* EVENTS PAGE */
.events-page {
  margin-top: 80px;
  text-align: center;
}

.events-page h1 {
  color: gold;
  margin-bottom: 10px;
}

.events-sub {
  color: #ccc;
  margin-bottom: 50px;
}

/* GRID */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 30px;
}

/* CARD */
.poster-card {
  background: #151515;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

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

/* IMAGE */
.poster-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* DATE */
.poster-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: gold;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  z-index: 5;
}

.poster-date .day {
  display: block;
  font-size: 26px;
}

.poster-date .month {
  font-size: 14px;
}

/* CONTENT */
.poster-content {
  padding: 25px;
}

.poster-content h2 {
  color: gold;
  margin-bottom: 10px;
}

/* BUTTONS */
.poster-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-gold {
  background: gold;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}


/* COUNTDOWN */
.countdown {
  text-align: center;
  margin-top: 100px;
}

.countdown h2 {
  color: gold;
  margin-bottom: 30px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#countdown div {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  min-width: 120px;
}

#countdown span {
  display: block;
  font-size: 42px;
  color: gold;
  font-weight: bold;
}

#countdown small {
  color: #ccc;
}

/* NAVIGATION */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav > ul {
  display: flex;
  gap: 30px;
}

.nav li {
  position: relative;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  transition: 0.3s;
}

.nav a:hover {
  color: gold;
}

/* MEGA MENU */
.nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  background: rgba(15,15,15,0.98);

  min-width: 320px;

  padding: 25px;

  border-radius: 16px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.6);

  z-index: 999;
}

/* SHOW */
.nav li:hover > ul {
  display: block;
}

/* SUBMENU */
.nav li ul li {
  margin-bottom: 10px;
}

.nav li ul a {
  padding: 8px 0;
  color: #ddd;
}

.nav li ul a:hover {
  color: gold;
  padding-left: 5px;
}

/* ACTIVE MENU */
.nav .current > a {
  color: gold;
}

/* HOVER LINE */
.nav > ul > li > a {
  position: relative;
}

.nav > ul > li > a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: gold;

  transition: 0.3s;
}

.nav > ul > li > a:hover::after {
  width: 100%;
}

/* SHOW HERO */
.show-hero {
  position: relative;

  height: 60vh;

  background:
    url('/images/show-bg.jpg')
    center/cover no-repeat;

  display: flex;
  align-items: center;
}

.show-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.55)
    );
}

.show-content {
  position: relative;
  z-index: 2;
}

.show-tag {
  color: gold;
  letter-spacing: 3px;
  font-size: 14px;
}

.show-content h1 {
  font-size: 58px;
  margin: 20px 0;
}

.show-content p {
  font-size: 22px;
  color: #ddd;
}

/* SECTION */
.show-section {
  margin-top: 100px;
}

.show-section h2 {
  color: gold;
  margin-bottom: 30px;
}

/* GRID */
.show-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

  gap: 30px;
}

/* CARD */
.show-card {
  background: #151515;

  border-radius: 18px;

  overflow: hidden;

  transition: 0.4s;
}

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

.show-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.show-card h3 {
  padding: 20px;
}

/* MINI GRID */
.mini-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  gap: 20px;
}

.mini-card {
  background: #1a1a1a;

  padding: 25px;

  border-radius: 12px;

  text-align: center;

  transition: 0.3s;
}

.mini-card:hover {
  background: gold;
  color: black;
}

/* CLICKABLE CARDS */
.show-card,
.mini-card {
  text-decoration: none;
  color: white;
}

/* SHOW CARD */
.show-card {
  display: block;
}

/* HOVER */
.show-card:hover h3,
.mini-card:hover {
  color: black;
}

/* MINI CARD */
.mini-card {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 100px;

  font-weight: bold;
}


/* HERO V3 */
.hero-v3 {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #050505 0%,
      #120909 50%,
      #000 100%
    );

  min-height: 72vh;

  display: flex;
  align-items: center;
}

/* OVERLAY */
.hero-v3-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,215,0,0.12),
      transparent 40%
    );
}

/* CONTAINER */
.hero-v3-container {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

/* LEFT */
.hero-v3-left {
  padding: 80px 0;
}

.hero-tag {
  color: gold;

  letter-spacing: 3px;

  font-size: 14px;

  text-transform: uppercase;
}

/* HEADLINE */
.hero-v3 h1 {
  font-size: 92px;

  line-height: 0.9;

  margin: 20px 0;

  font-weight: 900;
}

.hero-v3 h1 span {
  color: gold;
}

/* TEXT */
.hero-v3 p {
  font-size: 24px;

  color: #ddd;

  max-width: 600px;

  line-height: 1.5;
}

/* BUTTONS */
.hero-buttons {
  display: flex;

  gap: 20px;

  margin-top: 40px;
}

.btn-outline {
  border: 2px solid gold;

  background: transparent;
}

.btn-outline:hover {
  background: gold;
  color: black;
}

/* RIGHT IMAGE */
.hero-v3-right img {
  width: 100%;

  border-radius: 24px;

  box-shadow:
    0 0 60px rgba(255,215,0,0.15);
}

/* WAVE */
.hero-wave {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;
  height: 80px;

  background: #0b0b0b;

  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
}

/* MOBILE */
@media (max-width: 900px) {

  .hero-v3-container {
    grid-template-columns: 1fr;
  }

  .hero-v3 h1 {
    font-size: 62px;
  }

  .hero-v3-right {
    margin-bottom: 100px;
  }

}

main {
  position: relative;
  z-index: 2;

  margin-top: -40px;
}

/* LOGO */
.logo {
  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;
}

/* IMAGE */
.logo img {
  height: 72px;

  width: auto;

  transition: 0.3s;
}

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

/* TEXT */
.logo-text {
  display: flex;

  flex-direction: column;

  line-height: 1.1;
}

.logo-text strong {
  color: gold;

  font-size: 30px;
}

.logo-text span {
  color: #fff;

  font-size: 13px;

  max-width: 220px;
}

/* PREMIUM EVENTS */
.premium-events {
  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      #080808,
      #140707
    );
}

/* HEADER */
.section-header {
  text-align: center;

  margin-bottom: 70px;
}

.section-header span {
  color: gold;

  letter-spacing: 3px;

  font-size: 14px;
}

.section-header h2 {
  font-size: 56px;

  margin: 20px 0;
}

.section-header p {
  color: #ccc;

  font-size: 20px;
}

/* GRID */
.event-premium-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap: 30px;
}

/* CARD */
.event-premium-card {
  background: #121212;

  border-radius: 24px;

  padding: 30px;

  display: flex;

  gap: 25px;

  transition: 0.4s;

  border: 1px solid rgba(255,215,0,0.08);
}

.event-premium-card:hover {
  transform: translateY(-10px);

  border-color: gold;
}

/* DATE */
.event-date {
  min-width: 90px;

  background:
    linear-gradient(
      180deg,
      #d10000,
      #700000
    );

  border-radius: 18px;

  padding: 18px;

  text-align: center;
}

.event-date .month {
  display: block;

  color: white;

  font-size: 14px;

  letter-spacing: 2px;
}

.event-date strong {
  display: block;

  font-size: 42px;

  margin: 10px 0;
}

.event-date small {
  color: #eee;
}

/* CONTENT */
.event-content .btn {
  padding: 10px 18px;

  font-size: 14px;
}

.event-time,
.event-location {
  color: #ccc;

  margin-bottom: 14px;

  font-size: 15px;

  line-height: 1.5;
}

/* FEATURED */
.featured-event {
  border: 2px solid gold;

  box-shadow:
    0 0 40px rgba(255,215,0,0.08);
}

.event-badge {
  display: inline-block;

  background: gold;

  color: black;

  padding: 6px 12px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: bold;

  margin-bottom: 14px;
}

/* FOOTER V3 */
.footer-v3 {
  background:
    linear-gradient(
      180deg,
      #050505,
      #000
    );

  padding-top: 90px;

  border-top:
    1px solid rgba(255,215,0,0.08);
}

/* GRID */
.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr 1fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 60px;
}

/* BRAND */
.footer-brand img {
  width: 110px;

  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 36px;

  color: gold;

  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;

  line-height: 1.6;
}

.footer-brand span {
  display: block;

  margin-top: 20px;

  color: gold;

  font-weight: bold;
}

/* COLUMN */
.footer-column h4 {
  color: gold;

  margin-bottom: 25px;

  font-size: 20px;
}

.footer-column ul {
  list-style: none;

  padding: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #ccc;

  text-decoration: none;

  transition: 0.3s;
}

.footer-column a:hover {
  color: gold;
}

/* TEXT */
.footer-column p {
  color: #ccc;

  margin-bottom: 14px;
}

/* SOCIALS */
.footer-socials {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-top: 20px;
}

/* BOTTOM */
.footer-bottom {
  border-top:
    1px solid rgba(255,255,255,0.08);

  padding: 25px;

  text-align: center;

  color: #777;

  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

}


/* =========================
   BREADCRUMBS V3
========================= */

.vfcg-breadcrumbs {
    background: rgba(0,0,0,0.45);

    border-top: 1px solid rgba(255,215,0,0.08);
    border-bottom: 1px solid rgba(255,215,0,0.08);

    padding: 16px 0;

    backdrop-filter: blur(10px);
}

/* LIST RESET */
.mod-breadcrumbs,
.mod-breadcrumbs ol,
.mod-breadcrumbs ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

/* FLEX */
.mod-breadcrumbs ol {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

/* ITEMS */
.mod-breadcrumbs li {
    display: flex;

    align-items: center;

    color: #999;

    font-size: 14px;
}

/* LINKS */
.mod-breadcrumbs a {
    color: gold;

    text-decoration: none;

    transition: 0.3s;
}

.mod-breadcrumbs a:hover {
    color: white;
}

/* SEPARATOR */
.mod-breadcrumbs li + li::before {
    content: "›";

    margin-right: 12px;

    color: rgba(255,215,0,0.5);
}

/* ACTIVE */
.mod-breadcrumbs .active {
    color: #fff;
}