@charset "UTF-8";
@font-face {
  font-family: "GoodTime Script";
  src: url("../fonts/GoodTimeScript-hrMY4_K.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-family: "GoodTime Script", cursive;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  position: relative;
  margin-bottom: 3rem;
}
h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.56), 0 0 30px rgba(255, 0, 128, 0.4);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #ff0080;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff0080, #00d4ff);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  backface-visibility: hidden;
}
.logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url("../img/logo_faceB-RP1SRdT.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 130%;
  height: 130%;
  background-image: url("../img/contour_logo-7ncgRpQ.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: logo-contour-rotate 8s linear infinite;
  z-index: 0;
}

.logo-link,
.player-logo-link {
  display: inline-flex;
  text-decoration: none;
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}
.logo-link:hover .logo,
.player-logo-link:hover .logo {
  transform: scale(1.05) translateZ(0);
}

.logo-disk {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: disk-spin 4s linear infinite;
  transition: all 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.logo-disk::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), inset 0 0 0 5px rgba(255, 255, 255, 0.06), inset 0 0 0 8px rgba(255, 255, 255, 0.04), inset 0 0 0 11px rgba(255, 255, 255, 0.03), 0 0 5px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}
.logo-disk::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff0080, #99004d);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.9), inset 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.logo:hover .logo-disk {
  animation-play-state: paused;
}
.logo:hover .logo-disk::before {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), inset 0 0 0 5px rgba(255, 255, 255, 0.15), inset 0 0 0 8px rgba(255, 255, 255, 0.1), inset 0 0 0 11px rgba(255, 255, 255, 0.08), 0 0 10px rgba(255, 0, 128, 0.4);
}
.logo:hover .logo-disk::after {
  box-shadow: 0 0 20px #ff0080, 0 0 30px rgba(255, 0, 128, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes logo-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes logo-contour-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes logo-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes disk-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(22, 33, 62, 0.95));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  padding-top: calc(1.5rem + env(safe-area-inset-top, 0px));
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  box-shadow: 0 0 10px #ff0080, 0 0 20px rgba(255, 0, 128, 0.7), 0 0 30px rgba(255, 0, 128, 0.5);
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #ff0080);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.56), 0 0 30px rgba(0, 212, 255, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo {
  width: 90px;
  height: 90px;
}
.header .logo .logo-text {
  font-size: 1.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}
.nav-item--logo {
  margin: 0 2rem;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.nav-item .nav-link {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 0, 128, 0.3);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "GoodTime Script", cursive;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
  transition: left 0.5s ease;
}
.nav-item .nav-link:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
  border-color: #ff0080;
  transform: translateY(-2px);
}
.nav-item .nav-link:hover::before {
  left: 100%;
}
.nav-item .nav-link:hover {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 212, 255, 0.2));
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.6), 0 0 20px rgba(255, 0, 128, 0.42), 0 0 30px rgba(255, 0, 128, 0.3);
}
.nav-item.active .nav-link {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(0, 212, 255, 0.3));
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.56), 0 0 30px rgba(255, 0, 128, 0.4);
  border-color: #ff0080;
}

.mobile-menu-btn {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ff0080;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-item--logo {
    margin: 0 1rem;
  }
  .nav-item .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .header .logo {
    width: 80px;
    height: 80px;
  }
  .header .logo .logo-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height, 100px);
    left: 0;
    right: 0;
    background: rgba(26, 11, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid rgba(255, 0, 128, 0.3);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item--logo {
    order: -1;
    margin: 0 0 1.5rem 0;
  }
  .nav-item .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .header .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .header .logo .logo-text {
    font-size: 1.2rem;
  }
}
.player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(22, 33, 62, 0.95));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}
.player::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.6), 0 0 20px rgba(255, 0, 128, 0.42), 0 0 30px rgba(255, 0, 128, 0.3);
}

.player-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.player-logo {
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.player-logo:hover {
  transform: scale(1.08);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.control-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.3), transparent);
  transition: all 0.3s ease;
}
.control-btn:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.6), 0 0 20px rgba(255, 0, 128, 0.42), 0 0 30px rgba(255, 0, 128, 0.3);
  border-color: #ff0080;
  transform: scale(1.1);
}
.control-btn:hover::before {
  width: 100%;
  height: 100%;
}
.control-btn:active {
  transform: scale(0.95);
}
.control-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  z-index: 1;
  position: relative;
}

