/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #0a0a0a;
  --bg2:      #141414;
  --accent:   #c8c8c8;
  --white:    #ffffff;
  --gray:     #999999;
  --gray2:    #555555;
  --gold:     #e0e0e0;
  --highlight: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === INTRO SCREEN === */
/* Sound Gate */
.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}
.sound-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 80, 0, 0.45) 0%, rgba(180, 30, 0, 0.15) 45%, transparent 70%);
  animation: orangePulse 3s ease-in-out infinite;
  pointer-events: none;
}
.sound-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sound-gate-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.sound-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.btn-sound-on {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.3s, border-color 0.3s, text-shadow 0.3s;
}
.btn-sound-on:hover {
  color: #c9a84c;
  border-color: #c9a84c;
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.btn-skip {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.btn-skip:hover { color: rgba(255,255,255,0.8); }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.88);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.intro-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Video als zentriertes Fenster – nicht fullscreen */
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-overlay {
  display: none;
}
.intro-content {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.intro-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.intro-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
.intro-accent {
  color: #c8c8c8;
  display: block;
}
.intro-enter {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 1rem 3.5rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.intro-enter:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.intro-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo { display: flex; flex-direction: column; }
.logo-omac { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gray2); text-transform: uppercase; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.btn-nav {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-nav:hover { background: var(--accent); color: var(--white); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: #0a0a0a;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); color: #0a0a0a; transform: translateY(-2px); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.center-btn { display: block; width: fit-content; margin: 2rem auto 0; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.85) 0%,
    rgba(17,17,17,0.5) 50%,
    rgba(17,17,17,0.3) 100%
  );
}

.hero-text-section {
  background: var(--bg);
  padding: 10rem 0 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.hero-text-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 90, 0, 0.18) 0%, transparent 60%);
  animation: orangePulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* Hero fallback wenn kein Video */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray2);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* === STATS BAR === */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 4rem;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray2);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* === SECTIONS === */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.section-title.center { text-align: center; }

.body-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* === ABOUT === */
.about {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Fallback wenn kein Bild */
.image-frame::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

.image-frame img { position: absolute; inset: 0; }

.image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  color: #0a0a0a;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-txt {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* === CATEGORIES === */
.categories {
  padding: 8rem 0;
  background: var(--bg2);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(255,255,255,0.05);
}

.cat-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}

