:root {
  --green: #00a94f;
  --green2: #008f43;
  --green-dark: #002b19;
  --green-deep: #00170e;
  --white: #ffffff;
  --text: #0d1c13;
  --muted: #6c7a72;
  --glow: 0 0 35px rgba(0, 255, 120, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 169, 79, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 255, 120, 0.18), transparent 30%),
    linear-gradient(135deg, #f2fff7, #dff8e9);
}

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

.topbar {
  position: fixed;
  top: 18px;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
}

.nav {
  max-width: 1220px;
  height: 78px;
  margin: auto;
  padding: 0 24px;
  border-radius: 28px;

  background: linear-gradient(
  135deg,
  #15803d,
  #22c55e,
  #16a34a,
  #14532d
);

background-size: 300% 300%;
animation: gradientMove 8s ease infinite;

  border: 1px solid rgba(160, 255, 195, 0.35);
  box-shadow:
    0 0 35px rgba(0, 255, 120, 0.35),
    0 22px 60px rgba(0, 40, 18, 0.35);

  backdrop-filter: blur(18px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav a{
  position: relative;
  transition: 0.3s ease;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:2px;
  background:white;
  border-radius:10px;
  transition:0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-weight: 900;
}

.brand img {
  width: 50px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.45));
}

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

.nav nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s;
}

.nav nav a:hover {
  color: white;
  text-shadow: 0 0 16px rgba(255,255,255,0.75);
}

#menuBtn {
  display: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: white;
  color: var(--green-dark);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 18, 10, 0.92) 0%, rgba(0, 35, 20, 0.74) 42%, rgba(0,0,0,0.35) 100%),
    url("Mannschaft.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 45%, rgba(0, 255, 120, 0.32), transparent 28%),
    radial-gradient(circle at 75% 25%, rgba(0, 169, 79, 0.28), transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  min-height: 100vh;
  margin: auto;
  padding: 170px 24px 100px;

  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.label {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 20px;

  background: rgba(0, 169, 79, 0.15);
  border: 1px solid rgba(0, 169, 79, 0.3);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.label.light {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.24);
  color: white;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -5px;
  margin-bottom: 28px;
  text-shadow: 0 14px 35px rgba(0,0,0,0.45);
}

.hero-text p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255,255,255,0.84);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  padding: 16px 25px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.main {
  background: var(--green);
  color: white;
  box-shadow: var(--glow);
}

.btn.glass {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 36px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(0,169,79,0.72), rgba(0,23,14,0.82));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36), var(--glow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.hero-card img {
  width: 230px;
  margin-bottom: 22px;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.35));
}

.hero-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.hero-card p {
  color: rgba(255,255,255,0.74);
}

.quick-info {
  max-width: 1220px;
  margin: -48px auto 70px;
  padding: 0 24px;
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-info div {
    padding: 28px;
    border-radius: 26px;
    text-align: center;
    color: white;

    background:
    linear-gradient(145deg, var(--green), var(--green-dark));

    box-shadow: 0 18px 50px rgba(0, 80, 38, 0.32);

    transition: all 0.3s ease;
    cursor: pointer;
}
.quick-info div:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 80, 38, 0.4);
}

.quick-info strong {
  display: block;
  color: #b8ffd2;
  font-size: 30px;
  margin-bottom: 8px;
}

.quick-info span {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.section {
  max-width: 1220px;
  margin: auto;
  padding: 95px 24px;
}

.section-head {
  margin-bottom: 42px;
}

.section-head h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.section-head p,
.club-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.club-card,
.player-card,
.fixture {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,169,79,0.16);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 22px 65px rgba(0, 60, 28, 0.09);
  transition: 0.25s;
}

.club-card:hover,
.player-card:hover,
.fixture:hover {
    transform: translateY(-6px);

    border: 1px solid #4cff4c;

    box-shadow:
    0 0 14px rgba(76,255,76,0.45),
    0 0 35px rgba(76,255,76,0.2);
}

