/* Import base styles from app.css */
:root {
  --brand-color: #d2ff5c;
  --text-color: #ffffff;
  --body-bg-color: #02040a;
  --link-color: var(--brand-color);
  --link-hover-color: color-mix(in srgb, var(--link-color) 85%, #000);
  --button-color: var(--brand-color);
  --button-hover-color: color-mix(in srgb, var(--link-color) 85%, #000);
  --border-color: #ccc;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --font-family: "Montserrat", sans-serif;
  --font-tactic-sans-exd-bld: "TacticSansExd-Bld";
  --font-tactic-sans-exd-blk: "TacticSansExd-Blk";
  --font-tactic-sans-exd-lgt: "TacticSansExd-Lgt";
  --font-tactic-sans-bld: "TacticSans-Bld";
  --font-tactic-sans-exd-reg: "TacticSansExd-Reg";
  --font-size: 16px;
  --font-weight: 400;
  --heading-font-family: "TacticSansExd-Reg";
  --heading-font-size: 24px;
  --heading-font-weight: 700;
  --padding: 10px;
  --margin: 10px;
  --border-radius: 5px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 8px var(--shadow-color);
  --z-index: 1000;
  --container-max-width: 1170px;
  --grid-gap: 20px;
}

/* CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}



ol,
ul,
menu,
summary {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

/* Base Styles */
body {
  background-color: var(--body-bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  color: var(--text-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  transition: var(--transition);
}

a:hover {
  color: var(--link-hover-color);
}

strong {
  font-weight: 600;
}

.text-primary {
  color: var(--brand-color);
}

/* Layout Classes */
.container {
  max-width: var(--container-max-width);
  padding-inline: 15px;
  margin-inline: auto;
  padding-top: 20px;
  z-index: 20;
  position: sticky;
}

.container-lg {
  max-width: 1335px;
  width: 92%;
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: var(--gap, 24px);
  grid-template-columns: var(--template, auto);
  grid-auto-rows: minmax(0, max-content);
}

.flex {
  display: flex;
}

.flex-vertical {
  flex-direction: column;
}

.flex-y-center {
  align-items: center;
}

.flex-x-center {
  justify-content: center;
}

.flex-x-between {
  justify-content: space-between;
}

/* Button Styles */
.site-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--button-color);
  color: #000;
  padding-block: var(--padding);
  padding-inline: calc(var(--padding) * 2);
  border-radius: var(--border-radius);
  border: none;
  transition: var(--transition);
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 1.5rem;
  font-style: italic;
}

.site-btn:hover {
  background-color: var(--button-hover-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(210, 255, 92, 0.3);
}

/* Navigation Header */
.site-header {
  position: relative;
}

.site-header.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-block-start: 0;
  padding-bottom: 0;
  mask: none;
  /* background: rgba(2, 4, 10, 0.95); */
  backdrop-filter: blur(10px);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--body-bg-color);
  border-radius: 50px;
  border: 1px solid var(--brand-color);
}

.logo {
  display: flex;
  align-items: center;
  max-width: 105px;
}

.logo a {
  display: inline-flex;
}

.nav-wrap {
  position: relative;
}

.nav {
  --item-gap: 24px;
  text-transform: uppercase;
}

.nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--item-gap);
}

.nav ul li {
  display: flex;
  align-items: center;
  gap: var(--item-gap);
}

.nav ul li:not(:first-child)::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background-color: var(--brand-color);
  border-radius: 50%;
}

.nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  font-weight: bold;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: var(--link-hover-color);
}

/* Top Banner */
.top-banner {
  --gap: 32px;
  padding-block: 60px;
  text-align: center;
}

.top-banner img {
  max-width: 400px;
  width: 100%;
}

/* Main Content */
.site-main_schedule,
.site-main_stream,
.site-main_teams,
.site-main_info,
.site-main_tickets {
  padding-block-start: 2rem; 
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  background-attachment: fixed;
  padding-top: 100px;
  min-height: 100vh;
}