/* Gradient als Fallback */
.cat-card:nth-child(1) { background: linear-gradient(135deg, #111, #1e1e1e); }
.cat-card:nth-child(2) { background: linear-gradient(135deg, #0f0f0f, #1a1a1a); }
.cat-card:nth-child(3) { background: linear-gradient(135deg, #111, #1c1c1c); }
.cat-card:nth-child(4) { background: linear-gradient(135deg, #0f0f0f, #181818); }
.cat-card:nth-child(5) { background: linear-gradient(135deg, #111, #1d1d1d); }
.cat-card:nth-child(6) { background: linear-gradient(135deg, #0f0f0f, #1a1a1a); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  transition: background 0.4s;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.25) 0%, rgba(0,0,0,0.3) 100%);
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem;
  z-index: 1;
}

.cat-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

.cat-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cat-content p {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* === HOW IT WORKS === */
.how {
  padding: 8rem 0;
}

.steps {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.step {
  flex: 1;
  background: var(--bg2);
  padding: 3rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-arrow {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* === RANKING === */
.ranking {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
}

.rank-table {
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.rank-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px 1fr 80px;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  transition: background 0.2s;
}
.rank-row:hover:not(.rank-header) { background: rgba(255,255,255,0.03); }

.rank-header {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray2);
  background: rgba(255,255,255,0.03);
}

.rank-row.gold { border-left: 3px solid #e0e0e0; }
.rank-row.silver { border-left: 3px solid #aaa; }
.rank-row.bronze { border-left: 3px solid #cd7f32; }

.rank-pos { font-weight: 600; }

.score {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* === CTA SECTION === */
.cta-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.22) 0%, transparent 65%);
  animation: orangePulse 3s ease-in-out infinite;
}

.cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.cta-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.register-form input,
.register-form select {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.register-form input:focus,
.register-form select:focus {
  border-color: var(--accent);
}

.register-form select option {
  background: var(--bg2);
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo p {
  font-size: 0.7rem;
  color: var(--gray2);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray2);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: var(--gray2);
  font-size: 0.75rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .navbar { padding: 1.2rem 1.5rem; }
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .stats-bar { flex-wrap: wrap; gap: 2rem; padding: 2rem; }
  .stat-divider { display: none; }
  .rank-row { grid-template-columns: 60px 1fr 1fr; }
  .rank-row span:nth-child(3),
  .rank-row span:nth-child(4) { display: none; }
  /* Logo Tablet */
  .logo-wrapper { width: clamp(220px, 38vw, 340px); max-width: 65vw; }
  .nav-logo-img { height: 52px; }
}

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .cta-title { font-size: 3rem; }
  /* Logo Mobile */
  .logo-wrapper { width: clamp(200px, 55vw, 280px); max-width: 70vw; }
  .nav-logo-img { height: 44px; }
  .footer-logo-img { height: 52px; }
}

/* Logo Styles */
.soundgate-wrapper {
  width: 480px;
  max-width: 88vw;
  margin-bottom: 1rem;
}

.soundgate-logo-img {
  animation: logoFloat 4s ease-in-out infinite !important;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  mix-blend-mode: screen;
}

/* === HINTERGRUND-WASSERZEICHEN === */
.bg-watermark {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-watermark img {
  height: 80vh;
  width: auto;
  max-width: 80vw;
  opacity: 0.12;
  mix-blend-mode: screen;
  filter: grayscale(0.3);
  will-change: opacity;
  transition: opacity 0.4s ease;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
  margin-bottom: 0.5rem;
}

/* Logo Wrapper */
.logo-wrapper {
  position: relative;
  width: clamp(340px, 45vw, 580px);
  max-width: 85vw;
  margin: 0 auto 1rem auto;
  overflow: visible;
}

.hero-logo {
  width: 100%;
  display: block;
  mix-blend-mode: screen;
  position: relative;
  z-index: 2;
  animation: logoFloat 4s ease-in-out infinite;
}


/* Blitz-Elemente */
.lightning {
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}

.lightning.l1 {
  width: 3px;
  height: 130px;
  background: linear-gradient(to bottom, rgba(255,150,0,1), transparent);
  top: 5%;
  left: -4%;
  transform: rotate(28deg);
  animation: blink 2.1s ease-in-out infinite;
}
.lightning.l2 {
  width: 3px;
  height: 110px;
  background: linear-gradient(to bottom, rgba(100,180,255,1), transparent);
  top: 8%;
  right: -4%;
  transform: rotate(-22deg);
  animation: blink 1.7s ease-in-out infinite 0.4s;
}
.lightning.l3 {
  width: 2px;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,80,0,0.9), transparent);
  top: 0%;
  left: 10%;
  transform: rotate(18deg);
  animation: blink 2.5s ease-in-out infinite 0.8s;
}
.lightning.l4 {
  width: 2px;
  height: 140px;
  background: linear-gradient(to bottom, rgba(80,140,255,0.9), transparent);
  top: 2%;
  right: 10%;
  transform: rotate(-25deg);
  animation: blink 1.9s ease-in-out infinite 1.2s;
}
.lightning.l5 {
  width: 2px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255,200,50,0.9), transparent);
  top: 20%;
  left: -2%;
  transform: rotate(45deg);
  animation: blink 3s ease-in-out infinite 0.6s;
}
.lightning.l6 {
  width: 2px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(150,200,255,0.9), transparent);
  top: 20%;
  right: -2%;
  transform: rotate(-45deg);
  animation: blink 2.3s ease-in-out infinite 1.5s;
}

@keyframes blink {
  0%, 100% { opacity: 0; transform: scaleY(0.8) rotate(var(--r, 20deg)); }
  10%, 15% { opacity: 1; transform: scaleY(1.1) rotate(var(--r, 20deg)); }
  20%       { opacity: 0.2; }
  25%       { opacity: 0.9; }
  30%       { opacity: 0; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* === ORANGE PULSE ANIMATION === */
@keyframes orangePulse {
  0%   { opacity: 0.4; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.08); }
  100% { opacity: 0.4; transform: scale(1); }
}

/* Portal Entry Button im Footer */
.portal-entry-btn {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6rem 1.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.portal-entry-btn:hover {
  color: #ff6600;
  border-color: rgba(255,100,0,0.5);
}