.club-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.games {
  padding: 110px 24px;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(0,255,120,0.24), transparent 35%),
    linear-gradient(135deg, var(--green-deep), var(--green-dark));
}

.games .section-head,
.match,
.fixtures {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.games .section-head p {
  color: rgba(255,255,255,0.72);
}

.match {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 26px;
  align-items: center;

  padding: 38px;
  border-radius: 42px;

  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
}

.team {
  text-align: center;
}

.team img,
.opponent-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.team img {
  object-fit: contain;
}

.opponent-logo {
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.match-center {
  text-align: center;
}

.match-center h4 {
  font-size: 22px;
  margin: 18px 0;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.timer div {
  padding: 20px 10px;
  border-radius: 22px;
  background: white;
  color: var(--green-dark);
}

.timer strong {
  display: block;
  font-size: 32px;
}

.timer span {
  font-weight: 900;
  color: var(--muted);
  font-size: 13px;
}

.football-link {
  display: inline-flex;
  margin-top: 22px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
  box-shadow: var(--glow);
}

.fixtures {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fixture span {
  color: var(--green);
  font-weight: 900;
}

.fixture h3 {
  color: var(--green-dark);
  margin: 12px 0;
}

.fixture p {
  color: var(--muted);
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filters button {
  border: none;
  padding: 13px 18px;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.filters button.active {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(0,169,79,0.25);
}

.players {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.player-card {
  position: relative;
  overflow: hidden;
}

.player-number {
  position: absolute;
  right: 22px;
  top: 15px;
  font-size: 58px;
  font-weight: 900;
  color: rgba(0,169,79,0.13);
}

.player-avatar {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.player-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.player-card p {
  color: var(--muted);
  font-weight: 800;
}

.contact {
  max-width: 1220px;
  margin: 70px auto;
  padding: 0 24px;
}

.contact-inner {
  padding: 80px 34px;
  border-radius: 44px;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 35%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: var(--glow);
}

.contact-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-buttons a {
  background: white;
  color: var(--green-dark);
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
}

footer {
  padding: 60px 24px;
  text-align: center;
  color: var(--muted);
}

footer img {
  width: 80px;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .nav nav {
    display: none;
  }

  .nav nav.open {
    display: flex;
    position: absolute;
    top: 88px;
    left: 24px;
    right: 24px;
    padding: 28px;
    border-radius: 26px;
    flex-direction: column;
    background: var(--green-dark);
  }

  #menuBtn {
    display: block;
  }

  .hero-inner,
  .match {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero h1 {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .quick-info,
  .club-grid,
  .fixtures,
  .players {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background-position: center;
  }
}
.captain-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 169, 79, 0.35);
}

.profile-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
  font-size: 13px;
}
.position-title {
  grid-column: 1 / -1;
  margin-top: 10px;
  margin-bottom: 8px;
}

.position-title h2 {
  font-size: 42px;
  color: var(--green-dark);
  letter-spacing: -1px;

  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 169, 79, 0.18);
}
.player-avatar {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #1fa34a;
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.player-card:hover{
  transform: translateY(-8px);
  border: 2px solid #22c55e;
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.15),
    0 20px 40px rgba(0,0,0,0.15),
    0 0 25px rgba(34,197,94,0.35);
}
.player-image img{
  transition: transform 0.3s ease;
}

.player-card:hover .player-image img{
  transform: scale(1.06);
}
.kader-stats{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:40px;
  margin-bottom: 28px;
}

.kader-stats div{
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(34,197,94,0.25);
  border-radius:20px;
  padding:16px 22px;
  min-width:130px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.kader-stats strong{
  display:block;
  font-size:26px;
  color:#15803d;
  line-height:1;
}

.kader-stats span{
  display:block;
  margin-top:6px;
  font-size:13px;
  font-weight:700;
  color:#334155;
}
@media (max-width: 600px) {
  .players {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
#verein{
  position: relative;
  overflow: hidden;
}

#verein::after{
  content: "";
  position: absolute;

  right: -110px;
  top: 44%;

  transform: translateY(-50%) rotate(12deg);

  width: 690px;
  height: 690px;

  background: url("trikot.PNG") no-repeat center;
  background-size: contain;

  opacity: 0.18;
  mix-blend-mode: multiply;
  filter: contrast(1.1);

  pointer-events: none;
  z-index: 0;
}

#verein > *{
  position: relative;
  z-index: 2;
}
.nav-left,
.nav-right{
  display:flex;
  gap:30px;
  align-items:center;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0px;
}
.nav nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:38px;
  flex:1;
}

.nav nav a{
  font-size:16px;
  font-weight:800;
  letter-spacing:0.3px;
}
#mannschaft{
  position:relative;
  overflow:hidden;
}

#mannschaft::before{
  content:"";
  position:absolute;

  top:40px;
  right:-80px;

  width:620px;
  height:620px;

  background:url("logo.png") no-repeat center;
  background-size:contain;

  opacity:0.06;

  transform:rotate(-10deg);

  pointer-events:none;
}

#mannschaft::after{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  top:180px;
  left:-180px;

  background:radial-gradient(
    circle,
    rgba(0,255,120,0.10),
    transparent 70%
  );

  filter:blur(80px);

  pointer-events:none;
}
.contact-section{
  padding:120px 24px;
}

.contact-box{
  max-width:1200px;
  margin:auto;

  padding:70px;

  border-radius:42px;

  background:
  linear-gradient(
    135deg,
    #1acb47,
    #11652d
  );

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;

  position:relative;
  overflow:hidden;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.18);
}

