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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #0a0b14;
  color: #ccc;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}

.accent {
  color: #00d4ff;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  margin-bottom: 40px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.btn-primary:hover {
  background: transparent;
  color: #00d4ff;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(0, 212, 255, 0.3);
  margin-left: 14px;
}
.btn-outline:hover {
  border-color: #00d4ff;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar .logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
}
.navbar .logo span {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #00d4ff;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 22px;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-phone i {
  font-size: 0.85rem;
}
.nav-phone:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 4px 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: #00d4ff;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 11, 20, 0.92) 0%, rgba(10, 11, 20, 0.7) 50%, rgba(15, 10, 30, 0.85) 100%), url("../images/hero-background.jpg") center/cover no-repeat;
  padding-top: 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-text .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 18px;
}
.hero-text h1 {
  font-size: 4.5rem;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}
.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  margin: 24px 0 36px;
  color: #aaa;
  font-size: 0.95rem;
  max-width: 420px;
}

.player-card {
  background: rgba(15, 16, 25, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}

.album-cover {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.album-cover:hover img {
  transform: scale(1.05);
}

.album-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}

.album-info {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.album-info h4 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.album-info span {
  font-size: 0.78rem;
  color: #888;
}

.player-controls {
  padding: 20px 24px;
}

.track-name {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 14px;
  display: block;
}

.progress-bar-wrap {
  background: rgba(255, 255, 255, 0.1);
  height: 3px;
  border-radius: 2px;
  margin-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.progress-bar-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  border-radius: 2px;
  transition: width 0.1s;
}

.progress-bar-handle {
  position: absolute;
  top: 50%;
  right: 60%;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.player-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ctrl-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 0.9rem;
  padding: 2px;
  transition: color 0.2s;
}
.ctrl-btn:hover {
  color: #00d4ff;
}
.ctrl-btn.play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.ctrl-btn.play-btn:hover {
  background: #fff;
  box-shadow: none;
}

.time-display {
  margin-left: auto;
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 1px;
}

.stats-bar {
  background: #0f1019;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}
.stats-bar .inner {
  display: flex;
  justify-content: space-around;
  padding: 32px 0;
}

.stat-item {
  text-align: center;
}
.stat-item .number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-top: 6px;
}

.pricing {
  background: #0c0d17;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.pricing-card {
  background: #12131e;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.pricing-card.featured {
  border-color: #b44dff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
  transform: translateY(-8px);
}
.pricing-card h3 {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}
.price sup {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  margin-bottom: 34px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding-top: 24px;
}
.pricing-features li {
  padding: 9px 0;
  font-size: 0.83rem;
  color: #aaa;
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li i {
  font-size: 0.7rem;
  color: #00d4ff;
  margin-right: 8px;
}

.tracks {
  background: #0a0b14;
}

.tracks-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.tracks-header .view-all {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  border-bottom: 1px solid #00d4ff;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.tracks-header .view-all:hover {
  color: #fff;
  border-color: #fff;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0f1019;
  border: 1px solid rgba(0, 212, 255, 0.06);
  padding: 18px 24px;
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.track-item:hover {
  background: #151622;
  border-color: rgba(0, 212, 255, 0.3);
}
.track-item:hover .track-play {
  background: #00d4ff;
  color: #0a0b14;
}

.track-num {
  width: 28px;
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

.track-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.track-cover {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.track-info {
  flex: 1;
}
.track-info h3 {
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.track-info .genre {
  font-size: 0.72rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.track-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.track-actions a {
  color: #555;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.track-actions a:hover {
  color: #00d4ff;
}

.track-mini-progress {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.track-mini-fill {
  height: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  border-radius: 1px;
  width: 0%;
}

.track-duration {
  font-size: 0.72rem;
  color: #666;
  letter-spacing: 1px;
  min-width: 38px;
  text-align: right;
}

.about {
  background: #0c0d17;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  min-width: 110px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.about-img-badge .years {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.about-img-badge .years-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-text blockquote {
  font-size: 1.2rem;
  color: #00d4ff;
  font-style: italic;
  line-height: 1.7;
  border-image: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%) 1;
  border-left: 3px solid;
  padding-left: 22px;
  margin-bottom: 28px;
}
.about-text p {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
}

.about-stat .val {
  display: block;
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  color: #fff;
}
.about-stat .key {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}

.skills-list {
  margin: 24px 0;
}

.skill-row {
  margin-bottom: 14px;
}
.skill-row .skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 6px;
}

.skill-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  border-radius: 2px;
}

.video-section {
  background: #0a0b14;
  padding: 90px 0;
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.video-text h2 {
  margin-bottom: 14px;
}
.video-text p {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 28px;
}

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.networks {
  background: #0c0d17;
}

.networks-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.networks-text p {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 32px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 10px;
  background: #151622;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #888;
}
.social-link i {
  font-size: 1.3rem;
}
.social-link span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.social-link:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  border-color: #00d4ff;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}

.contact-info {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}
.contact-info .contact-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}
.contact-info .contact-email {
  font-size: 1.05rem;
  color: #00d4ff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
}

.waveform-widget {
  background: #0f1019;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
}
.waveform-widget .waveform-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-top: 20px;
}

.waveform-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 80px;
}

.availability-widget {
  background: #0f1019;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 24px;
}
.availability-widget .availability-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 12px;
}
.availability-widget .availability-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.availability-widget .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
}
.availability-widget .status-text {
  font-size: 0.85rem;
  color: #aaa;
}

.networks-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter {
  background: #0a0b14;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter-text h2 {
  margin-bottom: 14px;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: #888;
}

.newsletter-form {
  display: flex;
}
.newsletter-form input {
  flex: 1;
  background: #151622;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 14px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder {
  color: #555;
}
.newsletter-form input:focus {
  border-color: #00d4ff;
}
.newsletter-form button {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  border: none;
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.newsletter-form button:hover {
  opacity: 0.85;
}

footer {
  background: #07080f;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  padding: 28px 0;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .logo {
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  color: #fff;
  letter-spacing: 2px;
}
footer .logo span {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer .copy {
  font-size: 0.75rem;
  color: #555;
}
footer .foot-links {
  display: flex;
  gap: 24px;
}
footer .foot-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  transition: color 0.3s;
}
footer .foot-links a:hover {
  color: #00d4ff;
}

.hero-inner--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-text--wide {
  max-width: 720px;
}
.hero-text--wide p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero-text--wide .cta-group {
  justify-content: center;
}

.hero-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00d4ff;
  margin-top: -12px;
  margin-bottom: 36px;
}

.section-intro {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 32px;
}

.section-outro {
  text-align: center;
  margin-top: 48px;
}
.section-outro p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
}
.section-outro--highlight p {
  font-size: 1.15rem;
  color: #fff;
}
.section-outro--highlight p strong {
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1;
}

.feature-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-top: 16px;
}

