:root {
  --magenta: #ff00ff;
  --magenta-dark: #cc00cc;
  --magenta-light: #ff66ff;
  --purple: #8b00ff;
  --purple-dark: #6a00cc;
  --purple-light: #a64dff;
  --deep-purple: #2d004d;
  --dark-bg: #0a0012;
  --darker-bg: #050008;
  --text-light: #ffffff;
  --text-muted: #b8a3c7;
  --gradient-primary: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--purple-dark) 0%, var(--magenta-dark) 100%);
  --gradient-bg: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-purple) 50%, var(--dark-bg) 100%);
  --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
  --glow-purple: 0 0 20px rgba(139, 0, 255, 0.5);
}
@font-face {
  font-family: 'Elektra';
  src: url('Fonts/Elektratest-Regular.otf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border: 2px solid var(--magenta);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: pulse-animation 4s ease-out infinite;
}
.pulse-ring.delay-1 {
  animation-delay: 1.3s;
  border-color: var(--purple);
}
.pulse-ring.delay-2 {
  animation-delay: 2.6s;
  border-color: var(--magenta-light);
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 0, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-light);
}
.logo-icon {
  font-size: 2rem;
}
.logo-text {
  /*font-family: 'Orbitron', sans-serif;*/
  font-family: 'Elektra', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--magenta-light);
}
.nav-links a:hover::after {
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(139, 0, 255, 0.1) 0%, transparent 70%);
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-title {
  margin-bottom: 1.5rem;
}
.title-line {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  /*font-family: 'Elektra', system-ui, sans-serif;*/
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.title-main {
  display: block;
  /*font-family: 'Orbitron', sans-serif;*/
  font-family: 'Elektra', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow-magenta);
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--glow-magenta);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
}
.btn-secondary {
  background: transparent;
  color: var(--magenta-light);
  border: 2px solid var(--magenta);
}
.btn-secondary:hover {
  background: rgba(255, 0, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--glow-magenta);
}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vinyl-record {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111 0%, #333 50%, #111 100%);
  position: relative;
  animation: spin 8s linear infinite;
  box-shadow:
    0 0 50px rgba(255, 0, 255, 0.3),
    inset 0 0 50px rgba(0, 0, 0, 0.8);
}
.vinyl-record::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #222 0px,
    #222 2px,
    #111 2px,
    #111 4px
  );
}
.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
  box-shadow: var(--glow-magenta);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.featured-djs {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 0, 77, 0.3) 50%, transparent 100%);
}
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.dj-card {
  background: rgba(45, 0, 77, 0.4);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 0, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dj-card:hover {
  transform: translateY(-10px);
  border-color: var(--magenta);
  box-shadow: var(--glow-magenta);
}
.dj-avatar {
  position: relative;
  text-align: center;
}
.avatar-placeholder {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--glow-purple);
  overflow: hidden;
}
.dj-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  background: rgba(139, 0, 255, 0.3);
  border: 1px solid var(--purple);
}
.dj-status.online {
  background: rgba(0, 255, 100, 0.2);
  border-color: #00ff64;
  color: #00ff64;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 255, 100, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.8);
  }
}
.dj-info {
  text-align: center;
}
.dj-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.dj-genre {
  color: var(--magenta-light);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.dj-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.dj-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.dj-link {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.dj-link.profile {
  background: var(--gradient-primary);
  color: var(--text-light);
}
.dj-link.profile:hover {
  box-shadow: var(--glow-magenta);
}
.dj-link.social {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--purple);
}
.dj-link.social:hover {
  background: rgba(139, 0, 255, 0.2);
  box-shadow: var(--glow-purple);
}
.view-all-djs {
  text-align: center;
}
.events {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.event-card {
  display: flex;
  background: rgba(45, 0, 77, 0.4);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 255, 0.2);
  transition: all 0.3s ease;
}
.event-card:hover {
  border-color: var(--magenta);
  box-shadow: var(--glow-magenta);
  transform: translateX(10px);
}
.event-date {
  background: var(--gradient-primary);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}
.event-date .day {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-date .number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.event-date .month {
  font-size: 0.9rem;
  font-weight: 500;
}
.event-info {
  padding: 1.5rem;
  flex: 1;
}
.event-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.event-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.event-time {
  color: var(--magenta-light);
  font-weight: 600;
  font-size: 0.9rem;
}
.join-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 0, 77, 0.3) 50%, transparent 100%);
}
.join-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.join-card {
  background: rgba(45, 0, 77, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 0, 255, 0.2);
  transition: all 0.3s ease;
}
.join-card:hover {
  transform: translateY(-10px);
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
}
.join-icon {

  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--glow-purple);
  overflow: hidden;

  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.join-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.join-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer {
  background: rgba(5, 0, 8, 0.9);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
}
.footer-brand .logo-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand .logo-text {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-column h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--magenta-light);
}
.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: var(--magenta);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 0, 255, 0.1);
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }
  .title-main {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 3rem;
  }
  .vinyl-record {
    width: 200px;
    height: 200px;
  }
  .vinyl-label {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .dj-grid {
    grid-template-columns: 1fr;
  }
  .event-card {
    flex-direction: column;
  }
  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem;
  }
  .event-date .number {
    font-size: 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .title-main {
    font-size: 2rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .dj-card {
    padding: 1.5rem;
  }
  .join-card {
    padding: 1.5rem;
  }
}