.contact-box::before{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  right:-120px;
  top:-120px;

  background:
  radial-gradient(
    circle,
    rgba(255,255,255,0.14),
    transparent 70%
  );
}

.contact-section{
    padding:120px 24px;
}
.contact-box{
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;

    padding:70px;

    border-radius:38px;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,0.10),
    transparent 30%),

    linear-gradient(
    135deg,
    #2fe03d,
    #15803d,
    #052e16
    );

    box-shadow:
    0 30px 80px rgba(0,0,0,0.18);

    position:relative;
    overflow:hidden;
}

.contact-left{
    max-width:620px;
}

.contact-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,255,255,0.16);

    color:white;
    font-weight:700;
    font-size:15px;

    margin-bottom:28px;

    backdrop-filter:blur(10px);
}

.contact-left h2{
    font-size:72px;
    line-height:1.05;
    color:white;

    margin-bottom:28px;

    font-weight:900;
}

.contact-text{
    font-size:22px;
    line-height:1.7;

    color:rgba(255,255,255,0.82);
}

.contact-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    min-width:360px;

    display:flex;
    align-items:center;

    padding:24px 28px;

    border-radius:22px;

    background:white;

    color:#111;

    font-size:22px;
    font-weight:700;

    transition:0.3s ease;

    box-shadow:
    0 12px 30px rgba(0,0,0,0.12);
}

.contact-item:hover{
    transform:translateY(-4px);
}

.instagram{
    background:#111;
    color:white;
}
#kontakt .contact-box{
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 70px !important;
  align-items: center !important;
}

#kontakt .contact-right{
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

#kontakt .contact-item{
  min-width: 360px !important;
  padding: 24px 28px !important;
  border-radius: 22px !important;
  font-size: 22px !important;
  background: white !important;
  color: #111 !important;
  height: 82px !important;
}

