:root {
  --bg-dark: #0e171c;
  --bg-card: rgba(245, 245, 245, 0.05);
  --text-light: #f5f5f5c4;
  --text-muted: #b8c1c6;
  --orange: #ff7629;
  --orange-dark: #e66c27;
}
body {
  background-color: var(--bg-dark);
  font-family: "Open Sans", "Inter", system-ui, sans-serif;
  color: var(--text-muted);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.fw-semibold {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.btn-orange {
  background: var(--orange);
  color: white;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: white;
}
.btn-outline-light-custom {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  transition: 0.2s;
}
.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.navbar {
  background-color: var(--bg-dark);
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-brand img {
  height: 32px;
}
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.25rem;
}
.nav-link:hover {
  color: white !important;
}
.hero-section {
  background: linear-gradient(135deg, #0e171c 0%, #1b2429 100%);
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.fl-studio-screen {
  background: linear-gradient(145deg, #182126, #2a353c);
  border-radius: 28px;
  padding: 12px;
  box-shadow:
    0 0 60px rgba(214, 92, 171, 0.25),
    0 30px 50px rgba(0, 0, 0, 0.5);
  margin-top: 3rem;
}
.screen-bezel {
  background: #0f1215;
  border-radius: 20px;
  overflow: hidden;
}
.screen-video-placeholder {
  background: #1e2a32;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creators-track {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  gap: 2rem;
  padding: 1rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.creators-scroll {
  display: flex;
  gap: 2rem;
  animation: scroll 80s linear infinite;
}
.creator-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 18px 8px 12px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}
.creator-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #2c3a42;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.feature-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.2s;
}
.feature-card img {
  width: 100%;
  border-radius: 16px;
  margin-top: 1.5rem;
}
.pricing-card {
  background: rgba(245, 245, 245, 0.04);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-radio {
  accent-color: var(--orange);
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 1rem;
}
.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.pricing-item.active {
  background: rgba(255, 118, 41, 0.1);
  margin: 0 -1rem;
  padding: 1rem 1rem;
  border-radius: 20px;
  border-bottom: none;
}
.badge-popular {
  background: var(--orange);
  color: #0e171c;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 30px;
  margin-left: 12px;
}
.separator-light {
  background-color: rgba(255, 255, 255, 0.07);
  height: 1px;
  width: 100%;
  margin: 1.5rem 0;
  opacity: 0.6;
}
.feature-list {
  max-width: 450px;
  margin: 0 auto;
}
.feature-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}
.feature-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.album-tile {
  background: #1a262e;
  aspect-ratio: 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
}
.album-tile:hover {
  transform: scale(1.02);
}
.album-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  padding: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}
.testimonial-card {
  background: rgba(245, 245, 245, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2f3e46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.feature-showcase {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-showcase__inner {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 245, 0.05) 0%,
    rgba(245, 245, 245, 0.1) 100%
  );
  border-radius: 28px;
  overflow: hidden;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .feature-showcase__inner {
    padding: 4rem 2.5rem 2rem;
  }
}
.feature-showcase__content {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.feature-showcase__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .feature-showcase__title {
    font-size: 1.8rem;
  }
}
.feature-showcase__description {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.77);
  max-width: 480px;
  margin: 0 auto 1.8rem;
}
.feature-showcase__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f6f6f6;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(2px);
}
.feature-showcase__button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.feature-showcase__arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
  display: inline-block;
}
.feature-showcase__button:hover .feature-showcase__arrow {
  transform: translateX(5px);
}
.feature-showcase__image {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.feature-showcase__img {
  max-width: 95%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}
.fl-update-block {
  background: linear-gradient(135deg, #192225 53%, #454f37 100%);
  border-radius: 24px;
  overflow: hidden;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 3rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .fl-update-block {
    padding: 4rem 2rem 2rem;
  }
}
.update-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.download-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.download-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.update-description {
  color: #f5f5f5c4;
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 1.8rem;
}
.btn-outline-update {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-update:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.btn-primary-update {
  background: #ff7629;
  border: none;
  color: white;
  border-radius: 40px;
  padding: 10px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-update:hover {
  background: #e66c27;
  color: white;
}
.btn-primary-update i {
  transition: transform 0.2s;
}
.btn-primary-update:hover i {
  transform: translateX(4px);
}
.update-image {
  margin-top: 2.5rem;
  text-align: center;
}
.update-image img {
  max-width: 85%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hits-showcase {
  max-width: 1200px;
  margin: 2rem auto;
}
.hits-showcase__inner {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 245, 0.05) 0%,
    rgba(245, 245, 245, 0.1) 100%
  );
  border-radius: 28px;
  padding: 3rem 1.5rem;
  text-align: center;
}
.hits-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.hits-header p {
  color: rgba(245, 245, 245, 0.77);
  max-width: 500px;
  margin: 0 auto;
}
.updates-card {
  background: rgba(245, 245, 245, 0.03);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.2s;
  height: 100%;
}
.updates-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.link-arrow {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.link-arrow i {
  transition: transform 0.2s;
}
.link-arrow:hover i {
  transform: translateX(5px);
}
/* Footer styles */
.il-footer {
  --footer-background: #0e171c;
  --footer-text-color: rgba(245, 245, 245, 0.77);
  --footer-padding-vertical: 60px;
  --footer-padding-bottom: 60px;
  --footer-content-width: 1200px;
  --footer-padding-horizontal: 24px;
  --footer-header-font-size: 14px;
  --footer-header-font-weight: 600;
  --footer-header-margin-bottom: 20px;
  --footer-header-color: #f6f6f6;
  --footer-item-gap: 12px;
  --footer-link-color: #b8c1c6;
  --footer-link-font-size: 14px;
  --footer-link-hover-color: #fff;
  --footer-focus-color: #ff7629;
  --footer-meta-gap: 50px;
  --footer-meta-font-size: 14px;
  --footer-meta-text-color: #b8c1c6;
  --footer-meta-link-color: #f6f6f6;
  --footer-logo-width: 22px;
  --footer-logo-height: 25px;
  background: var(--footer-background);
  color: var(--footer-text-color);
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: center;
  padding: var(--footer-padding-vertical) var(--footer-padding-horizontal)
    var(--footer-padding-bottom);
}
.il-footer-inner {
  max-width: var(--footer-content-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--footer-meta-gap);
}
.il-footer-columns {
  display: flex;
  gap: 60px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.il-footer-column {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.il-footer-column-title {
  font-size: var(--footer-header-font-size);
  font-weight: var(--footer-header-font-weight);
  color: var(--footer-header-color);
  margin: 0;
}
.il-footer-column-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--footer-item-gap);
  margin-top: var(--footer-header-margin-bottom);
}
.il-footer-link {
  color: var(--footer-link-color);
  text-decoration: none;
  font-size: var(--footer-link-font-size);
  transition: color 0.2s;
}
.il-footer-link:hover {
  color: var(--footer-link-hover-color);
}
.il-footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.il-footer-meta-logo svg {
  width: var(--footer-logo-width);
  height: var(--footer-logo-height);
  fill: currentColor;
}
.il-footer-meta-content p {
  margin: 0;
  font-size: var(--footer-meta-font-size);
  color: var(--footer-meta-text-color);
}
.il-footer-meta-link {
  color: var(--footer-meta-link-color);
  text-decoration: none;
  font-size: var(--footer-meta-font-size);
}
.il-footer-meta-link:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .il-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .il-footer-meta {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  .pricing-item {
    flex-wrap: wrap;
    gap: 8px;
  }
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* NEW SECTION STYLES (inspired by provided HTML) */
.fl-bottom-edition {
  max-width: 1200px;
  margin: 3rem auto 2rem;
  background: rgba(245, 245, 245, 0.04);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.fl-bottom-edition-header {
  text-align: center;
  margin-bottom: 2rem;
}
.fl-bottom-edition-logo {
  width: 70px;
  margin-bottom: 1rem;
}
.fl-bottom-edition-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}
.fl-bottom-edition-sub {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.77);
  margin-top: 0.5rem;
}
.edition-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.15s;
}
.edition-option-row.active {
  background: rgba(255, 118, 41, 0.08);
  margin: 0 -1rem;
  padding: 1rem 1rem;
  border-radius: 20px;
  border-bottom: none;
}
.edition-radio-custom {
  accent-color: var(--orange);
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 1rem;
}
.edition-info-custom {
  flex: 1;
}
.edition-name-custom {
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.edition-desc-custom {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.8);
  margin-top: 0.2rem;
}
.edition-price-custom {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  white-space: nowrap;
}
.bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-compare-bottom {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f6f6f6;
  border-radius: 40px;
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.btn-compare-bottom:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.btn-buy-bottom {
  background: #ff7629;
  border: none;
  color: white;
  border-radius: 40px;
  padding: 0.7rem 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.btn-buy-bottom:hover {
  background: #e66c27;
  color: white;
}
.payment-footer-bottom {
  text-align: center;
  margin-top: 2rem;
}
.payment-footer-bottom img {
  max-height: 32px;
  width: auto;
  filter: brightness(0.9);
}
.payment-footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.53);
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .edition-option-row {
    flex-wrap: wrap;
  }
  .edition-price-custom {
    margin-left: auto;
  }
  .bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-compare-bottom,
  .btn-buy-bottom {
    text-align: center;
  }
}