.site-main {
  background-image: url(../image/bg/home_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  background-attachment: fixed;
  min-height: 100vh;
}
.site-main_schedule {
  background-image: url(../image/bg/schedule_bg.jpg);
}
.site-main_stream {
  background-image: url(../image/bg/livestream_bg.jpg);
}
.site-main_teams {
  background-image: url(../image/bg/teams_bg.jpg);
}
.site-main_info {
  background-image: url(../image/bg/info_bg.jpg);
}
.site-main_tickets {
  background-image: url(../image/bg/tickets_bg.jpg);
}



.site-main.no-hero {
  margin-top: 0;
  padding-top: 120px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
              url(../image/hero_bg.jpg) center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 50,0 0,50" fill="rgba(210,255,92,0.1)"/><polygon points="100,100 50,100 100,50" fill="rgba(210,255,92,0.1)"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: clamp(3rem, 6vw, 6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 0.9;
}

.hero-subtitle {
  font-family: var(--font-tactic-sans-exd-lgt);
  font-size: 1.8rem;
  color: var(--brand-color);
  margin-bottom: 2rem;
}

.hero-date {
  font-family: var(--font-tactic-sans-bld);
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

/* Countdown Section */
.count-down-outer {
  text-align: center;
  font-family: var(--font-tactic-sans-exd-blk);
  padding: 60px 0;
}

.count-down-outer h2 {
  font-size: 2.25rem;
  margin-block-end: 6rem;
  font-family: inherit;
}

.countdown {
  --template: repeat(2, 1fr);
  --gap: 24px;
}

@media screen and (min-width: 768px) {
  .countdown {
    --template: repeat(4, 1fr);
    --gap: 36px;
  }
  
  .countdown-item {
    border-width: 6px !important;
  }
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  border: 3px dotted var(--brand-color);
  border-radius: 50%;
  aspect-ratio: 1;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.countdown-number {
  font-size: 4.5rem;
  color: var(--text-color);
  font-family: inherit;
}

.countdown-label {
  font-size: var(--font-size);
  color: var(--text-color);
  font-family: inherit;
}

/* Section Styles */
.content-section {
  text-align: center;
  /* max-width: 930px; */
  margin-inline: auto;
  padding: 80px 0;
}

.content-section_live {
  text-align: center;
  /* max-width: 930px; */
  margin-inline: auto;
  padding: 80px 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3); 
  margin-top: 80px; 
  padding-top: 60px;
}

.section-title {
  font-size: 3.85rem;
  font-family: var(--font-tactic-sans-exd-blk);
  margin-bottom: 1rem;
}

.section-title small {
  display: block;
  font-family: var(--font-tactic-sans-exd-lgt);
  font-size: 0.5em;
}

.section-subtitle {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  font-family: var(--font-tactic-sans-exd-lgt);
}

.down-arrow {
  display: flex;
  justify-content: center;
  margin-block: 3rem;
}

.down-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 2rem solid var(--brand-color);
}

/* Teams Section */
.teams-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.05) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  position: relative;
}

.teams-grid {
  --template: repeat(auto-fill, minmax(350px, 1fr));
  --gap: 30px;
}


.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(210, 255, 92, 0.2);
  border-radius: 15px;
  overflow: visible; 
  transition: var(--transition);
  position: relative;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(210, 255, 92, 0.2);
  border-color: var(--brand-color);
}

.team-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.2), rgba(137, 181, 0, 0.2));
  position: relative;
  overflow: visible; 
  border-radius: 15px 15px 0 0; 
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0; 
}


.team-logo {
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: var(--body-bg-color);
  border: 1px solid var(--brand-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 2rem;
  color: var(--brand-color);
  z-index: 10; 
}

.team-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.team-info {
  padding: 50px 30px 30px;
  position: relative;
  z-index: 1;
}

.team-name {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.team-region {
  color: var(--brand-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: var(--font-tactic-sans-exd-lgt);
}

.team-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: left;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
}

.stat-value {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.2rem;
  color: var(--brand-color);
}



.team-profile-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-profile-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(210,255,92,0.1) 0%, transparent 50%);
}

.team-profile-hero-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.team-profile-logo {
  width: 120px;
  height: 120px;
  background: var(--body-bg-color);
  border: 3px solid var(--brand-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.3);
}

.team-profile-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.team-profile-info h1 {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-profile-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.team-profile-stat {
  text-align: center;
}

.team-profile-stat-value {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 2rem;
  color: var(--brand-color);
  display: block;
}

.team-profile-stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
}

.team-profile-main {
  padding: 80px 0;
}

.team-profile-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.team-profile-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-profile-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.team-profile-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(210, 255, 92, 0.2);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.team-profile-card:hover {
  border-color: rgba(210, 255, 92, 0.4);
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.1);
}

.team-profile-card-title {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--brand-color);
  text-transform: uppercase;
}

.team-profile-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.team-profile-player {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.team-profile-player:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 255, 92, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-profile-player-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.3), rgba(137, 181, 0, 0.3));
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 1.5rem;
  color: var(--brand-color);
}

.team-profile-player-alias {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-profile-player-name {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.team-profile-player-role {
  background: var(--brand-color);
  color: #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.team-profile-achievements {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-profile-achievement {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--brand-color);
}

.team-profile-achievement-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
}

.team-profile-achievement-text {
  flex: 1;
}

.team-profile-achievement-title {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1rem;
  margin-bottom: 3px;
}

.team-profile-achievement-year {
  font-size: 0.8rem;
  opacity: 0.6;
}

.team-profile-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.team-profile-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  transition: var(--transition);
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.team-profile-social-link:hover {
  background: rgba(210, 255, 92, 0.1);
  border-color: var(--brand-color);
  transform: translateY(-2px);
}

.team-profile-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.team-profile-strategy {
  line-height: 1.7;
  font-size: 1.1rem;
}

.team-profile-matches {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-profile-match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--brand-color);
}