.occasions {
  background: #0a0b14;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.occasion-card {
  background: #12131e;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.occasion-card:hover {
  transform: translateY(-6px);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.occasion-card .occasion-emoji {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.occasion-card h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
  line-height: 1.5;
}

.listen {
  background: #0c0d17;
}

.listen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.listen-text p {
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.7;
}

.listen-waveform .waveform-widget {
  width: 100%;
}

.track-item.active {
  background: #151622;
  border-color: rgba(0, 212, 255, 0.4);
}
.track-item.active .track-play {
  background: #00d4ff;
  color: #0a0b14;
}

.player-bar {
  margin-top: 28px;
  background: #0f1019;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 16px 24px;
}

.player-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-bar-info {
  min-width: 160px;
  flex-shrink: 0;
}
.player-bar-info .player-bar-title {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-bar-info .player-bar-genre {
  font-size: 0.68rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.player-bar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ctrl-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}
.ctrl-btn:hover {
  color: #00d4ff;
}

.play-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  color: #0a0b14;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
}
.play-btn:hover {
  opacity: 0.85;
}

.player-bar-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.player-bar-time {
  font-size: 0.68rem;
  color: #555;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

.progress-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.15s linear;
}

.player-bar-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.player-bar-volume input[type=range] {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}
.player-bar-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00d4ff;
  cursor: pointer;
}
.player-bar-volume input[type=range]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00d4ff;
  border: none;
  cursor: pointer;
}

.why-us {
  background: #0a0b14;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: #12131e;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.benefit-item:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.benefit-item i {
  font-size: 0.8rem;
  color: #00d4ff;
  flex-shrink: 0;
}
.benefit-item span {
  font-size: 0.88rem;
  color: #ccc;
}

.contact-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 1rem;
  color: #888;
  margin-bottom: 36px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 24px;
  background: #12131e;
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #ccc;
}
.contact-card:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(180, 77, 255, 0.15);
  transform: translateY(-4px);
}
.contact-card i {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #00d4ff 0%, #b44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-card .contact-card-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
}
.contact-card .contact-card-value {
  font-size: 0.95rem;
  color: #00d4ff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}

.contact-cta {
  font-size: 0.92rem;
  color: #888;
  font-style: italic;
}

.center-section .section-title, .center-section .section-intro {
  text-align: center;
}
.center-section .section-divider {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .video-inner,
  .networks-inner,
  .newsletter-inner,
  .listen-inner {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .player-bar-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .player-bar-info {
    min-width: 100%;
  }
  .player-bar-progress {
    min-width: 100%;
    order: 10;
  }
  .player-bar-volume {
    display: none;
  }
  .stats-bar .inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .about-img-badge {
    right: 0;
  }
}
@media (max-width: 560px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .btn-outline {
    margin-left: 0;
    margin-top: 10px;
  }
  .hero-text .cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .occasions-grid {
    grid-template-columns: 1fr;
  }
  footer .inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .track-item {
    flex-wrap: wrap;
  }
  .track-item .track-mini-progress {
    width: 100%;
  }
}

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