#kontakt .instagram{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;

    min-width:360px !important;
    padding:24px 28px !important;
    border-radius:22px !important;

    background:white !important;
    color:#111 !important;
    height: 82px !important;
}
#kontakt .contact-left h2{
  font-size: 64px !important;
  line-height: 1.05 !important;
}
.instagram img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.instagram{
    gap:20px;
}
.games-page{
    padding: 140px 24px 80px;

    background:
    radial-gradient(circle at top left,
    rgba(0,255,120,0.16),
    transparent 35%),

    linear-gradient(135deg,#f4fff6,#ffffff);

    min-height: 100vh;
}

.games-hero{
    max-width: 1220px;
    margin: 0 auto 40px;

    padding: 48px;

    border-radius: 36px;

    background:
    linear-gradient(135deg,
    var(--green),
    var(--green-dark));

    color:white;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    box-shadow:
    0 24px 70px rgba(0,80,38,0.22);
}

.games-hero h1{
    font-size: clamp(42px,6vw,82px);
    line-height:1;
    margin: 12px 0;
}

.games-hero p{
    max-width: 620px;
    font-size:18px;
    line-height:1.7;
}

.games-hero img{
    width:160px;

    filter:
    drop-shadow(0 18px 35px rgba(0,0,0,0.25));
}

.games-layout{
    max-width:1220px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:28px;
}

.fupa-card{
    background:rgba(255,255,255,0.9);

    border:
    1px solid rgba(0,169,79,0.16);

    border-radius:32px;

    padding:32px;

    box-shadow:
    0 22px 65px rgba(0,60,28,0.10);

    transition:0.3s ease;
}

.fupa-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 0 14px rgba(76,255,76,0.45),
    0 0 35px rgba(76,255,76,0.2);
}

.fupa-card h2{
    font-size:34px;
    margin-bottom:12px;
}

.fupa-card p{
    color:var(--muted);
    margin-bottom:22px;
    line-height:1.7;
}

@media(max-width:900px){

    .games-hero{
        flex-direction:column;
        text-align:center;
    }

    .games-layout{
        grid-template-columns:1fr;
    }

}
.brand-dropdown{
    position: relative;
}

.dropdown-menu{
   position:absolute;
top:55px;
left:50%;
transform:translateX(-50%);
    
    background: rgba(10,20,10,0.95);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(120,255,120,0.25);
    border-radius: 18px;

    padding: 10px;
    min-width: 180px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}

.dropdown-menu a{
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: 0.2s;
}

.dropdown-menu a:hover{
    background: rgba(0,255,120,0.15);
}

.brand-dropdown:hover .dropdown-menu{
    opacity: 1;
    pointer-events: all;
}
.brand-dropdown::after{
    content:"⌄";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:10px;
    color:white;
    font-size:22px;
}
.brand-text{
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:1.1;
}

.brand-text small{
    font-size:14px;
    margin-top:-2px;
    opacity:0.8;
    transition:0.2s;
}

.brand-dropdown:hover .brand-text small{
    transform:translateY(2px);
    opacity:1;
}
.dart-list{
    list-style:none;
    padding:0;
    margin-top:24px;
}

.dart-list li{
    background:rgba(0,169,79,0.08);
    border:1px solid rgba(0,169,79,0.16);
    border-radius:18px;
    padding:16px 18px;
    margin-bottom:12px;
    font-weight:800;
}

.dart-match{
    margin-top:28px;
    padding:22px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--green),var(--green-dark));
    color:white;
    display:flex;
    flex-direction:column;
    gap:8px;
    box-shadow:0 18px 45px rgba(0,80,38,0.24);
}

.dart-match strong{
    font-size:22px;
}

.dart-match span{
    opacity:0.85;
}
.legal-page{
  min-height:100vh;
  padding:140px 24px 80px;
  background:#f5f8f3;
}