.team-profile-match-info {
  flex: 1;
}

.team-profile-match-tournament {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.team-profile-match-opponent {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.1rem;
}

.team-profile-match-score {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.2rem;
  color: var(--brand-color);
}

.team-profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-profile-stat-item {
  text-align: center;
}

.team-profile-stat-number {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 2rem;
  color: var(--brand-color);
}

.team-profile-stat-desc {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
  .team-profile-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-profile-hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .team-profile-stats {
    justify-content: center;
  }

  .team-profile-players {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .team-profile-stats {
    gap: 20px;
  }

  .team-profile-stat-value {
    font-size: 1.5rem;
  }

  .team-profile-players {
    grid-template-columns: 1fr;
  }

  .team-profile-social {
    flex-direction: column;
  }

  .team-profile-social-link {
    justify-content: center;
  }
}







/* News Section */
.news-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.news-grid {
  --template: repeat(auto-fill, minmax(280px, 1fr));
  --gap: 30px;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(210, 255, 92, 0.3);
}

.news-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.2), rgba(137, 181, 0, 0.2));
  position: relative;
  overflow: hidden;
}

.news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand-color);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-content {
  padding: 30px;
}

.news-date {
  color: var(--brand-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: var(--font-tactic-sans-exd-lgt);
}

.news-title {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}




/* Schedule Page */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(210, 255, 92, 0.3);
  border-radius: 30px;
  color: var(--text-color);
  transition: var(--transition);
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1rem;
  text-transform: uppercase;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--brand-color);
  color: #000;
  border-color: var(--brand-color);
}

.schedule-day {
  margin-bottom: 60px;
}

.day-header {
  background: linear-gradient(90deg, rgba(210, 255, 92, 0.2), transparent);
  padding: 20px 30px;
  margin-bottom: 30px;
}

.day-title {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 2rem;
  margin-bottom: 5px;
}

.day-date {
  color: var(--brand-color);
  font-family: var(--font-tactic-sans-exd-lgt);
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.match-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  display: grid;
  grid-template-columns: 100px 1fr auto 1fr 100px;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.match-item:hover {
  border-color: var(--brand-color);
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.1);
}

.match-time {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.2rem;
  text-align: center;
}

.team-vs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-vs img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.vs-divider {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 1.5rem;
  color: var(--brand-color);
  text-align: center;
}

.match-info {
  text-align: center;
}

.match-stage {
  font-size: 0.9rem;
  opacity: 0.7;
}

.match-format {
  font-family: var(--font-tactic-sans-exd-bld);
  color: var(--brand-color);
}








/* Livestream Layout - Rail-Slider left, Video right */
.livestream-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  padding: 30px 0;
}

.video-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  order: 2; /* Video section on the right */
}

.sidebar {
  order: 1; /* Sidebar on the left */
}

/* Dummy Video Player */
.video-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-player-dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/video_play.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-player-dummy:hover {
  filter: brightness(1.1);
}

.video-player-dummy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.video-player-dummy:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.play-button {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: rgba(210, 255, 92, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(210, 255, 92, 0.4);
}

.play-button:hover {
  background: var(--brand-color);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(210, 255, 92, 0.6);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Hide the actual iframe initially */
.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.video-player.playing iframe {
  display: block;
}

.video-player.playing .video-player-dummy {
  display: none;
}

.video-info {
  padding: 30px;
}

.stream-title {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 2rem;
  margin-bottom: 15px;
}

.stream-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff4444;
  font-weight: 700;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Rail Slider Improvements */
.rail-slider {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  height: 700px;
  overflow-y: auto;
  position: sticky;
  top: 120px;
  backdrop-filter: blur(10px);
}

/* Custom Scrollbar */
.rail-slider::-webkit-scrollbar {
  width: 6px;
}

.rail-slider::-webkit-scrollbar-track {
  background: #02030B;
  border-radius: 3px;
}

.rail-slider::-webkit-scrollbar-thumb {
  background: #D2FF5C;
  border-radius: 3px;
}

.rail-slider::-webkit-scrollbar-thumb:hover {
  background: #b8e047;
}

/* Firefox scrollbar */
.rail-slider {
  scrollbar-width: thin;
  scrollbar-color: #D2FF5C #02030B;
}

.rail-header {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
  color: var(--brand-color);
}

.livestream-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3px;
}

.livestream-tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 18px;
  color: var(--text-color);
  transition: var(--transition);
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.livestream-tab-btn.active,
.livestream-tab-btn:hover {
  background: var(--brand-color);
  color: #000;
}

.stream-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Live Stream Items */
.stream-item-live {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto auto auto;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.stream-item-live:hover {
  background: rgba(210, 255, 92, 0.1);
  transform: translateX(3px);
  border-color: rgba(210, 255, 92, 0.3);
}

.stream-item-live.active {
  border-color: var(--brand-color);
  background: rgba(210, 255, 92, 0.15);
}

.stream-thumbnail-live {
  grid-row: 1 / 3;
  width: 90px;
  height: 50px;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.2), rgba(137, 181, 0, 0.2));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.stream-thumbnail-live img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-title-live {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-color);
  text-transform: uppercase;
}