.play-btn {
  width: 60px;
  height: 60px;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.4), 0 0 20px rgba(255, 0, 128, 0.28), 0 0 30px rgba(255, 0, 128, 0.2);
}
.play-btn:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.56), 0 0 30px rgba(255, 0, 128, 0.4);
}

.volume-btn:hover {
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.42), 0 0 30px rgba(0, 212, 255, 0.3);
  border-color: #00d4ff;
}

.radio-player-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0 1.5rem;
  height: 100%;
  min-height: 80px;
}
.radio-player-wrapper * {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .player {
    padding: 1rem 1.5rem;
  }
  .player-container {
    gap: 1.5rem;
    flex-direction: row !important;
    align-items: center !important;
  }
  .player .player-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .player .player-logo .logo-text {
    font-size: 0.75rem;
  }
  .control-btn {
    width: 40px;
    height: 40px;
  }
  .control-btn svg {
    width: 16px;
    height: 16px;
  }
  .play-btn {
    width: 50px;
    height: 50px;
  }
  .radio-player-wrapper {
    margin: 0 !important;
    width: auto !important;
    flex: 1;
  }
  .player-info {
    display: none !important;
  }
}
.rtplmain_window {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(22, 33, 62, 0.95)) !important;
  border: 1px solid rgba(255, 0, 128, 0.3) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3) !important;
  padding: 12px 10px !important;
  margin: 10px auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 70px !important;
  line-height: normal !important;
  position: relative !important;
}

.rtplmain_window > * {
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.rtplbutton_play_stop {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 212, 255, 0.2)) !important;
  border: 1px solid rgba(255, 0, 128, 0.5) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.4) !important;
  position: relative !important;
  cursor: pointer !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.rtplbutton_play_stop:hover {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.4), rgba(0, 212, 255, 0.4)) !important;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.6) !important;
  transform: scale(1.1) !important;
}
.rtplbutton_play_stop:before {
  content: "" !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 12px solid #ffffff !important;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  margin-left: 2px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.rtplbutton_play_stop.playing:before {
  content: "||" !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #ffffff !important;
  margin-left: 0 !important;
  width: auto !important;
  height: auto !important;
}
.rtplbutton_play_stop.playing:after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 4px !important;
  height: 16px !important;
  background: #ffffff !important;
  box-shadow: 6px 0 0 #ffffff !important;
}

.rtplcurrent_time {
  color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
  margin: 0 10px !important;
  min-width: 80px !important;
  text-align: center !important;
  position: relative !important;
}

.rtplmute {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 212, 255, 0.2)) !important;
  border: 1px solid rgba(255, 0, 128, 0.5) !important;
  border-radius: 8px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3) !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}
.rtplmute:hover {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.4), rgba(0, 212, 255, 0.4)) !important;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5) !important;
  transform: scale(1.05) !important;
}
.rtplmute:before {
  content: "🔇" !important;
  font-size: 16px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.rtplmute.muted:before {
  content: "🔊" !important;
}
.rtplmute[class*=muted]:before {
  content: "🔇" !important;
}
.rtplmute.muted:after {
  content: "✕" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 20px !important;
  color: #ff0080 !important;
  font-weight: bold !important;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.8) !important;
}

.rtplvolume {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  height: 8px !important;
  width: 100px !important;
  margin: 0 8px !important;
  position: relative !important;
  border: 1px solid rgba(255, 0, 128, 0.3) !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}
.rtplvolume .ui-slider-handle {
  background: linear-gradient(45deg, #ff0080, #00d4ff) !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  top: -6px !important;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.6) !important;
  cursor: pointer !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.rtplvolume .ui-slider-handle:hover {
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.8) !important;
  transform: scale(1.2) !important;
}
.rtplvolume .ui-slider-range {
  background: linear-gradient(90deg, #ff0080, #00d4ff) !important;
  border-radius: 10px !important;
  height: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.rtplmaxvol {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 212, 255, 0.2)) !important;
  border: 1px solid rgba(255, 0, 128, 0.5) !important;
  border-radius: 8px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3) !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}
