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

:root {
  --primary-color: #ff0080;
  --secondary-color: #7928ca;
  --accent-color: #00d4ff;
  --dark-bg: #0a0a0a;
  --dark-card: #151515;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  position: relative;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}

.logo .logo-image {
  position: relative;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  border: 0.1em solid white;
}

.logo span {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-hero);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.4;
  z-index: -1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(240, 147, 251, 0.3) 0%,
      transparent 50%
    );
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(80px, 15vw, 180px);
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.title-line {
  display: block;
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(50px);
  }
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.btn {
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--dark-bg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.btn-small {
  padding: 10px 25px;
  font-size: 12px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--text-primary);
  border-radius: 15px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

.scroll-indicator p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 8vw, 70px);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-hero);
  margin: 0 auto 60px;
  border-radius: 2px;
}

/* About Section */
.about {
  background: var(--dark-card);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.image-placeholder img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.image-placeholder svg {
  width: 50%;
  height: 50%;
  color: rgba(255, 255, 255, 0.3);
}

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

.about-text .section-title {
  text-align: left;
}

.about-text .title-underline {
  margin: 0 0 30px 0;
}

.about-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--dark-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stat-item h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.music-card {
  position: relative;
  background: var(--dark-card);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.music-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.album-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-card:hover .album-cover::before {
  opacity: 1;
}

.music-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.music-card:hover .play-button {
  opacity: 1;
  transform: scale(1);
}

.play-button svg {
  width: 24px;
  height: 24px;
  color: var(--dark-bg);
  margin-left: 3px;
}

.music-info {
  padding: 20px;
}

.music-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.music-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Videos Section */
.videos {
  background: var(--dark-card);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--dark-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.video-card h3 {
  color: white;
}

.video-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  transform: scale(1.1);
  background: var(--text-primary);
}

.play-overlay svg {
  width: 30px;
  height: 30px;
  color: var(--dark-bg);
  margin-left: 4px;
}

.video-card h3 {
  padding: 20px 20px 10px;
  font-size: 16px;
  font-weight: 600;
}

.video-card p {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Tour Section */
.tour-list {
  max-width: 900px;
  margin: 0 auto;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: var(--dark-card);
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tour-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 10px;
  text-align: center;
}

.tour-date .month {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-date .day {
  font-size: 32px;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
}

.tour-info {
  flex: 1;
}

.tour-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tour-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: var(--dark-card);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--dark-bg);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateX(10px);
  background: var(--gradient-hero);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link span {
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--dark-bg);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  cursor: pointer;
  border: none;
  pointer-events: none;
  background-color: gray;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.footer p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 40px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-item h3 {
    font-size: 36px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .tour-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .music-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

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

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

@media (max-width: 480px) {
  .logo {
    font-size: 24px;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 40px;
  }

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