/* --- VOLTAGE BUTTON: Uiverse.io, glow, refleksja, animacje, pulsowanie --- */
.voltage-button {
  position: relative;
  -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
  box-shadow: 0 0 48px #5978F3, 0 0 24px #00ffd1, 0 0 8px #fff;
  transition: transform 0.3s cubic-bezier(.4,1.6,.6,1), box-shadow 0.3s;
}

.voltage-button:hover {
  transform: scale(1.02) translateY(-2px);
}

.voltage-button button {
  color: white;
  background: #0D1127;
  padding: 1rem 3rem;
  border-radius: 5rem;
  border: 5px solid #5978F3;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: 0.075em;
  transition: background 0.3s, filter 0.3s, transform 0.3s;
  box-shadow: 0 0 32px #5978F3, 0 0 12px #00ffd1, 0 0 4px #fff;
  filter: drop-shadow(0 0 8px #00ffd1);
}

.voltage-button button:hover {
  cursor: pointer;
  background: #0F1C53 !important;
  filter: brightness(1.18) saturate(1.3) drop-shadow(0 0 16px #00ffd1) !important;
  box-shadow: 0 0 64px #00ffd1, 0 0 32px #5978F3, 0 0 12px #fff !important;
  transform: scale(1.04) translateY(-2px) !important;
  animation: pulse 1.2s infinite alternate;
}

.voltage-button svg,
.voltage-button .dots {
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

.voltage-button svg {
  display: block;
  position: absolute;
  top: -0.75em;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: calc(100% + 1.5em);
  opacity: 0;
  transition: opacity 0.4s;
  transition-delay: 0.1s;
}

.voltage-button:hover svg,
.voltage-button:hover .dots {
  opacity: 1 !important;
}

.voltage-button svg path {
  stroke-dasharray: 100;
  stroke-width: 4 !important;
  stroke-linecap: round !important;
  filter: url("#glow");
  /* Dodatkowy drop-shadow dla mocniejszego glow */
  /* Safari fallback: */
  /* filter: url("#glow") drop-shadow(0 0 16px #00ffd1); */
}

.voltage-button svg path.line-1 {
  stroke: #f6de8d;
  stroke-dashoffset: 0;
  animation: spark-1 3s linear infinite;
}

.voltage-button svg path.line-2 {
  stroke: #6bfeff;
  stroke-dashoffset: 500;
  animation: spark-2 3s linear infinite;
}

.voltage-button .dots {
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.4s;
}

.voltage-button .dots .dot {
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  box-shadow: 0 0 12px #fff, 0 0 24px #00ffd1;
}

.voltage-button .dots .dot-1 {
  top: 0;
  left: 20%;
  animation: fly-up 3s linear infinite;
}

.voltage-button .dots .dot-2 {
  top: 0;
  left: 55%;
  animation: fly-up 3s linear infinite;
  animation-delay: 0.5s;
}

.voltage-button .dots .dot-3 {
  top: 0;
  left: 80%;
  animation: fly-up 3s linear infinite;
  animation-delay: 1s;
}

.voltage-button .dots .dot-4 {
  bottom: 0;
  left: 30%;
  animation: fly-down 3s linear infinite;
  animation-delay: 2.5s;
}

.voltage-button .dots .dot-5 {
  bottom: 0;
  left: 65%;
  animation: fly-down 3s linear infinite;
  animation-delay: 1.5s;
}

@keyframes spark-1 {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes spark-2 {
  to {
    stroke-dashoffset: -500;
  }
}

@keyframes fly-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.2);
  }
  5% {
    opacity: 1;
    transform: translateY(-1.5rem) scale(0.4);
  }
  10%, 100% {
    opacity: 0;
    transform: translateY(-3rem) scale(0.2);
  }
}

@keyframes fly-down {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.2);
  }
  5% {
    opacity: 1;
    transform: translateY(1.5rem) scale(0.4);
  }
  10%, 100% {
    opacity: 0;
    transform: translateY(3rem) scale(0.2);
  }
}

@keyframes pulse {
  0% { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.15) saturate(1.2); }
}

/* ===================================================================== */
/* ZMIENNE                                                               */
/* ===================================================================== */
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg,#e8c34a,#ffe066);
  color: #222;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 14px;
  padding: 12px 28px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232,195,74,0.13);
  letter-spacing: 0.5px;
  margin: 18px 0 12px 0;
  transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
  background: linear-gradient(90deg,#ffe066,#e8c34a);
  transform: scale(1.04);
  color: #111;
}
:root {
  --main-color: #212121;
  --gradient-color-1: #ffdb3b;
  --gradient-color-2: #fe53bb;
  --gradient-color-3: #8f51ea;
  --text-glow-color: #ff1372;
}