.rtplmaxvol:hover {
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.4), rgba(0, 212, 255, 0.4)) !important;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5) !important;
  transform: scale(1.05) !important;
}
.rtplmaxvol:before {
  content: "🔊" !important;
  font-size: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.rtplwrapperForIe {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 100% !important;
  flex: 0 0 auto !important;
  max-width: 400px !important;
}

#rtplayer-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 8px !important;
  min-height: 70px !important;
  height: 100% !important;
  flex: 0 0 auto !important;
  max-width: 450px !important;
}

@media (max-width: 768px) {
  .rtplmain_window {
    padding: 10px 12px !important;
    margin: 5px 0 !important;
    gap: 8px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    min-width: 280px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  .rtplbutton_play_stop {
    width: 45px !important;
    height: 45px !important;
  }
  .rtplmain_window > .rtplmute,
  .rtplmain_window > .rtplmaxvol,
  #rtplayer-1 .rtplmute,
  #rtplayer-1 .rtplmaxvol,
  .rtplwrapperForIe .rtplmute,
  .rtplwrapperForIe .rtplmaxvol {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .rtplmain_window > .rtplcurrent_time,
  #rtplayer-1 .rtplcurrent_time,
  .rtplwrapperForIe .rtplcurrent_time {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 8px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    min-width: 60px !important;
    text-align: center !important;
  }
  .rtplvolume {
    width: 120px !important;
    height: 6px !important;
  }
  .rtplvolume .ui-slider-handle {
    width: 16px !important;
    height: 16px !important;
  }
  #rtplayer-1 {
    gap: 8px !important;
    padding: 8px !important;
    width: auto !important;
    min-width: 280px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .rtplwrapperForIe {
    width: auto !important;
    min-width: 280px !important;
    gap: 8px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 480px) {
  .rtplmain_window {
    padding: 8px 10px !important;
    gap: 6px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    min-width: 250px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  .rtplbutton_play_stop {
    width: 40px !important;
    height: 40px !important;
  }
  .rtplmain_window > .rtplmute,
  .rtplmain_window > .rtplmaxvol,
  #rtplayer-1 .rtplmute,
  #rtplayer-1 .rtplmaxvol,
  .rtplwrapperForIe .rtplmute,
  .rtplwrapperForIe .rtplmaxvol {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .rtplmain_window > .rtplcurrent_time,
  #rtplayer-1 .rtplcurrent_time,
  .rtplwrapperForIe .rtplcurrent_time {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 6px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    min-width: 50px !important;
    text-align: center !important;
  }
  .rtplvolume {
    width: 100px !important;
    height: 5px !important;
  }
  .rtplvolume .ui-slider-handle {
    width: 14px !important;
    height: 14px !important;
  }
  #rtplayer-1 {
    gap: 6px !important;
    padding: 6px !important;
    width: auto !important;
    min-width: 250px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .rtplwrapperForIe {
    width: auto !important;
    min-width: 250px !important;
    gap: 6px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
  }
}
@keyframes pulse-neon {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.8);
  }
}
.rtplbutton_play_stop.loading {
  animation: pulse-neon 2s ease-in-out infinite !important;
}

.rtplmain_window.playing {
  border-color: rgba(0, 212, 255, 0.5) !important;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4) !important;
}

.rtplmain_window.paused {
  border-color: rgba(255, 0, 128, 0.5) !important;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3) !important;
}

.rtplmain_window * {
  box-sizing: border-box !important;
}

.rtplmain_window > * {
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.rtplbutton_play_stop,
.rtplmute,
.rtplmaxvol {
  align-self: center !important;
  vertical-align: middle !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  transform: translateY(0) !important;
}

#rtplayer-1 .rtplbutton_play_stop,
#rtplayer-1 .rtplmute,
#rtplayer-1 .rtplmaxvol {
  vertical-align: middle !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.rtplmain_window {
  vertical-align: middle !important;
}

.rtplwrapperForIe {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

.main-content {
  margin-top: calc(var(--header-height, 100px) + 1rem);
  margin-bottom: 0;
  padding: 3rem 2rem;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-height, 100px) - 200px);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 576px) {
  .content-container {
    padding: 0 0.5rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title h1 {
  font-family: "GoodTime Script", cursive;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.section-title h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.56), 0 0 30px rgba(255, 0, 128, 0.4);
}
.section-title--spaced {
  margin-top: 4rem;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  justify-content: center;
}
.content-grid .content-card {
  flex: 1 1 300px;
  max-width: 300px;
  min-width: 250px;
}
@media (max-width: 768px) {
  .content-grid {
    gap: 1.5rem;
  }
  .content-grid .content-card {
    flex: 1 1 280px;
    max-width: 280px;
  }
}
@media (max-width: 576px) {
  .content-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .content-grid .content-card {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: auto;
  }
}

.content-card {
  background: rgba(30, 30, 50, 0.3);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3), 0 0 20px rgba(255, 0, 128, 0.21), 0 0 30px rgba(255, 0, 128, 0.15);
  border-color: rgba(255, 0, 128, 0.3);
}
.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.content-card:hover::before {
  opacity: 1;
}
.content-card .card-header {
  margin-bottom: 1.5rem;
}
.content-card .card-header .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.content-card .card-header .card-meta {
  font-size: 0.8rem;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content-card .card-content {
  flex: 1;
  color: #b8b8b8;
  line-height: 1.6;
}
.content-card .card-content p {
  margin-bottom: 1rem;
}
.content-card .card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.content-card .card-footer .read-more {
  color: #ff0080;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.content-card .card-footer .read-more:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
}

@keyframes card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.content-card:nth-child(odd) {
  animation: card-float 6s ease-in-out infinite;
}

.content-card:nth-child(even) {
  animation: card-float 6s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .main-content {
    margin-top: calc(var(--header-height, 80px) + 0.5rem);
    margin-bottom: 0;
    padding: 2rem 1.5rem;
    padding-bottom: 200px;
    min-height: 120vh;
  }
  .section-title h1 {
    font-size: 2.5rem;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .content-card {
    min-height: 150px;
  }
}
@media (max-width: 576px) {
  .main-content {
    margin-top: calc(var(--header-height, 70px));
    margin-bottom: 0;
    padding: 1.5rem 1rem;
    padding-bottom: 180px;
    min-height: 120vh;
  }
  .section-title h1 {
    font-size: 2rem;
  }
  .content-card {
    min-height: 120px;
  }
}
@media (max-width: 400px) {
  .main-content {
    margin-top: calc(var(--header-height, 60px));
    margin-bottom: 0;
    padding: 1rem 0.5rem;
    padding-bottom: 160px;
    min-height: 120vh;
  }
  .content-container {
    padding: 0;
  }
  .section-title h1 {
    font-size: 1.8rem;
  }
  .content-card {
    min-height: 100px;
    padding: 1rem;
  }
}
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 20px;
  height: 20px;
}

.icon-mr-sm {
  margin-right: 4px;
}

.icon-mr-md {
  margin-right: 8px;
}

.icon-ml-sm {
  margin-left: 4px;
}

.icon-lg {
  width: 64px;
  height: 64px;
}

.articles-page {
  max-width: 1000px;
  margin: 0 auto;
}

.articles-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-top: 1.5rem;
}

.no-articles-message {
  text-align: center;
  padding: 3rem 0;
}

.no-articles-icon {
  color: #b8b8b8;
  margin-bottom: 1.5rem;
}

.no-articles-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.no-articles-text {
  color: #b8b8b8;
}

.article-page {
  max-width: 1000px;
  margin: 0 auto;
}

.article-nav {
  margin-bottom: 2rem;
}

.article-nav-link {
  display: inline-flex;
  align-items: center;
  color: #ff0080;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-nav-link:hover {
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
}

.article-main {
  background: rgba(30, 30, 50, 0.3);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 3rem;
}
.article-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3), 0 0 20px rgba(255, 0, 128, 0.21), 0 0 30px rgba(255, 0, 128, 0.15);
  border-color: rgba(255, 0, 128, 0.3);
}