.legal-box{
  max-width:900px;
  margin:auto;
  background:white;
  padding:50px;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.legal-box h1{
  font-size:48px;
  margin-bottom:30px;
}

.legal-box h3{
  margin-top:30px;
}

.legal-box p{
  line-height:1.8;
  color:#444;
}
.footer{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:40px 20px;
}

.footer a{
  color:#111;
  font-weight:700;
}
.dart-page{
    background:
    radial-gradient(circle at top left, rgba(0,255,120,0.18), transparent 35%),
    linear-gradient(135deg,#f4fff6,#ffffff);
    min-height:100vh;
}

.dart-hero{
    min-height:720px;
    padding:160px 24px 90px;
    position:relative;
    background:
    linear-gradient(135deg, rgba(0,40,20,0.82), rgba(0,0,0,0.55)),
    url("dartraum.PNG");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.dart-content{
    max-width:1220px;
    margin:auto;
    color:white;
    position:relative;
    z-index:2;
}

.dart-content h1{
    font-size:clamp(48px,7vw,96px);
    line-height:1;
    margin:18px 0;
    max-width:850px;
}

.dart-intro{
    max-width:720px;
    font-size:20px;
    line-height:1.7;
    color:rgba(255,255,255,0.88);
}

.dart-info-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:42px;
    max-width:760px;
}

.dart-info-row div{
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.22);
    backdrop-filter:blur(14px);
    border-radius:26px;
    padding:24px;
}

.dart-info-row strong{
    display:block;
    font-size:42px;
    color:#b8ffd2;
}

.dart-info-row span{
    font-weight:800;
}

.dart-teams-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.dart-team-card{
    background:rgba(255,255,255,0.92);
    border:1px solid rgba(0,169,79,0.18);
    border-radius:30px;
    padding:30px;
    box-shadow:0 22px 65px rgba(0,60,28,0.10);
    transition:0.3s ease;
}

.dart-team-card:hover{
    transform:translateY(-8px);
    border-color:#4cff4c;
    box-shadow:
    0 0 16px rgba(76,255,76,0.38),
    0 0 38px rgba(76,255,76,0.18);
}

.dart-team-card h3{
    font-size:26px;
    margin:20px 0 8px;
}

.dart-team-card p{
    font-size:21px;
    font-weight:900;
    color:var(--green-dark);
    margin-bottom:10px;
}

.dart-team-card small{
    color:var(--muted);
    line-height:1.5;
}

.dart-badge{
    display:inline-block;
    padding:9px 15px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--green),var(--green-dark));
    color:white;
    font-weight:900;
    font-size:13px;
}

.dart-team-card.highlight{
    background:
    radial-gradient(circle at top right,rgba(0,255,120,0.16),transparent 35%),
    rgba(255,255,255,0.94);
}

.dart-info-box{
    background:
    linear-gradient(135deg,var(--green),var(--green-dark));
    color:white;
    border-radius:36px;
    padding:46px;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:34px;
    align-items:center;
    box-shadow:0 24px 70px rgba(0,80,38,0.24);
}

.dart-info-box h2{
    font-size:clamp(36px,5vw,66px);
    line-height:1;
    margin:12px 0;
}

.dart-info-box p{
    line-height:1.7;
    color:rgba(255,255,255,0.86);
}

.dart-mini-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
}

.dart-mini-grid div{
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.22);
    border-radius:24px;
    padding:24px;
}

.dart-mini-grid strong{
    display:block;
    font-size:28px;
    margin-bottom:6px;
}

.dart-mini-grid span{
    color:rgba(255,255,255,0.86);
    font-weight:800;
}

@media(max-width:1000px){
    .dart-teams-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dart-info-box{
        grid-template-columns:1fr;
    }

    .dart-info-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .dart-teams-grid{
        grid-template-columns:1fr;
    }

    .dart-hero{
        min-height:auto;
        padding:140px 24px 70px;
    }
}
.hero-darts{
    position:absolute;
    right:4%;
    top:53%;
    width:460px;
    z-index:8;

    transform:
        translateY(-50%)
        rotate(-14deg);

    filter:drop-shadow(0 18px 30px rgba(0,0,0,0.45));

    pointer-events:none;
    opacity:0.95;
}

