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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.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 ease;
}
.btn:hover::before {
  left: 100%;
}
.btn--primary {
  background: #00d4ff;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.35);
}
.btn--primary:hover {
  background: rgb(51, 220.6, 255);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #252525;
}
.btn--secondary:hover {
  border-color: #00d4ff;
  color: #00d4ff;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem 2rem;
  }
}
.nav__logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #00d4ff;
  letter-spacing: 0.1em;
}
.nav__links {
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .nav__links {
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .nav__links {
    display: none;
  }
}
.nav__links a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}
.nav__links a:hover {
  color: #ffffff;
}
.nav__links a:hover::after {
  width: 100%;
}

.section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero__tagline {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4rem;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-indicator span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888888;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #00d4ff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.releases {
  background: #0a0a0a;
}
.releases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .releases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .releases__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.release-card {
  background: #0f0f0f;
  border: 1px solid #252525;
  transition: all 0.3s ease;
  overflow: hidden;
}
.release-card:hover {
  border-color: #00d4ff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.release-card:hover .release-card__placeholder {
  background: #252525;
}
@media (min-width: 1024px) {
  .release-card--featured {
    grid-column: 1;
    grid-row: 1;
  }
}
.release-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.release-card__image--embed {
  aspect-ratio: auto;
  min-height: 352px;
}
.release-card__image--embed iframe {
  width: 100%;
  height: 100%;
  min-height: 352px;
}
.release-card__placeholder {
  width: 100%;
  height: 100%;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s ease;
}
.release-card__content {
  padding: 2rem;
}
.release-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.release-card__meta {
  font-size: 0.875rem;
  color: #888888;
  margin-bottom: 2rem;
}

.remix {
  background: #000000;
}
.remix__card {
  display: block;
  width: 100%;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #0f0f0f 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid #252525;
  transition: all 0.3s ease;
  cursor: pointer;
}
.remix__card:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
  transform: translateY(-4px);
}
.remix__card:hover .remix__card-icon {
  background: #00d4ff;
  color: #000000;
  transform: scale(1.1);
}
.remix__card:hover .remix__card-cta {
  color: #00d4ff;
}
.remix__card-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .remix__card-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.remix__card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.remix__card-info {
  flex-grow: 1;
}
.remix__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.remix__card-artist {
  font-size: 1rem;
  color: #888888;
}
.remix__card-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  transition: color 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .remix__card-cta {
    margin-top: 1rem;
  }
}

.about {
  background: #0a0a0a;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about__image {
  position: relative;
}
.about__image::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid #00d4ff;
  z-index: -1;
  transition: all 0.3s ease;
}
.about__image:hover::before {
  top: -2rem;
  left: -2rem;
}
.about__image-placeholder {
  aspect-ratio: 3/4;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about__content .section__title {
  margin-bottom: 2rem;
}
.about__bio {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.about__stats {
  display: flex;
  gap: 6rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #252525;
}
@media (max-width: 576px) {
  .about__stats {
    flex-direction: column;
    gap: 2rem;
  }
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00d4ff;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  margin-top: 0.5rem;
}

.footer {
  background: #000000;
  padding: 6rem 0 2rem;
  border-top: 1px solid #252525;
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__brand {
    order: -1;
  }
}
.footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.875rem;
  color: #888888;
}
.footer__social h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  margin-bottom: 1rem;
}
.footer__social-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__social-links {
    justify-content: center;
  }
}
.footer__social-link {
  color: #888888;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  color: #00d4ff;
  transform: translateY(-2px);
}
.footer__social-link svg {
  width: 24px;
  height: 24px;
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #252525;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: #888888;
  letter-spacing: 0.05em;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: #00d4ff;
  color: #000000;
}

::-moz-selection {
  background: #00d4ff;
  color: #000000;
}

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

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #252525;
}
::-webkit-scrollbar-thumb:hover {
  background: #00d4ff;
}

/*# sourceMappingURL=style.css.map */