.article-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #b8b8b8;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
}

.article-meta-separator {
  margin: 0 1rem;
}

.article-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}
.article-status--published {
  background-color: rgba(34, 197, 94, 0.1);
  color: rgb(22, 101, 52);
}
.article-status--draft {
  background-color: rgba(234, 179, 8, 0.1);
  color: rgb(146, 64, 14);
}
.article-status--archived {
  background-color: rgba(107, 114, 128, 0.1);
  color: rgb(55, 65, 81);
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.article-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-content {
  padding: 2rem;
}

.article-text {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.1rem;
}
.article-text h1, .article-text h2, .article-text h3, .article-text h4, .article-text h5, .article-text h6 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.article-text h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #ff0080;
  padding-bottom: 0.5rem;
}
.article-text p {
  margin-bottom: 1.5rem;
}
.article-text ul, .article-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.article-text li {
  margin-bottom: 0.5rem;
}
.article-text blockquote {
  border-left: 4px solid #ff0080;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #b8b8b8;
}
.article-text code {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}
.article-text pre {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.article-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.article-footer {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-author {
  display: flex;
  align-items: center;
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff0080, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.article-author-info h4 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.article-author-info p {
  font-size: 0.875rem;
  color: #b8b8b8;
  margin: 0;
}

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

.article-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.article-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff0080;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3), 0 0 20px rgba(255, 0, 128, 0.21), 0 0 30px rgba(255, 0, 128, 0.15);
}

.article-navigation {
  text-align: center;
  margin-top: 3rem;
}

.article-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #ff0080, #00d4ff);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5), 0 0 20px rgba(255, 0, 128, 0.35), 0 0 30px rgba(255, 0, 128, 0.25);
}
.article-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8), 0 0 20px rgba(255, 0, 128, 0.56), 0 0 30px rgba(255, 0, 128, 0.4);
  box-shadow: 0 8px 25px rgba(255, 0, 128, 0.3);
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .article-meta-separator {
    display: none;
  }
  .article-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .article-title {
    font-size: 1.75rem;
  }
  .article-subtitle {
    font-size: 1.125rem;
  }
  .article-text {
    font-size: 1rem;
  }
  .article-footer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .article-author {
    flex-direction: column;
    text-align: center;
  }
  .article-author-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .article-actions {
    justify-content: center;
  }
}
.concept-page {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.concept-hero {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.concept-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 0, 128, 0.3), transparent 45%);
  opacity: 0.4;
  pointer-events: none;
}
.concept-hero > * {
  position: relative;
  z-index: 1;
}
.concept-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.concept-hero__eyebrow {
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #b8b8b8;
  font-size: 0.8rem;
}