.dart-hero{
    position:relative;
    overflow:hidden;
}

@media(max-width:900px){

    .hero-darts{
        position:relative;
        right:auto;
        bottom:auto;
        width:260px;
        margin:40px auto 0;
        display:block;
    }

}
@media (max-width: 768px){

    .topbar{
        padding: 12px 14px;
        border-radius: 0 0 20px 20px;
    }

   .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 14px;
    gap:8px;
}

   .nav-left,
.nav-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-left a,
.nav-right a{
    font-size:14px;
}

    .brand img{
        width: 42px;
    }

    .brand span{
        font-size: 14px;
    }

    .dart-hero{
        min-height: auto;
        padding: 120px 20px 80px;
        border-radius: 26px;
        overflow: hidden;
    }

    .dart-content{
        max-width: 100%;
        z-index: 5;
    }

    .dart-content h1{
        font-size: 58px;
        line-height: 0.95;
    }

    .dart-intro{
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
    }

    .dart-info-row{
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .dart-info-row div{
        width: 100%;
    }

    .hero-darts{
        width: 210px;
        right: -25px;
        top: 18%;
        transform: rotate(-18deg);
        opacity: 0.9;
    }

    .teams-grid{
        grid-template-columns: 1fr;
    }

    .team-card{
        padding: 24px;
    }

    .schedule-boxes{
        grid-template-columns: 1fr;
    }

    .footer{
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

}
@media (max-width: 768px){

    .topbar{
        padding: 10px 10px !important;
    }

    .nav{
        height: auto !important;
        min-height: 64px !important;
        padding: 10px 12px !important;
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 8px !important;
        align-items: center !important;
        border-radius: 24px !important;
    }

    .nav-left,
    .nav-right{
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .nav-left{
        justify-content: flex-start !important;
    }

    .nav-right{
        justify-content: flex-end !important;
    }

    .nav-left a,
    .nav-right a{
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .brand{
        min-width: 90px !important;
        max-width: 110px !important;
        text-align: center !important;
        gap: 2px !important;
    }

    .brand img{
        width: 34px !important;
        height: 34px !important;
    }

    .brand span{
        font-size: 11px !important;
        line-height: 1.05 !important;
        display: block !important;
    }
}
@media (max-width: 768px){

    .nav-right{
        display:none !important;
    }

    .nav{
        display:grid !important;
        grid-template-columns: 1fr auto !important;
        align-items:center !important;
        height:64px !important;
        padding:0 14px !important;
        gap:10px !important;
    }

    .nav-left{
        display:flex !important;
        gap:18px !important;
    }

    .nav-left a{
        font-size:14px !important;
        white-space:nowrap !important;
    }

    .brand{
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    transform:translate(-50%, -50%) !important;
    z-index:3;
}

    .brand img{
        width:32px !important;
        height:32px !important;
    }

    .brand span{
        font-size:11px !important;
        line-height:1.05 !important;
    }
}
@media (max-width:768px){

    .topbar{
        padding:6px 10px !important;
    }

    .nav{
        position:relative !important;

        height:58px !important;
        border-radius:22px !important;
        padding:0 !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
    }

    .nav-left{
        position:absolute !important;
        left:26px !important;

        display:flex !important;
        gap:34px !important;
        z-index:2;
    }

    .nav-right{
        display:none !important;
    }

   .nav-left{
    position:absolute !important;
    left:48px !important;
    right:48px !important;

    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;

    z-index:2;
}

    .brand{
        position:absolute !important;

        left:50% !important;
        top:50% !important;

        transform:translate(-50%, -50%) !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;

        z-index:1;
    }

    .brand-text{
        display:none !important;
    }

    .brand img{
        width:34px !important;
        height:34px !important;
    }

}
@media (max-width:768px){

    body:has(.hero){

        .topbar{
            padding:10px 14px;
            border-radius:0 0 22px 22px;
        }

        .nav{
            position:relative;
            min-height:70px;
        }

        .brand{
            position:absolute;
            left:50%;
            top:50%;
            transform:translate(-50%, -50%);
            z-index:5;
        }

        .brand-text{
            display:none;
        }

        .brand img{
            width:34px;
        }

        .nav-left{
            position:absolute;
            left:42px;
            right:42px;

            display:flex;
            justify-content:space-between;
            align-items:center;
        }

        .nav-left a{
            font-size:15px;
            font-weight:700;
        }

        .nav-right{
            display:none;
        }
    }
}
@media (max-width:768px){

    .home-page .topbar{
        padding:10px 14px !important;
        border-radius:0 0 22px 22px !important;
    }

    .home-page .nav{
        position:relative !important;
        min-height:70px !important;
    }

    .home-page .brand{
        position:absolute !important;
        left:50% !important;
        top:50% !important;
        transform:translate(-50%, -50%) !important;
        z-index:5 !important;
    }

    .home-page .brand-text{
        display:none !important;
    }

    .home-page .brand img{
        width:34px !important;
    }

    .home-page .nav-left{
        position:absolute !important;
        left:42px !important;
        right:42px !important;
        display:flex !important;
        justify-content:space-between !important;
        align-items:center !important;
    }

    .home-page .nav-left a{
        font-size:15px !important;
        font-weight:700 !important;
    }

    .home-page .nav-right{
        display:none !important;
    }
}
@media (max-width:768px){

  .home-page #menuBtn{
    display:none !important;
  }

}
@media (max-width:768px){

  .home-page .brand img{
    width:52px !important;
    height:52px !important;
  }

}
@media (max-width:768px){
    .home-page .brand-dropdown::after{
    bottom: -30px !important;
}
  body.home-page .brand-text{
    display:none !important;
  }

  body.home-page #menuBtn{
    display:none !important;
  }

  body.home-page .nav-right{
    display:none !important;
  }

  body.home-page .nav{
    height:58px !important;
    padding:0 22px !important;
    position:relative !important;
  }

  body.home-page .brand{
    position:absolute !important;
    left:50% !important;
    top:50% !important;
    transform:translate(-50%, -50%) !important;
    z-index:10 !important;
  }

  body.home-page .brand img{
    width:52px !important;
    height:52px !important;
  }

  body.home-page .nav-left{
  position:absolute !important;
  left:40px !important;
  right:40px !important;
  width:auto !important;

  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;

  z-index:20 !important;
}

body.home-page .brand{
  z-index:10 !important;
}
}   
.brand-arrow{
    text-align:center;
    color:white;
    font-size:18px;
    margin-top:4px;
    animation:bounceArrow 1.8s infinite;
}

.brand-dropdown.active .brand-arrow{
    transform:rotate(180deg);
}

@keyframes bounceArrow{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(4px);
    }
}
/* Desktop */
.brand-dropdown::after{
    bottom:-13px;
}
.dropdown-menu{
    top: calc(100% + 8px);
}

/* Handy */
@media (max-width:768px){
    .home-page .brand-dropdown::after{
        bottom:-5 !important;
    }
}
@media (max-width:768px){

    .dropdown-menu{
        top: calc(100% + 24px) !important;
    }

}
.brand-dropdown.active .dropdown-menu{
    opacity:1 !important;
    pointer-events:auto !important;
    transform:translateX(-50%) translateY(0) !important;
}
@media (max-width:768px){

    .contact-section{
        padding: 40px 20px !important;
    }

    .contact-box{
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;

        padding: 40px 28px !important;
        border-radius: 34px !important;

        text-align: left !important;
    }

    .contact-box h2{
        font-size: 54px !important;
        line-height: 0.95 !important;
    }

    .contact-box p{
        margin-top: 24px !important;
        font-size: 20px !important;
        line-height: 1.5 !important;
    }
}