.synthwave-container {
  all: unset;
  height: 4rem;
  width: 16rem;
  position: relative;
  border-radius: 20px;
  border: double 3px transparent;
  transition: 50ms;
  background-image: linear-gradient(#212121, #212121),
    linear-gradient(0, #ffdb3b 0%, #fe53bb 25%, #8f51ea 87%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  cursor: pointer;
  margin: 0 12px 0 12px;
  display: inline-block;
}

.synthwave-container:hover > strong {
  transition: 300ms;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: brightness(1.75);
  text-shadow: 2px 0 14px #fff;
}

.inner-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
}

.synthwave-container strong,
.synthwave-container strong::before {
  transition: 300ms;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 1.6rem;
  letter-spacing: 5px;
  z-index: 2;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 8px rgba(56, 127, 224, 0.4),
    -2px -2px 8px rgba(254, 125, 255, 0.4);
  background-image: linear-gradient(
    0deg,
    rgba(255, 142, 224, 1) 0%,
    rgba(255, 29, 193, 1) 5%,
    rgba(198, 72, 255, 1) 30%,
    rgba(0, 0, 0, 1) 49%,
    rgba(255, 255, 255, 1) 52%,
    rgba(70, 148, 255, 1) 60%,
    rgba(21, 59, 112, 1) 69%
  );
}

.synthwave-container strong::before {
  text-shadow: -6px -6px 6px var(--text-glow-color);
}

#glow {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 10rem;
  max-height: 4rem;
}