.concept-hero__lead {
  color: #b8b8b8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.concept-hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}
.concept-hero__highlights div {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.concept-hero__highlights span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}
.concept-hero__highlights small {
  display: block;
  margin-top: 0.5rem;
  color: #b8b8b8;
}

.concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.65rem;
  color: #00d4ff;
}

.concept-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.concept-story h2 {
  margin: 1rem 0;
}
.concept-story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.concept-story__grid article {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.concept-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.concept-pillars__card {
  background: rgba(30, 30, 50, 0.3);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.concept-pillars__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3), 0 0 20px rgba(255, 0, 128, 0.21), 0 0 30px rgba(255, 0, 128, 0.15);
  border-color: rgba(255, 0, 128, 0.3);
}
.concept-pillars__card h3 {
  margin-bottom: 0.5rem;
}
.concept-pillars__card p {
  color: #b8b8b8;
}

.concept-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.concept-timeline__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.concept-timeline__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.concept-timeline__year {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff0080;
}

.concept-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.concept-team__grid article {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.concept-team__grid h3 {
  margin-bottom: 0.5rem;
}

.concept-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.concept-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-secondary:hover {
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.35), 0 0 30px rgba(0, 212, 255, 0.25);
  border-color: #00d4ff;
  transform: translateY(-2px);
}
.btn-secondary:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .concept-timeline__item {
    grid-template-columns: 1fr;
  }
  .concept-cta {
    flex-direction: column;
    text-align: center;
  }
  .concept-cta__actions {
    justify-content: center;
  }
}
.dev-tooltip {
  position: absolute;
  max-width: 320px;
  min-width: 280px;
  background: rgba(26, 11, 46, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dev-tooltip::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(26, 11, 46, 0.95);
}
.dev-tooltip.active {
  opacity: 1;
  pointer-events: auto;
}
.dev-tooltip .tooltip-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dev-tooltip .tooltip-header .tooltip-icon {
  font-size: 1.2rem;
  opacity: 0.8;
}
.dev-tooltip .tooltip-header .tooltip-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}
.dev-tooltip .tooltip-header .tooltip-close {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: #b8b8b8;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
}
.dev-tooltip .tooltip-header .tooltip-close:hover {
  opacity: 1;
  color: #ffffff;
  transform: scale(1.1);
}
.dev-tooltip .tooltip-content {
  color: #b8b8b8;
  line-height: 1.5;
  font-size: 0.9rem;
}
.dev-tooltip .tooltip-content p {
  margin: 0 0 0.5rem 0;
}
.dev-tooltip .tooltip-content p:last-child {
  margin-bottom: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.login-card {
  background: rgba(30, 30, 50, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 128, 0.3);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.2);
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0080, #00d4ff, #8b5cf6);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  }
}
.login-title {
  font-family: "GoodTime Script", cursive;
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  position: relative;
}
.login-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #ff0080, #00d4ff);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: #ff0080;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
  background: rgba(0, 0, 0, 0.5);
}
.form-input::placeholder {
  color: #666;
}

