  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: #0b0816;
  }
  
  @keyframes music-fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  @keyframes music-card-in {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .music-hero {
    position: relative;
    overflow: hidden;
    padding: 144px 0 48px;
    background: #0b0816;
  }
  
  .music-hero .hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .music-hero .hero-atmosphere .hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
  }
  
  .music-hero .hero-atmosphere .hero-glow-left {
    top: 25%;
    left: 25%;
    background: rgba(217, 77, 255, 0.2);
    transform: translate(-50%, -50%);
  }
  
  .music-hero .hero-atmosphere .hero-glow-right {
    right: 25%;
    bottom: 25%;
    background: rgba(255, 94, 102, 0.1);
    transform: translate(50%, 50%);
  }
  
  .music-hero .hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-hero .hero-container .hero-heading {
    margin: 0 auto 64px;
    text-align: center;
  }
  
  .music-hero .hero-heading h1 {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    animation: music-fade-up 500ms ease backwards;
  }
  
  .music-hero .hero-heading h1 span {
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .music-hero .hero-heading p {
    max-width: 768px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1.62;
    animation: music-fade-up 500ms 100ms ease backwards;
  }
  
  .music-hero .hero-container .generator-card {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
    animation: music-card-in 500ms 200ms ease backwards;
  }
  
  .music-hero .hero-container .generator-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(24px);
    pointer-events: none;
    content: "";
  }
  
  .music-hero .generator-card .generator-accent {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
  }
  
  .music-hero .generator-card .generator-form {
    position: relative;
    z-index: 1;
  }
  
  .music-hero .generator-form .prompt-field {
    margin-bottom: 32px;
  }
  
  .music-hero .prompt-field .field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  .music-hero .field-label .wand-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transform: rotate(-42deg);
  }
  
  .music-hero .field-label .wand-icon::before {
    position: absolute;
    top: 7px;
    left: 1px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #d94dff;
    box-shadow: -1px 0 0 1px rgba(217, 77, 255, 0.3);
    content: "";
  }
  
  .music-hero .field-label .wand-icon::after {
    position: absolute;
    top: 1px;
    right: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d94dff;
    box-shadow: -7px 0 0 #d94dff, 0 7px 0 rgba(217, 77, 255, 0.75);
    content: "";
  }
  
  .music-hero .prompt-field .prompt-control {
    position: relative;
  }
  
  .music-hero .prompt-control textarea {
    display: block;
    width: 100%;
    min-height: 120px;
    padding: 24px 70px 24px 24px;
    resize: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    transition: border-color 300ms ease, background-color 300ms ease;
  }
  
  .music-hero .prompt-control textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  
  .music-hero .prompt-control textarea:focus {
    border-color: #d94dff;
  }
  
  .music-hero .prompt-control .character-count {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    pointer-events: none;
  }
  
  .music-hero .prompt-control .character-count b {
    font-weight: 400;
  }
  
  .music-hero .generator-form .style-field {
    margin-bottom: 32px;
  }
  
  .music-hero .style-field > .field-label {
    display: block;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  .music-hero .style-field .style-select {
    position: relative;
  }
  
  .music-hero .style-select .style-trigger {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    gap: 16px;
    padding: 12px 20px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: left;
    transition: border-color 300ms ease;
  }
  
  .music-hero .style-select .style-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .music-hero .style-trigger .selected-styles {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }
  
  .music-hero .style-trigger .selected-styles .selected-style-chip {
    padding: 4px 8px;
    border: 1px solid rgba(217, 77, 255, 0.3);
    border-radius: 6px;
    background: rgba(217, 77, 255, 0.2);
    color: #d94dff;
    font-size: 12px;
    line-height: 1.2;
  }
  
  .music-hero .style-trigger .selected-styles .styles-placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
  }
  
  .music-hero .style-trigger .select-chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin: -5px 3px 0 0;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: transform 300ms ease;
  }
  
  .music-hero .style-trigger.is-open .select-chevron {
    margin-top: 5px;
    transform: rotate(225deg);
  }
  
  .music-hero .style-select .style-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    visibility: hidden;
    cursor: default;
    opacity: 0;
  }
  
  .music-hero .style-select .style-overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
  
  .music-hero .style-select .style-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    display: flex;
    visibility: hidden;
    width: 100%;
    padding: 8px;
    flex-wrap: wrap;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #0b0816;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
  
  .music-hero .style-select .style-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .music-hero .style-menu .style-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(50% - 2px);
    min-height: 44px;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-align: left;
    transition: color 300ms ease, background-color 300ms ease;
  }
  
  .music-hero .style-menu .style-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
  }
  
  .music-hero .style-menu .style-option.is-selected {
    background: rgba(217, 77, 255, 0.1);
    color: #d94dff;
    font-weight: 700;
  }
  
  .music-hero .style-option .style-option-check {
    display: none;
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(38%) sepia(95%) saturate(3719%) hue-rotate(266deg) brightness(104%) contrast(102%);
  }
  
  .music-hero .style-option.is-selected .style-option-check {
    display: block;
  }
  
  .music-hero .generator-form .lyrics-settings {
    margin-bottom: 32px;
  }
  
  .music-hero .lyrics-settings .lyrics-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .music-hero .lyrics-toolbar .lyrics-mode-group {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .music-hero .lyrics-mode-group > .field-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }
  
  .music-hero .lyrics-mode-group .lyrics-mode-switch {
    display: flex;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .music-hero .lyrics-mode-switch .lyrics-mode-button {
    padding: 8px 24px;
    cursor: pointer;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 700;
    transition: color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
  }
  
  .music-hero .lyrics-mode-switch .lyrics-mode-button:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .music-hero .lyrics-mode-switch .lyrics-mode-button.is-active {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    color: #ffffff;
  }
  
  .music-hero .lyrics-toolbar .instrumental-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
  }
  
  .music-hero .instrumental-toggle > span:first-child {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    transition: color 300ms ease;
  }
  
  .music-hero .instrumental-toggle:hover > span:first-child {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .music-hero .instrumental-toggle.is-active > span:first-child {
    color: #d94dff;
  }
  
  .music-hero .instrumental-toggle .toggle-track {
    position: relative;
    width: 32px;
    height: 16px;
    flex: 0 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 300ms ease, background-color 300ms ease;
  }
  
  .music-hero .toggle-track .toggle-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
  }
  
  .music-hero .instrumental-toggle.is-active .toggle-track {
    border-color: transparent;
    background: rgba(217, 77, 255, 0.4);
  }
  
  .music-hero .instrumental-toggle.is-active .toggle-dot {
    background: #d94dff;
    box-shadow: 0 0 8px rgba(171, 79, 255, 0.5);
    transform: translateX(16px);
  }
  
  .music-hero .lyrics-settings .own-lyrics-panel {
    visibility: hidden;
    max-height: 0;
    margin-top: 0;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    backdrop-filter: blur(12px);
    transition: max-height 350ms ease, margin-top 350ms ease, padding 350ms ease, border-color 350ms ease, opacity 300ms ease, visibility 350ms ease;
  }
  
  .music-hero .lyrics-settings .own-lyrics-panel.is-open {
    visibility: visible;
    max-height: 620px;
    margin-top: 24px;
    padding: 24px;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
  
  .music-hero .own-lyrics-panel .song-title-field {
    margin-bottom: 20px;
  }
  
  .music-hero .song-title-field .own-field-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
  }
  
  .music-hero .own-field-heading label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .music-hero .own-field-heading span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
  }
  
  .music-hero .song-title-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: border-color 300ms ease;
  }
  
  .music-hero .song-title-field input::placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  
  .music-hero .song-title-field input:focus {
    border-color: #d94dff;
  }
  
  .music-hero .custom-lyrics-field .lyrics-field-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .music-hero .lyrics-field-heading > label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .music-hero .lyrics-field-heading .lyrics-tags {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .music-hero .lyrics-tags > span {
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
  }
  
  .music-hero .lyrics-tags button {
    padding: 2px 8px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    transition: color 300ms ease, border-color 300ms ease, background-color 300ms ease;
  }
  
  .music-hero .lyrics-tags button:hover {
    border-color: rgba(217, 77, 255, 0.3);
    background: rgba(217, 77, 255, 0.2);
    color: #d94dff;
  }
  
  .music-hero .custom-lyrics-field textarea {
    display: block;
    width: 100%;
    min-height: 168px;
    padding: 16px;
    resize: vertical;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.62;
    transition: border-color 300ms ease;
  }
  
  .music-hero .custom-lyrics-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  
  .music-hero .custom-lyrics-field textarea:focus {
    border-color: #d94dff;
  }
  
  .music-hero .custom-lyrics-field .lyrics-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
  }
  
  .music-hero .lyrics-meta span:first-child {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .music-hero .lyrics-meta span:last-child {
    flex: 0 0 auto;
    font-family: Consolas, monospace;
  }
  
  .music-hero .lyrics-meta b {
    font-weight: 400;
  }
  
  .music-hero .generator-form .generate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding: 20px 24px;
    cursor: pointer;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
    box-shadow: 0 8px 30px -4px rgba(255, 94, 102, 0.45), 0 0 40px -10px rgba(171, 79, 255, 0.5);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
  }
  
  .music-hero .generate-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }
  
  .music-hero .generator-form .generate-button:hover {
    background: linear-gradient(135deg, #ffa024 0%, #f8454d 50%, #c733ff 100%);
    box-shadow: 0 12px 35px -2px rgba(255, 94, 102, 0.6), 0 0 40px -10px rgba(171, 79, 255, 0.5);
    transform: scale(1.02);
  }
  
  .music-hero .generator-form .generate-button:active {
    transform: scale(0.95);
  }
  
  /* Sample showcase */
  .music-samples {
    padding: 96px 0;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .music-samples .samples-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-samples .samples-container .section-heading {
    margin-bottom: 64px;
    text-align: center;
  }
  
  .music-samples .section-heading h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
  }
  
  .music-samples .section-heading p {
    max-width: 672px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    line-height: 1.6;
  }
  
  .music-samples .samples-container .samples-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .music-samples .samples-grid .sample-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    gap: 32px;
    padding: 24px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(24px);
    transition: opacity 500ms ease, transform 500ms ease, background-color 300ms ease;
  }
  
  .music-samples .samples-grid .sample-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .music-samples .samples-grid .sample-card.sample-card-two {
    transition-delay: 100ms;
  }
  
  .music-samples .samples-grid .sample-card.sample-card-three {
    transition-delay: 200ms;
  }
  
  .music-samples .samples-grid .sample-card.sample-card-four {
    transition-delay: 300ms;
  }
  
  .music-samples .samples-grid .sample-card:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .music-samples .sample-card .vinyl-wrap {
    position: relative;
    z-index: 0;
    flex: 0 0 auto;
  }
  
  .music-samples .vinyl-wrap .vinyl-record {
    position: relative;
    width: 128px;
    height: 128px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #111111;
    background-image: repeating-radial-gradient(circle, transparent 0, transparent 2px, rgba(255, 255, 255, 0.2) 3px, transparent 4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  }
  
  .music-samples .vinyl-record .vinyl-center {
    position: absolute;
    top: 30%;
    left: 30%;
    z-index: 2;
    width: 40%;
    height: 40%;
    overflow: hidden;
    border: 4px solid #111111;
    border-radius: 50%;
  }
  
  .music-samples .vinyl-center > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2000ms ease;
  }
  
  .music-samples .vinyl-center:hover > img {
    transform: rotate(360deg);
  }
  
  .music-samples .vinyl-center .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background-color 300ms ease;
  }
  
  .music-samples .vinyl-center:hover .play-overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .music-samples .play-overlay .play-icon {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #ffffff;
  }
  
  .music-samples .vinyl-wrap .record-glow {
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 300ms ease;
  }
  
  .music-samples .vinyl-wrap .record-glow-pink {
    background: linear-gradient(135deg, #ff5e66, #d94dff);
  }
  
  .music-samples .vinyl-wrap .record-glow-purple {
    background: linear-gradient(135deg, #d94dff, #8c47ff);
  }
  
  .music-samples .vinyl-wrap .record-glow-blue {
    background: linear-gradient(135deg, #d94dff, #10b981);
  }
  
  .music-samples .vinyl-wrap .record-glow-green {
    background: linear-gradient(135deg, #10b981, #ff5e66);
  }
  
  .music-samples .sample-card:hover .record-glow {
    opacity: 0.2;
  }
  
  .music-samples .sample-card .sample-info {
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .music-samples .sample-info h3 {
    margin: 0 0 16px;
    overflow: hidden;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 300ms ease;
  }
  
  .music-samples .sample-card:hover .sample-info h3 {
    color: #d94dff;
  }
  
  .music-samples .sample-info .sample-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .music-samples .sample-tags > span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
    padding: 6px 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 300ms ease;
  }
  
  .music-samples .sample-tags > span:hover {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .music-samples .sample-tags .duration-tag {
    color: rgba(255, 255, 255, 0.6);
    font-family: Consolas, monospace;
  }
  
  .music-samples .duration-tag .mini-play {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255, 255, 255, 0.6);
  }
  
  /* Feature advantages */
  .music-features {
    padding: 96px 0;
    background: #0b0816;
  }
  
  .music-features .features-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-features .features-container .section-heading {
    margin-bottom: 64px;
    text-align: center;
  }
  
  .music-features .section-heading h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
  }
  
  .music-features .section-heading p {
    max-width: 672px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
  }
  
  .music-features .features-container .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
  }
  
  .music-features .features-list .feature-item {
    width: 100%;
    text-align: center;
  }
  
  .music-features .feature-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.02);
    transition: background 500ms ease;
  }
  
  .music-features .feature-icon img {
    width: 40px;
    height: 40px;
    transition: filter 500ms ease;
  }
  
  .music-features .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
  }
  
  .music-features .feature-item:hover .feature-icon img {
    filter: brightness(0) invert(1);
  }
  
  .music-features .feature-item h3 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .music-features .feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.62;
  }
  
  /* Workflow */
  .music-workflow {
    padding: 96px 0;
    background: rgba(255, 255, 255, 0.01);
  }
  
  .music-workflow .workflow-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }
  
  .music-workflow .workflow-container > h2 {
    margin: 0 0 64px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
  }
  
  .music-workflow .workflow-container .workflow-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
  }
  
  .music-workflow .workflow-list .workflow-line {
    display: none;
  }
  
  .music-workflow .workflow-list .workflow-item {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  
  .music-workflow .workflow-item .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: #0b0816;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    font-size: 24px;
    font-weight: 800;
    transition: border-color 300ms ease;
  }
  
  .music-workflow .step-number b {
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
    background-clip: text;
    color: transparent;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .music-workflow .workflow-item:hover .step-number {
    border-color: #d94dff;
  }
  
  .music-workflow .workflow-item h3 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  
  .music-workflow .workflow-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.62;
  }
  
  /* Use cases */
  .music-use-cases {
    padding: 96px 0;
    background: #0b0816;
  }
  
  .music-use-cases .use-cases-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-use-cases .use-cases-container .section-heading {
    margin-bottom: 64px;
    text-align: center;
  }
  
  .music-use-cases .section-heading h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
  }
  
  .music-use-cases .section-heading p {
    max-width: 672px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
  }
  
  .music-use-cases .use-cases-container .use-cases-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .music-use-cases .use-cases-list .use-case-card {
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    backdrop-filter: blur(24px);
    transition: background-color 300ms ease;
  }
  
  .music-use-cases .use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .music-use-cases .use-case-card .use-case-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 5;
  }
  
  .music-use-cases .use-case-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0b0816 0%, transparent 60%, transparent 100%);
    opacity: 0.8;
    content: "";
  }
  
  .music-use-cases .use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 700ms ease, opacity 700ms ease;
  }
  
  .music-use-cases .use-case-card:hover .use-case-image img {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .music-use-cases .use-case-card h3 {
    position: relative;
    z-index: 1;
    margin: -48px 0 0;
    padding: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: color 300ms ease;
  }
  
  .music-use-cases .use-case-card:hover h3 {
    color: #d94dff;
  }
  
  /* Commercial rights */
  .music-commercial {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(255, 181, 71, 0.05) 0%, rgba(255, 94, 102, 0.05) 50%, rgba(217, 77, 255, 0.05) 100%);
  }
  
  .music-commercial .commercial-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-commercial .commercial-container .commercial-card {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(217, 77, 255, 0.2);
    border-radius: 64px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px);
  }
  
  .music-commercial .commercial-card .commercial-glow {
    position: absolute;
    top: -128px;
    right: -128px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: rgba(217, 77, 255, 0.1);
    filter: blur(80px);
  }
  
  .music-commercial .commercial-card .commercial-content {
    position: relative;
    z-index: 1;
  }
  
  .music-commercial .commercial-content .commercial-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 32px;
    color: #FFB547;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
  }
  
  .music-commercial .commercial-label img {
    width: 24px;
    height: 24px;
  }
  
  .music-commercial .commercial-content h2 {
    margin: 0 0 40px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
  }
  
  .music-commercial .commercial-content .commercial-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.62;
  }
  
  .music-commercial .commercial-copy > p {
    margin: 0;
  }
  
  .music-commercial .commercial-copy .commercial-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
  }
  
  .music-commercial .commercial-benefits .commercial-benefit {
    display: flex;
    width: 100%;
    gap: 16px;
  }
  
  .music-commercial .commercial-benefit > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
  }
  
  .music-commercial .commercial-benefit > span img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(72%) saturate(611%) hue-rotate(106deg) brightness(87%) contrast(91%);
  }
  
  .music-commercial .commercial-benefit h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  
  .music-commercial .commercial-benefit p {
    margin: 0;
    font-size: 14px;
  }
  
  .music-commercial .commercial-copy .commercial-note {
    margin-top: 40px;
    font-size: 14px;
    font-style: italic;
  }
  
  /* FAQ */
  .music-faq {
    padding: 96px 0;
    background: #0b0816;
  }
  
  .music-faq .faq-container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .music-faq .faq-container > h2 {
    margin: 0 0 48px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.3px;
    text-align: center;
  }
  
  .music-faq .faq-container .faq-list {
    margin-top: 48px;
  }
  
  .music-faq .faq-list .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .music-faq .faq-list .faq-item:last-child {
    border-bottom: 0;
  }
  
  .music-faq .faq-item .faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    transition: color 300ms ease;
  }
  
  .music-faq .faq-item .faq-trigger:hover {
    color: #d94dff;
  }
  
  .music-faq .faq-trigger h3 {
    margin: 0;
    color: inherit;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
  }
  
  .music-faq .faq-item .faq-chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin: -5px 4px 0 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 300ms ease;
  }
  
  .music-faq .faq-item.is-open .faq-chevron {
    margin-top: 5px;
    transform: rotate(225deg);
  }
  
  .music-faq .faq-item .faq-answer {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease, visibility 300ms ease;
  }
  
  .music-faq .faq-item.is-open .faq-answer {
    visibility: visible;
    max-height: 240px;
    opacity: 1;
  }
  
  .music-faq .faq-answer p {
    margin: 0;
    padding: 0 0 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.62;
  }
  
  /* Final CTA */
  .music-cta {
    padding: 96px 24px;
    background: #0b0816;
  }
  
  .music-cta .cta-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px;
    overflow: hidden;
    border-radius: 56px;
    background: linear-gradient(135deg, #ffb547 0%, #ff5e66 50%, #d94dff 100%);
    box-shadow: 0 0 100px -20px rgba(171, 79, 255, 0.5);
    color: #ffffff;
    text-align: center;
  }
  
  .music-cta .cta-container .cta-glow {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(120px);
  }
  
  .music-cta .cta-container .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .music-cta .cta-content h2 {
    margin: 0 0 40px;
    color: #ffffff;
    font-family: "Music Space Grotesk", Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
  }
  
  .music-cta .cta-content > p {
    max-width: 672px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 1.62;
  }
  
  .music-cta .cta-content .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
  }
  
  .music-cta .cta-actions button {
    padding: 20px 48px;
    cursor: pointer;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    transition: transform 300ms ease, background-color 300ms ease;
  }
  
  .music-cta .cta-actions .cta-primary {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #0b0816;
    font-weight: 800;
  }
  
  .music-cta .cta-actions .cta-primary:hover {
    transform: scale(1.05);
  }
  
  .music-cta .cta-actions .cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
  }
  
  .music-cta .cta-actions .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  @media (min-width: 640px) {
    .music-use-cases .use-cases-list .use-case-card {
      width: calc(50% - 12px);
    }
  
    .music-cta .cta-content .cta-actions {
      flex-direction: row;
    }
  }
  
  @media (min-width: 768px) {
    .music-hero .hero-heading h1 {
      font-size: 48px;
      letter-spacing: -2.2px;
    }
  
    .music-hero .hero-container .generator-card {
      padding: 48px;
    }
  
    .music-samples .section-heading h2 {
      font-size: 48px;
    }
  
    .music-samples .vinyl-wrap .vinyl-record {
      width: 160px;
      height: 160px;
    }
  
    .music-samples .sample-info h3 {
      font-size: 24px;
    }
  
    .music-features .section-heading h2 {
      font-size: 48px;
    }
  
    .music-features .features-list .feature-item {
      width: calc(50% - 24px);
    }
  
    .music-workflow .workflow-container > h2 {
      font-size: 48px;
    }
  
    .music-workflow .workflow-container .workflow-list {
      gap: 64px;
    }
  
    .music-workflow .workflow-list .workflow-line {
      position: absolute;
      top: 48px;
      left: 0;
      z-index: 0;
      display: block;
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.05);
    }
  
    .music-workflow .workflow-list .workflow-item {
      width: calc(33.333% - 43px);
    }
  
    .music-use-cases .section-heading h2 {
      font-size: 48px;
    }
  
    .music-commercial .commercial-container .commercial-card {
      padding: 64px;
    }
  
    .music-commercial .commercial-content h2 {
      font-size: 48px;
    }
  
    .music-commercial .commercial-benefits .commercial-benefit {
      width: calc(50% - 16px);
    }
  
    .music-faq .faq-container > h2 {
      font-size: 48px;
    }
  
    .music-cta .cta-container {
      padding: 80px;
    }
  
    .music-cta .cta-content h2 {
      font-size: 72px;
      letter-spacing: -3px;
    }
  }
  
  @media (min-width: 1024px) {
    .music-hero .hero-heading h1 {
      font-size: 60px;
      letter-spacing: -3px;
    }
  
    .music-samples .samples-grid .sample-card {
      width: calc(50% - 16px);
    }
  
    .music-features .features-container .features-list {
      gap: 48px;
    }
  
    .music-features .features-list .feature-item {
      width: calc(25% - 36px);
    }
  
    .music-use-cases .use-cases-list .use-case-card {
      width: calc(20% - 20px);
    }
  }
  
  @media (max-width: 639px) {
    .music-hero .lyrics-settings .lyrics-toolbar {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .music-hero .lyrics-toolbar .lyrics-mode-group {
      width: 100%;
      justify-content: space-between;
      gap: 12px;
    }
  
    .music-hero .lyrics-mode-switch .lyrics-mode-button {
      padding: 8px 18px;
    }
  
    .music-hero .lyrics-toolbar .instrumental-toggle {
      align-self: flex-end;
    }
  
    .music-hero .song-title-field .own-field-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }
  
    .music-hero .custom-lyrics-field .lyrics-field-heading {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .music-hero .lyrics-field-heading .lyrics-tags {
      justify-content: flex-start;
    }
  
    .music-hero .custom-lyrics-field .lyrics-meta {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
    }
  
    .music-commercial .commercial-content .commercial-label {
      align-items: flex-start;
      font-size: 12px;
    }
  }
  
  @media (max-width: 340px) {
    .music-samples .samples-grid .sample-card {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .music-samples .sample-card .vinyl-wrap {
      align-self: center;
    }
  
    .music-samples .sample-card .sample-info {
      width: 100%;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      animation-duration: 1ms !important;
      animation-delay: 0ms !important;
      scroll-behavior: auto !important;
      transition-duration: 1ms !important;
    }
  }
  