.circle {
  width: 100%;
  height: 100%;
  filter: blur(1.2rem);
  animation: pulse 2s infinite alternate;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: linear-gradient(0, #ffdb3b 0%, #fe53bb 30%, #8f51ea 80%);
}

.fade {
  position: absolute;
  width: 100%;
  min-height: 10rem;
  top: -3rem;
  height: 10rem;
  background-image: linear-gradient(
    to top,
    rgba(236, 195, 11, 0.84) 15%,
    rgba(255, 31, 184, 0.36) 40%,
    rgb(43, 1, 54) 65%
  );
  z-index: 1;
}

.up-text {
  display: flex;
  justify-content: center;
  position: relative;
  height: 800px;
  font-weight: 600;
  letter-spacing: 6px;
  perspective: 400px;
  text-align: justify;
}

.crawl {
  display: grid;
  grid-template-columns: repeat(6, auto);
  position: relative;
  animation: crawl 20s linear infinite alternate;
}

.grid-item {
  width: 60px;
  height: 100%;
  border: 1px solid #f96bcc;
  box-shadow: 0 0 10px 4px #ff1fb8;
}

@keyframes crawl {
  0% {
    top: -200px;
    transform: rotateX(30deg) translateZ(40px);
  }
  100% {
    top: -510px;
    transform: rotateX(25deg) translateZ(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  }
}

.btn-desc {
  text-align: center;
  font-size: 0.95rem;
  color: #e8c34a;
  margin-top: 6px;
  font-family: 'Inter',sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-actions.centered-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.djefabe-zone-btn {
  display: inline-block;
  background: #ffcba3;
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 16px 38px;
  margin: 18px 0;
  text-decoration: none;
  box-shadow: 0 2px 12px #0006;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  border: none;
}
.djefabe-zone-btn:hover {
  background: #44ffd1;
  color: #111;
  transform: scale(1.06);
  box-shadow: 0 4px 18px #44ffd188;
}

.centered-title {
  text-align: center;
  width: 100%;
  display: block;
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.1rem;
  color: #44ffd1;
  text-shadow: 0 0 18px #44ffd1, 0 0 6px #fff;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-align: left;
  font-weight: 900;
  background: none;
  text-transform: uppercase;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e8c34a, #00ffd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-fill-color: transparent; */ /* USUŃ lub zakomentuj */
}

.hero h2 {
  font-size: 1.15rem;
  font-weight: 400;
  color: #c7d1cc;
  margin-top: 10px;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.dj-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 35%, #1a1d1e 0%, #0f1112 70%);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 0 18px rgba(0,255,209,0.35) inset;
  color: #00ffd1;
  font-size: 1.5rem;
  text-decoration: none;
  position: relative;
  transition: transform .2s ease, box-shadow .3s ease, color .3s ease;
}
.dj-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 0 26px rgba(0,255,209,0.35) inset;
  color: #00a896;
}
.section-title, .section h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #e8c34a, #00ffd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-fill-color: transparent; */ /* USUŃ lub zakomentuj */
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg,#e8c34a,#ffe066);
  color: #222;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 14px;
  padding: 12px 28px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232,195,74,0.13);
  letter-spacing: 0.5px;
  margin: 18px 0 12px 0;
  transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
  background: linear-gradient(90deg,#ffe066,#e8c34a);
  transform: scale(1.04);
  color: #111;
}
ul.clean {
  list-style: none;
  margin: 10px 0 2px 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
ul.clean li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cfd7d2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e8f2ee;
  font-weight: 600;
  letter-spacing: .2px;
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 1rem;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.social a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social a.instagram:hover {
  background: linear-gradient(45deg, #bc1888, #cc2366, #dc2743, #e6683c, #f09433);
}
.social a.tiktok {
  background: linear-gradient(90deg, #000000, #69c9d0, #ee1d52);
}
.social a.tiktok:hover {
  background: linear-gradient(90deg, #ee1d52, #69c9d0, #000000);
}
.social a.youtube {
  background: #ff0000;
}
.social a.youtube:hover {
  background: #cc0000;
}
.social a.kick {
  background: linear-gradient(90deg, #2ecc71, #27ae60);
}
.social a.kick:hover {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}
.social a i {
  font-size: 1.2rem;
  margin-right: 8px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
footer {
  text-align: center;
  color: #e8c34a;
  background: #111;
  padding: 28px 16px;
  opacity: .9;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 12px #0006;
}
#lang-switcher {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 10001;
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  border-radius: 16px;
  padding: 6px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: flex-end;
  width: auto;
}
.lang-flag {
  display: inline-block;
  border-radius: 8px;
  padding: 2px 4px;
  transition: filter 0.2s, transform 0.2s, background 0.2s;
  filter: grayscale(0.5);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.lang-flag.active {
  filter: grayscale(0) drop-shadow(0 0 4px #e8c34a);
  background: #222;
  transform: scale(1.12);
}
.lang-flag img {
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  transition: transform 0.25s cubic-bezier(.4,1.6,.6,1);
}
.lang-flag:hover img {
  transform: translateY(-6px) scale(1.18) rotate(-8deg);
  filter: grayscale(0) drop-shadow(0 0 8px #e8c34a);
}
.about-links-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  font-size: 1.12rem;
  font-family: 'Inter', Arial, sans-serif;
}
.about-links-row a {
  color: #e8c34a;
  text-decoration: underline;
  font-weight: 600;
  padding: 0 8px;
  transition: color 0.18s;
}
.about-links-row a:hover {
  color: #fff;
}
.about-link-sep {
  color: #e8c34a;
  font-weight: 400;
  font-size: 1.1em;
  padding: 0 2px;
  user-select: none;
}
@media (max-width: 700px) {
  .synthwave-container { width: 98vw; min-width: 220px; font-size: 0.95rem; margin: 6px 0; }
  .hero-actions.centered-actions { gap: 10px; flex-direction: column; }
  .container {
    padding: 0 4px;
  }
  .card, .section, .footer, .hero {
    padding: 18px 8px;
    margin-bottom: 18px;
  }
  #lang-switcher {
    top: 10px;
    right: 8px;
    padding: 4px 8px;
  }
  .lang-flag img { width: 22px; height: 16px; }
}

body {
  background: linear-gradient(-45deg,#2b0006 0%,#3a0012 12%,#2a0015 24%,#170a28 36%,#0f0a2a 48%,#0a103a 60%,#08123a 72%,#061238 84%,#031033 100%);
  background-size: 500% 500%;
  animation: bgshift 35s ease-in-out infinite;
  color: #fff;
  font-family: 'Inter', 'Orbitron', Arial, sans-serif;
  line-height: 1.6;
}
@keyframes bgshift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
.container {
  max-width: 1140px;
  margin: 48px auto;
  padding: 0 22px;
}
.section {
  margin-bottom: 44px;
}
.card {
  background: rgba(0,0,0,0.68);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.1rem;
  color: #44ffd1;
  text-shadow: 0 0 18px #44ffd1, 0 0 6px #fff;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-align: left;
  font-weight: 900;
  background: none;
  text-transform: uppercase;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.djefabe-zone-btn {
  display: inline-block;
  background: #ffcba3;
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 16px 38px;
  margin: 18px 0;
  text-decoration: none;
  box-shadow: 0 2px 12px #0006;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  border: none;
}
.djefabe-zone-btn:hover {
  background: #44ffd1;
  color: #111;
  transform: scale(1.06);
  box-shadow: 0 4px 18px #44ffd188;
}

.hero-title-pulse {
  animation: efabe-pulse 1.2s infinite alternate;
}
@keyframes efabe-pulse {
  0% {
    text-shadow: 0 0 18px #44ffd1, 0 0 6px #fff, 0 0 0px #44ffd1;
    opacity: 1;
    letter-spacing: 2px;
  }
  60% {
    text-shadow: 0 0 32px #44ffd1, 0 0 12px #fff, 0 0 8px #44ffd1;
    opacity: 1;
    letter-spacing: 4px;
  }
  100% {
    text-shadow: 0 0 8px #44ffd1, 0 0 2px #fff, 0 0 0px #44ffd1;
    opacity: 0.85;
    letter-spacing: 2px;
  }
}