.stream-status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  margin: 0;
}

.stream-teams-live {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.team-logo-small {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-vs-text {
  font-size: 0.65rem;
  opacity: 0.8;
  font-family: var(--font-tactic-sans-exd-lgt);
  margin-left: 4px;
}

/* Upcoming Stream Items */
.stream-item-upcoming {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto auto auto;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.stream-thumbnail-upcoming {
  grid-row: 1 / 3;
  width: 70px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.stream-thumbnail-upcoming img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-title-upcoming {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 0.75rem;
  margin: 0;
  color: var(--text-color);
  text-transform: uppercase;
}

.stream-time-upcoming {
  font-size: 0.65rem;
  color: var(--brand-color);
  font-family: var(--font-tactic-sans-exd-bld);
  margin: 0;
}

.stream-teams-upcoming {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.upcoming-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffa500;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.6rem;
}

.upcoming-dot {
  width: 6px;
  height: 6px;
  background: #ffa500;
  border-radius: 50%;
}

/* Content State Classes */
.stream-content-live {
  display: block;
}

.stream-content-upcoming {
  display: none;
}

.stream-content-upcoming.active {
  display: block;
}

.stream-content-live.inactive {
  display: none;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
  .livestream-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    order: 2;
  }
  
  .video-section {
    order: 1;
  }
  
  .rail-slider {
    position: relative;
    top: 0;
    height: auto;
    max-height: 400px;
  }
  
  .stream-item-live {
    grid-template-columns: 80px 1fr;
    gap: 6px;
    padding: 10px;
  }
  
  .stream-thumbnail-live {
    width: 80px;
    height: 45px;
  }
}






/* Logo Slider Styles */
.sponsor-slider {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(210, 255, 92, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.sponsor-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(2, 4, 10, 1) 0%, rgba(2, 4, 10, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.sponsor-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(270deg, rgba(2, 4, 10, 1) 0%, rgba(2, 4, 10, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.sponsor-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 80px;
  align-items: center;
}

.sponsor-logo {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0.8);
}

.sponsor-logo:hover {
  opacity: 1;
  filter: brightness(1);
}

.sponsor-logo img {
  height: 100%;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-slider:hover .sponsor-track {
  animation-play-state: paused;
}

.sponsor-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-tactic-sans-exd-lgt);
  font-size: 0.9rem;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* More Info Seite */
.gd-overview {
  display: flex;
  flex-direction: column;      
  align-items: center;        
  width: 100%;
}

.gd-overview-facts {
  text-align: center;         
  max-width: 800px;           
  padding: 0 1rem;             
}

/* Tickets Page Specific Styles */
.event-info-section {
  margin-bottom: 5rem;
  text-align: center;
}

.event-hero {
  margin-bottom: 3rem;
}

.event-title {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--brand-color);
  text-transform: uppercase;
}

.event-description {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detail-item {
  display: block;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(210, 255, 92, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-align: center;
}

.detail-item:hover {
  border-color: var(--brand-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.1);
}

.detail-icon {
  display: none;
}

.detail-content h3 {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--brand-color);
}

.detail-content p {
  font-size: 1rem;
  opacity: 0.8;
}

.ticket-section {
  margin: 5rem 0;
  text-align: center;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ticket-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ticket-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-color);
  box-shadow: 0 20px 40px rgba(210, 255, 92, 0.2);
}

.ticket-card.featured {
  border-color: var(--brand-color);
  background: rgba(210, 255, 92, 0.05);
  transform: scale(1.05);
}

.ticket-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-color);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-header {
  margin-bottom: 2rem;
}

.ticket-name {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--brand-color);
}

.ticket-price {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 3rem;
  color: var(--text-color);
}

.ticket-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.ticket-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.ticket-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-color);
  font-weight: bold;
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-footer {
  margin-top: auto;
}

.ticket-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.schedule-preview {
  margin: 5rem 0;
  text-align: center;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.schedule-day-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(210, 255, 92, 0.2);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.schedule-day-card:hover {
  border-color: var(--brand-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.1);
}

.day-number {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 3rem;
  color: var(--brand-color);
  flex-shrink: 0;
}

.day-info {
  text-align: left;
}

.day-info h3 {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.day-info p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.day-time {
  font-size: 0.9rem;
  color: var(--brand-color);
  font-weight: 600;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(210, 255, 92, 0.1), rgba(137, 181, 0, 0.1));
  border-radius: 20px;
  margin: 5rem 0;
}

.cta-section h2 {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand-color);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
}

.cta-btn-secondary:hover {
  background: var(--brand-color);
  color: #000;
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .event-details {
    grid-template-columns: 1fr;
  }

  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    grid-template-columns: 1fr;
  }

  .schedule-day-card {
    flex-direction: column;
    text-align: center;
  }

  .day-info {
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn, .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}


/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: #d2ff5c 1px solid;
  background: rgba(0, 0, 0, 0.5);
}

.site-footer .container-lg {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-logo{
  max-width: 105px;
}

.sm-icons {
  display: flex;
  gap: 1rem;
}

.sm-icons svg {
  color: #c1c1c1;
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.sm-icons a:hover svg {
  color: var(--brand-color);
}

.copyrights {
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .nav-wrap {
    margin-inline-start: auto;
    margin-inline-end: 2rem;
  }
  
  .nav {
    position: absolute;
    background: #000;
    top: 100%;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    right: -50px;
    width: 250px;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .nav.show-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .nav ul {
    flex-direction: column;
  }
  
  .teams-grid {
    --template: 1fr;
  }
  
  .livestream-layout {
    grid-template-columns: 1fr;
  }
  
  .rail-slider {
    position: relative;
    top: 0;
    height: auto;
    max-height: 400px;
  }
}




@media screen and (max-width: 767px) {
  .site-footer .container-lg {
    flex-direction: column;
  }
  
  .news-grid {
    --template: 1fr;
  }
  
  .match-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }
  
  .team-vs {
    justify-content: center;
  }
  
  /* Mobile specific adjustments */
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-date {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .countdown-number {
    font-size: 3rem;
  }
  
  .count-down-outer h2 {
    font-size: 1.8rem;
    margin-block-end: 3rem;
  }
  
  .team-card {
    margin-bottom: 30px;
  }
  
  .team-name {
    font-size: 1.5rem;
  }
  
  .team-stats {
    /* flex-direction: column; */
    gap: 15px;
    text-align: center;
  }
  
  .news-title {
    font-size: 1.2rem;
  }
  
  .top-banner img {
    max-width: 250px;
  }
  
  .logo {
    max-width: 80px;
  }
  
 
  .sponsor-logo {
    height: 40px;
  }
  
  .sponsor-track {
    gap: 40px;
  }
  
  /* Schedule page mobile */
  .day-title {
    font-size: 1.5rem;
  }
  
  .match-time {
    font-size: 1rem;
  }
  
  /* Teams page mobile */
  .team-profile-hero {
    min-height: auto;
    padding: 60px 0;
  }
  
  .team-profile-info h1 {
    font-size: 2rem;
  }
  
  .team-profile-stat-value {
    font-size: 1.5rem;
  }
  
  .team-profile-card-title {
    font-size: 1.5rem;
  }
  
  /* Livestream page mobile */
  .stream-title {
    font-size: 1.5rem;
  }
  
  .video-info {
    padding: 20px;
  }
  
  /* Tickets page mobile */
  .event-title {
    font-size: 2rem;
  }
  
  .ticket-price {
    font-size: 2.5rem;
  }
  
  .day-number {
    font-size: 2.5rem;
  }
  
  /* Info page mobile */
  .gd-overview-facts {
    padding: 0 0.5rem;
  }
  
  .gd-overview-facts h2 {
    font-size: 1.8rem;
  }
  
  /* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(210, 255, 92, 0.3);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalIn 0.3s ease;
}

.modal-content.smaller {
  max-width: 500px;
}

.modal-content.large {
  max-width: 900px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: 1.8rem;
  color: var(--brand-color);
  text-transform: uppercase;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-color);
}

.modal-body {
  padding: 30px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.modal-btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-family: var(--font-tactic-sans-exd-bld);
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
}

.modal-btn.save {
  background: var(--brand-color);
  color: #000;
}

.modal-btn.save:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.3);
}

.modal-btn.cancel {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-btn.cancel:hover {
  border-color: var(--brand-color);
  color: var(--brand-color);
}

/* Form Group Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--brand-color);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 255, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Body overflow when nav is open */
  body.nav-open {
    overflow: hidden;
  }
}/* User Account Display */
.user-account {
  position: relative;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--brand-color);
  overflow: hidden;
  transition: var(--transition);
}

.user-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(210, 255, 92, 0.4);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(210, 255, 92, 0.3);
  border-radius: 15px;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.user-name {
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.1rem;
  color: var(--brand-color);
}

.user-email {
  font-size: 0.9rem;
  opacity: 0.7;
}

.dropdown-menu {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(210, 255, 92, 0.1);
  color: var(--brand-color);
}

/* Mobile Navigation Toggle */
/* Hamburger Menu Styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--brand-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  display: block;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 991px) {
  /* Show hamburger on mobile */
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Adjust if user is logged in */
  .user-account {
    position: relative;
    margin-right: 50px; /* Space for hamburger */
  }
  
  /* Adjust login button position */
  .top-nav .site-btn {
    margin-right: 50px; /* Space for hamburger */
  }
  
  /* Navigation menu mobile styles */
  .nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    top: 100%;
    right: -20px;
    width: 280px;
    margin-top: 20px;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(210, 255, 92, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  .nav.show-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .nav ul li {
    width: 100%;
  }
  
  .nav ul li:not(:first-child)::before {
    display: none;
  }
  
  .nav ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav ul li a:hover,
  .nav ul li a.active {
    background: rgba(210, 255, 92, 0.1);
    color: var(--brand-color);
    transform: translateX(5px);
  }
  
  /* Top nav adjustments */
  .top-nav {
    position: relative;
    padding: 16px 20px;
  }
  
  /* Logo size on mobile */
  .logo {
    max-width: 80px;
  }
  
  /* Hide nav wrap background on mobile */
  .nav-wrap {
    background: transparent;
    border: none;
    padding: 0;
  }
}

/* Small mobile screens */
@media screen and (max-width: 480px) {
  .nav-toggle {
    right: 15px;
    width: 30px;
    height: 30px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 2px 0;
  }
  
  .user-account {
    margin-right: 45px;
  }
  
  .top-nav .site-btn {
    margin-right: 45px;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .nav {
    width: 250px;
    right: -15px;
  }
  
  .logo {
    max-width: 70px;
  }

  /* .countdown {
    --template: repeat(4, 1lfr)
  } */
  .countdown-number {
    font-size: 14px;
  }
  .grid {
    gap: var(--gap, 2px);
  }
}

/* Overlay when menu is open */
body.nav-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body.nav-open::before {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when nav is open */
body.nav-open {
  overflow: hidden;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: #d2ff5c 1px solid;
  background: rgba(0, 0, 0, 0.5);
}









/* Navigation spacing adjustment */
.site-header + .hero-slider-wrapper {
  margin-top: -100px; 
}

.hero-swiper {
  width: 100%;
  height: 800px;
}

@media (max-width: 991px) {
  .hero-swiper {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .hero-swiper {
    height: 400px;
  }
}

/* Slide Styles */
.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: start;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
}

/* Slide Content - Video Slide specific positioning */
.video-slide .slide-content {
  position: relative;
  z-index: 3; /* Higher than video overlay */
}

.slide-logo {
  margin-bottom: 30px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.slide-logo img {
  /* max-height: auto; */
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.slide-title {
  font-family: var(--font-tactic-sans-exd-blk);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.slide-title .highlight {
  color: var(--brand-color);
  display: inline-block;
  position: relative;
}

.slide-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-color);
  animation: underlineExpand 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes underlineExpand {
  to {
    width: 100%;
  }
}

.slide-text {
  font-family: var(--font-tactic-sans-exd-lgt);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-cta {
  margin-top: 20px;
}

.slide-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--brand-color);
  color: #000;
  font-family: var(--font-tactic-sans-exd-bld);
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(210, 255, 92, 0.3);
  position: relative;
  overflow: hidden;
}

.slide-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.slide-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(210, 255, 92, 0.4);
  color: #000;
}

.slide-btn:hover::before {
  left: 100%;
}

/* Video Slide - Fullscreen Video */
.video-slide.swiper-slide {
  background: #000;
}

.video-container.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fullscreen-video .video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

/* Scale video to cover entire area */
@media (aspect-ratio: 16/9) {
  .fullscreen-video .video-wrapper {
    width: 100%;
    height: 100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-video .video-wrapper {
    width: 177.77vh; /* 16/9 ratio */
    height: 100vh;
  }
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-video .video-wrapper {
    width: 100vw;
    height: 56.25vw; /* 9/16 ratio */
  }
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper #youtube-player {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--brand-color);
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(210, 255, 92, 0.2);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--brand-color);
  width: 30px;
  border-radius: 6px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-swiper-animation] {
  opacity: 0;
}

.swiper-slide-active [data-swiper-animation] {
  animation-fill-mode: both;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .slide-content {
    padding: 20px;
  }

  .slide-logo img {
    max-height: 60px;
    max-width: 150px;
  }

  .slide-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }

  /* Hide navigation arrows on very small screens */
  @media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: none;
    }
  }
}

/* Ensure smooth transitions */
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

/* Loading state */
.hero-slider-wrapper.loading {
  background: #000;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-wrapper.loading::after {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid rgba(210, 255, 92, 0.3);
  border-top-color: var(--brand-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* News Ticker Styles */
.news-ticker-wrapper {
    position: relative;
    width: 100vw;
    height: 100px;
    margin-left: calc(50% - 50vw);
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.news-ticker-wrapper * {
    pointer-events: none; /* Verhindert dass Kindelemente den Click abfangen */
}

/* Fixed Label Box */
.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--brand-color);
    padding: 0 40px;
    display: flex;
    align-items: center;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    min-width: 220px;
}

.ticker-label span {
    font-family: var(--font-tactic-sans-exd-blk);
    font-size: 1.3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* News Ticker Container */
.news-ticker {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-left: 250px; /* Space for label */
    display: flex;
    align-items: center;
}

/* Scrolling Text */
.ticker-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: scroll-ticker 60s linear infinite;
}

.ticker-text {
    font-family: var(--font-tactic-sans-exd-reg);
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 50px; /* Space between repeats */
}

/* Scroll Animation */
@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Gradient Fade Edges */
.news-ticker::before,
.news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.news-ticker::before {
    left: 290px;
    background: linear-gradient(90deg, #0a0a0a 0%, transparent 100%);
}

.news-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #0a0a0a 0%, transparent 100%);
}

/* Mobile Responsive - Kompakter und nur "NEWS" */
@media (max-width: 769px) {
    .news-ticker-wrapper {
        height: 50px; /* Deutlich kleiner */
    }
    
    .ticker-label {
        padding: 0 15px; /* Weniger Padding */
        min-width: 80px; /* Viel schmaler für nur "NEWS" */
    }
    
    .ticker-label span {
        font-size: 0.8rem; /* Kleinere Schrift */
        letter-spacing: 1px;
    }
    
    .ticker-label span::after {
        content: "NEWS"; /* Überschreibt "BREAKING NEWS" mit nur "NEWS" */
    }
    
    .ticker-label span {
        font-size: 0; /* Versteckt ursprünglichen Text */
    }
    
    .ticker-label span::after {
        font-size: 0.8rem; /* Zeigt nur "NEWS" */
    }
    
    .news-ticker {
        padding-left: 100px; /* Angepasst an kleinere Label-Breite */
    }
    
    .ticker-text {
        font-size: 0.75rem; /* Kleinere Schrift für Text */
        letter-spacing: 0.5px;
    }
    
    .ticker-content {
        animation-duration: 45s; /* Etwas schneller */
    }
    
    .news-ticker::before {
        left: 90px; /* Angepasst */
        width: 30px; /* Kleinerer Fade */
    }
    
    .news-ticker::after {
        width: 30px; /* Kleinerer Fade */
    }
}

/* Noch kleinere Bildschirme */
@media (max-width: 480px) {
    .news-ticker-wrapper {
        height: 40px; /* Noch kompakter */
    }
    
    .ticker-label {
        padding: 0 12px;
        min-width: 70px;
    }
    
    .ticker-label span::after {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .news-ticker {
        padding-left: 85px;
    }
    
    .ticker-text {
        font-size: 0.65rem;
    }
        .news-ticker::before {
        left: 60px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .news-ticker-wrapper {
        border-top: 2px solid var(--brand-color);
        border-bottom: 2px solid var(--brand-color);
    }
}
















@media screen and (max-width: 991px) {
  /* Navigation Toggle Button */
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 80px; /* Platz für Login-Button oder User-Account */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }
  
  /* Wenn User eingeloggt ist */
  .user-account ~ .nav-wrap .nav-toggle {
    right: 15px; /* Näher am Rand, da User-Account links vom Toggle ist */
  }
  
  /* Top Nav anpassen */
  .top-nav {
    position: relative;
    padding: 16px 20px; /* Weniger padding auf Mobile */
  }
  
  /* Logo kleiner auf Mobile */
  .logo {
    max-width: 80px;
  }
  
  /* Login Button auf Mobile */
  .top-nav > div:last-child {
    margin-left: auto;
    padding-right: 60px; /* Platz für Hamburger Menu */
  }
  
  /* User Account auf Mobile */
  .user-account {
    position: relative;
    margin-left: auto;
    padding-right: 60px; /* Platz für Hamburger Menu */
  }
  
  .user-account .user-avatar {
    width: 40px;
    height: 40px;
  }
  
  /* User Dropdown anpassen */
  .user-dropdown {
    right: -20px; /* Dropdown mehr nach links verschieben */
    min-width: 220px;
  }
  
  /* Nav Menu Position */
  .nav {
    right: -20px; /* Weniger Überlappung */
    width: 280px; /* Etwas breiter */
    top: calc(100% + 10px); /* Weniger Abstand */
  }
}

/* Sehr kleine Bildschirme */
@media screen and (max-width: 480px) {
  .nav-toggle {
    right: 20px; /* Noch weniger Platz benötigt */
  }
  
  .user-account ~ .nav-wrap .nav-toggle {
    right: 10px;
  }
  
  .top-nav {
    padding: 12px 15px;
  }
  
  .logo {
    max-width: 70px;
  }
  
  .site-btn {
    font-size: 1rem;
    padding: 8px 16px;
  }
  
  .nav {
    width: 250px;
    right: -15px;
  }
}


/* Gaming Cursor Styles */
/* Standard-Cursor: Gamepad */


html, body {
  cursor: url('../image/ctrl_icon.svg') 12 12, auto;
}


.cursor-cross {
  cursor: url('../image/cross_icon.svg') 10 10, pointer;
}

/* Hover-Cursor: Fadenkreuz für interaktive Elemente */
a,
button,
.card,
.match-card,
.team-card,
.player-card,
.bracket-match,
.clickable,
[role="button"],
[onclick],
input[type="button"],
input[type="submit"],
.nav-link,
.dropdown-item,
.btn,
.tournament-card,
.stream-card {
  cursor: url('../image/cross_icon.svg') 10 10, crosshair;
}

/* Spezielle Cursor für bestimmte Aktionen */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
.form-control {
  cursor: url('../image/cross_icon.svg') 10 10, text;
}

/* Disabled Elements behalten Standard-Cursor */
[disabled],
.disabled {
  cursor: url('../image/ctrl_icon.svg') 12 12, not-allowed !important;
}

/* Loading/Progress Cursor */
.loading,
.processing {
  cursor: url('../image/ctrl_icon.svg') 12 12, progress;
}

/* Drag & Drop Areas */
.draggable {
  cursor: url('../image/ctrl_icon.svg') 12 12, grab;
}

.draggable:active,
.dragging {
  cursor: url('../image/ctrl_icon.svg') 12 12, grabbing;
}

/* Hero Slider - Gamepad Cursor für Drag */
.swiper-container,
.swiper-wrapper,
.slider-container,
.glide,
.splide,
.carousel,
.hero-slider,
[data-slider],
.slick-slider {
  cursor: url('../image/ctrl_icon.svg') 12 12, grab !important;
}

/* Aktiver Drag-Zustand */
.swiper-container:active,
.slider-container:active,
.glide:active,
.splide:active,
.carousel:active,
.hero-slider:active,
.slick-slider:active,
.swiper-container.swiper-grabbing,
.is-dragging {
  cursor: url('../image/ctrl_icon.svg') 12 12, grabbing;
}

/* Slider Navigation Buttons behalten Crosshair */
.swiper-button-next,
.swiper-button-prev,
.glide__arrow,
.splide__arrow,
.carousel-control-prev,
.carousel-control-next,
.slider-nav,
.slick-arrow {
  cursor: url('../image/cross_icon.svg') 10 10, pointer !important;
}

/* Slider Pagination/Dots behalten Crosshair */
.swiper-pagination-bullet,
.glide__bullet,
.splide__pagination__page,
.carousel-indicators button,
.slick-dots li button {
  cursor: url('../image/cross_icon.svg') 10 10, pointer !important;
}

/* Links die in neuem Tab öffnen */
a[target="_blank"] {
  cursor: url('../image/cross_icon.svg') 10 10, alias;
}

/* Zoom-fähige Elemente (z.B. Bilder in Galerie) */
.zoomable,
[data-zoom] {
  cursor: url('../image/cross_icon.svg') 10 10, zoom-in;
}

/* Tooltips und Info-Icons */
[data-tooltip],
[title],
.info-icon,
.help-icon {
  cursor: url('../image/cross_icon.svg') 10 10, help;
}

/* Video Player Controls */
.video-controls button,
.player-controls {
  cursor: url('../image/cross_icon.svg') 10 10, pointer;
}

/* Selection nicht möglich */
.no-select,
.unselectable {
  cursor: url('../image/ctrl_icon.svg') 12 12, default;
  user-select: none;
}

/* Mobile Touch Feedback Alternative */
@media (hover: none) and (pointer: coarse) {
  /* Auf Touch-Geräten keine custom Cursor */
  * {
    cursor: auto !important;
  }
}

/* Fallback für Browser die SVG-Cursor nicht unterstützen */
@supports not (cursor: url('test.svg'), auto) {
  html, body {
    cursor: auto;
  }
  
  a, button, .card, .clickable {
    cursor: pointer;
  }
}