.login-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #ff0080, #8b5cf6);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.login-btn:hover::before {
  left: 100%;
}
.login-btn:hover {
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
  transform: translateY(-2px);
}

.alert {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
.alert.alert-danger {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.user-info {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #00d4ff;
  text-align: center;
}
.user-info a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.user-info a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.login-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.login-link p {
  color: #b8b8b8;
  margin-bottom: 0.5rem;
}
.login-link a {
  color: #ff0080;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.login-link a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

@media (max-width: 768px) {
  .login-container {
    padding: 1rem;
  }
  .login-card {
    padding: 2rem;
  }
  .login-title {
    font-size: 2rem;
  }
}
.registration-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
}

.registration-card {
  background: rgba(30, 30, 50, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 255, 165, 0.3);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 0 30px rgba(6, 255, 165, 0.2);
  position: relative;
  overflow: hidden;
}
.registration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #06ffa5, #00d4ff, #8b5cf6);
  animation: neon-pulse-cyan 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse-cyan {
  0% {
    box-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  }
}
.registration-title {
  font-family: "GoodTime Script", cursive;
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  position: relative;
}
.registration-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #06ffa5, #00d4ff);
  box-shadow: 0 0 10px rgba(6, 255, 165, 0.8);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: #06ffa5;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.3);
  background: rgba(0, 0, 0, 0.5);
}
.form-input::placeholder {
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.checkbox-group:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.checkbox-input {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #06ffa5;
  cursor: pointer;
}

.checkbox-label {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}
.checkbox-label a {
  color: #06ffa5;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.checkbox-label a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.registration-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #06ffa5, #00d4ff);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.registration-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.registration-btn:hover::before {
  left: 100%;
}
.registration-btn:hover {
  box-shadow: 0 0 25px rgba(6, 255, 165, 0.6);
  transform: translateY(-2px);
}

.alert {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
.alert.alert-danger {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}
.alert.alert-success {
  background: rgba(6, 255, 165, 0.1);
  border-color: rgba(6, 255, 165, 0.3);
  color: #06ffa5;
  box-shadow: 0 0 15px rgba(6, 255, 165, 0.2);
}

.form-errors {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}
.form-errors ul {
  margin: 0;
  padding-left: 1.5rem;
}

.login-link {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.login-link p {
  color: #b8b8b8;
  margin-bottom: 0.5rem;
}
.login-link a {
  color: #06ffa5;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.login-link a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

@media (max-width: 768px) {
  .registration-container {
    padding: 1rem;
  }
  .registration-card {
    padding: 2rem;
  }
  .registration-title {
    font-size: 2rem;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/*# sourceMappingURL=app.output.css.map */
