* {
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body.suno-body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: radial-gradient(circle at top, #0a1b3d 0%, #041126 40%, #020814 100%);
    color: #e8f1ff;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.suno-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border: 0;
    box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

a {
    color: #7fb7ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.suno-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 8, 20, 0.82);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
    min-width: 0;
}

.suno-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    user-select: none;
    flex: 0 0 auto;
    min-width: 0;
}

.suno-userblock {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}



.suno-userinfo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    white-space: nowrap;
    min-width: 0;
    font: inherit;
}



.suno-username {
    font: inherit;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1;
}





.suno-balance {
    font: inherit;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    color: #ffffff;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.suno-topup-link,
.suno-logout-btn,
.suno-auth-link,
.suno-random-btn,
.suno-submit-btn,
.suno-mode-btn,
.suno-player-btn,
.suno-external-btn {
    font: inherit;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 600;
}

.suno-topup-link,
.suno-auth-link,
.suno-logout-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 0 0 auto;
}


.suno-topup-link:hover,
.suno-auth-link:hover,
.suno-logout-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    text-decoration: none;
}

.suno-logout-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.suno-icon-btn {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.suno-btn-icon {
    font-size: 18px;
    line-height: 1;
}















.suno-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 480px;
    gap: 16px;
    padding: 16px;
    min-height: calc(100vh - 80px);
    overflow-x: hidden;
    align-items: stretch;
    min-width: 0;
}

.suno-sidebar,
.suno-panel,
.suno-result-panel,
.suno-library-panel {
    background: rgba(7, 18, 40, 0.82);
    border: 1px solid rgba(140, 180, 255, 0.15);
    border-radius: 22px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(8px);
    min-width: 0;
}




















.suno-sidebar {
    padding: 18px;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.suno-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
}
















.suno-sidebar::-webkit-scrollbar,
.suno-tracks-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.suno-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    flex: 0 0 auto;
    line-height: 1.2;
}







.suno-sidebar-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(140, 180, 255, 0.16);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
    transition: 0.2s ease;
}

.suno-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.suno-sidebar-toggle-icon {
    transition: transform 0.2s ease;
    font-size: 16px;
    line-height: 1;
}









.suno-mode-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
}

.suno-mode-btn {
    text-align: left;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: #d8e7ff;
    padding: 12px 14px;
    font-size: 14px;
    width: 100%;
    min-width: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.suno-mode-btn:hover,
.suno-mode-btn.active {
    background: rgba(63, 176, 255, 0.16);
    color: #ffffff;
    transform: translateY(-1px);
}

.suno-sidebar-divider {
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, transparent, rgba(140, 180, 255, 0.22), transparent);
    flex: 0 0 auto;
}

.suno-external-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.suno-external-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
    margin-bottom: 2px;
    line-height: 1.2;
}

.suno-external-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 14px;
    color: #dfeaff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(140, 180, 255, 0.12);
}

.suno-external-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(140, 180, 255, 0.18);
}

.suno-external-btn-lang,
.suno-external-btn-image,
.suno-external-btn-video {
    box-shadow: none;
}

.suno-external-btn-lang {
    background: rgba(63, 176, 255, 0.16);
    border: 1px solid rgba(63, 176, 255, 0.18);
}
.suno-external-btn-image {
    background: rgba(63, 176, 255, 0.16);
    border: 1px solid rgba(63, 176, 255, 0.18);
}

.suno-external-btn-video {
    background: rgba(63, 176, 255, 0.16);
    border: 1px solid rgba(63, 176, 255, 0.18);
}

.suno-center {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.suno-panel,
.suno-result-panel,
.suno-library-panel {
    padding: 18px;
    padding-bottom: 0px;
    min-width: 0;
}

.suno-panel-header,
.suno-result-header,
.suno-library-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex: 0 0 auto;
    min-width: 0;
}


.suno-panel-header h1,
.suno-result-header h2,
.suno-library-header h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    min-width: 0;
}

.suno-random-btn {
    background: rgba(63, 176, 255, 0.16);
    color: #ffffff;
    padding: 12px 18px;
    justify-content: flex-start;
}

.suno-random-btn:hover {
    transform: translateY(-1px);
    background: rgba(63, 176, 255, 0.22);
}

.suno-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.suno-field {
    min-width: 0;
    margin-top: 12px;
}

.suno-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cfe2ff;
    font-weight: 600;
}

.suno-field input,
.suno-field select,
.suno-field textarea {
    width: 100%;
    background: rgba(3, 12, 28, 0.92);
    border: 1px solid rgba(140, 180, 255, 0.22);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    transition: 0.2s ease;
    min-width: 0;
    font: inherit;
    max-width: 100%;
}

.suno-field input:focus,
.suno-field select:focus,
.suno-field textarea:focus {
    border-color: rgba(140, 180, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(140, 180, 255, 0.10);
}

.suno-field textarea {
    min-height: 150px;
    resize: vertical;
}

#id_style {
    min-height: 58px;
    resize: none;
    overflow-y: hidden;
    padding-right: 110px;
}


#id_prompt {
    min-height: 150px;
    resize: vertical;
}

.suno-switch-row,
.suno-grid-2,
.suno-grid-3 {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.suno-switch-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.suno-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.suno-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.suno-switch-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(140, 180, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    min-width: 0;
    overflow: hidden;
}

.suno-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
}

.suno-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.suno-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #2c3a5f;
    transition: 0.2s;
    border-radius: 999px;
}

.suno-slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    top: 4px;
    background: white;
    transition: 0.2s;
    border-radius: 50%;
}

.suno-switch input:checked + .suno-slider {
    background: rgba(63, 176, 255, 0.75);
}

.suno-switch input:checked + .suno-slider:before {
    transform: translateX(24px);
}

.suno-submit-wrap {
    margin-top: 20px;
}

.suno-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    color: white;
    background: rgba(63, 176, 255, 0.18);
    justify-content: flex-start;
}

.suno-submit-btn:hover {
    background: rgba(63, 176, 255, 0.24);
    transform: translateY(-1px);
}

.suno-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.suno-message {
    min-height: 24px;
    font-size: 14px;
    word-break: break-word;
}

.suno-message.error {
    color: #ff8f8f;
}

.suno-message.info {
    color: #8ef0ff;
    text-shadow: 0 0 8px rgba(63, 176, 255, 0.45);
}

.suno-message.success {
    color: #8ef0ff;
    text-shadow: 0 0 8px rgba(63, 176, 255, 0.45);
}

.suno-generation-window {
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(140, 180, 255, 0.18);
    margin-bottom: 16px;
    background: #061326 center/cover no-repeat;
    min-width: 0;
}

.suno-generation-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(63,176,255,0.16), transparent 52%),
        linear-gradient(180deg, rgba(4,12,28,0.95), rgba(5,18,38,0.98));
}

.suno-generation-placeholder-text {
    font-size: 18px;
    font-weight: 700;
    color: #cfe2ff;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(140, 180, 255, 0.14);
}

.suno-generation-default-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.suno-generation-default-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2,8,20,0.08), rgba(2,8,20,0.55)),
        radial-gradient(circle at center, rgba(63,176,255,0.12), transparent 55%);
}

.suno-generation-default-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    color: #cfe2ff;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(7, 18, 40, 0.42);
    border: 1px solid rgba(140, 180, 255, 0.14);
    backdrop-filter: blur(6px);
    text-align: center;
    max-width: calc(100% - 24px);
}

.suno-gen-loader {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: rgba(4,12,28,0.95);
}

.suno-loader-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.suno-loader-orb {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #4bc7ff;
    box-shadow:
        0 0 24px rgba(63,176,255,0.45),
        0 0 70px rgba(63,176,255,0.18);
    position: relative;
    margin-bottom: 18px;
    animation: orbPulse 1.8s ease-in-out infinite;
}

.suno-loader-wave {
    position: absolute;
    inset: 50%;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid rgba(123, 215, 255, 0.55);
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    animation: wavePulse 2.4s ease-out infinite;
    pointer-events: none;
}

.suno-loader-wave-2 {
    animation-delay: 0.6s;
}

.suno-loader-wave-3 {
    animation-delay: 1.2s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(0.96); }
    50% { transform: scale(1.04); }
}

@keyframes wavePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.25);
        opacity: 0.55;
    }
    70% {
        opacity: 0.18;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.6);
        opacity: 0;
    }
}

.suno-loader-text {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.suno-loader-subtext {
    color: #9ec7ff;
    margin-bottom: 18px;
}

.suno-progress {
    width: min(320px, 80%);
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    border: 1px solid rgba(140, 180, 255, 0.12);
}

.suno-progress-bar {
    height: 100%;
    width: 35%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2a68ff, #3fb0ff, #9cf1ff);
    animation: progressMove 1.3s ease-in-out infinite;
}

@keyframes progressMove {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

.suno-track-player {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.suno-track-player-modern {
    border: 1px solid rgba(140, 180, 255, 0.16);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.suno-player-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(42,104,255,0.35), rgba(63,176,255,0.18));
    display: none;
}

.suno-track-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.suno-track-cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,8,20,0.05), rgba(2,8,20,0.72)),
        radial-gradient(circle at center, rgba(63,176,255,0.18), transparent 55%);
    pointer-events: none;
}

.suno-player-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(7, 18, 40, 0.78);
    border: 1px solid rgba(140, 180, 255, 0.16);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.suno-player-content {
    padding: 16px;
}

.suno-player-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.suno-player-subtitle {
    color: #9ec7ff;
    margin-bottom: 14px;
    font-size: 14px;
}

.suno-main-audio {
    width: 100%;
    margin-bottom: 14px;
}

.suno-player-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.suno-player-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.suno-player-btn:hover {
    background: rgba(255,255,255,0.14);
    text-decoration: none;
}

.suno-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: calc(100vh - 0px - 16px - 18px - 18px - 24px - 16px - 16px - 56px - 0px);
}

.suno-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    min-height: 0;
}

.suno-result-panel {
    flex: 0 0 auto;
}

.suno-library-panel {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.suno-track-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(140, 180, 255, 0.12);
    min-width: 0;
}

.suno-track-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(42,104,255,0.22);
    flex: 0 0 auto;
}

.suno-track-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.suno-track-icon-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2a68ff, #3fb0ff);
    font-size: 28px;
}

.suno-track-meta {
    min-width: 0;
}

.suno-track-name {
    font-weight: 700;
    margin-bottom: 8px;
    word-break: break-word;
}

.suno-empty {
    color: #9ab7e8;
    padding: 8px 0;
}

.suno-track-audio {
    width: 100%;
}

#balance-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

#balance-warning {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #08152d;
    border: 1px solid #4d7dff;
    border-radius: 18px;
    padding: 20px 22px;
    max-width: 420px;
    width: min(420px, calc(100% - 32px));
    color: white;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
}

#balance-warning a {
    color: #4a90e2;
    text-decoration: underline;
    white-space: nowrap;
}

#balance-warning-text {
    white-space: normal;
}

.suno-counter {
    text-align: right;
    margin-top: 6px;
    color: #9cb8e7;
    font-size: 12px;
}

#id_model {
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 44px;
    padding-left: 16px;
    text-align: left;
    text-indent: 0;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    background-position: right 14px center;
}

#id_model option {
    font-size: 13px;
    line-height: 1.6;
    padding: 8px 12px;
}

@media (max-width: 1400px) {
    .suno-layout {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .suno-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 1100px) {
    .suno-layout {
        grid-template-columns: 1fr;
    }

    .suno-sidebar,
    .suno-right {
        grid-column: auto;
    }

    .suno-userblock {
        justify-content: flex-end;
        width: 100%;
    }

    .suno-topbar {
        flex-wrap: wrap;
    }

    .suno-panel-header h1,
    .suno-result-header h2,
    .suno-library-header h2 {
        font-size: 26px;
    }

    .suno-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {
    .suno-topbar {
        padding: 14px 16px;
    }

    .suno-logo {
        font-size: 24px;
    }

    .suno-layout {
        padding: 12px;
        gap: 12px;
    }

    .suno-switch-row,
    .suno-grid-2,
    .suno-grid-3 {
        grid-template-columns: 1fr;
    }

    .suno-panel,
    .suno-result-panel,
    .suno-library-panel,
    .suno-sidebar {
        padding: 14px;
        border-radius: 18px;
    }

    .suno-panel-header,
    .suno-result-header,
    .suno-library-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .suno-panel-header h1,
    .suno-result-header h2,
    .suno-library-header h2 {
        font-size: 22px;
    }

    .suno-track-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .suno-track-icon {
        width: 56px;
        height: 56px;
    }

    .suno-userinfo {
        flex-wrap: wrap;
        white-space: normal;
    }

    #id_model {
        font-size: 13px;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 40px;
        padding-left: 14px;
    }

    #id_model option {
        font-size: 12px;
        line-height: 1.5;
    }
    
    
    
    
    
    
    .suno-sidebar-toggle {
        display: flex;
    }

    .suno-sidebar {
        padding: 14px;
    }

    .suno-sidebar:not(.is-open) .suno-sidebar-content {
        display: none;
    }

    .suno-sidebar.is-open .suno-sidebar-toggle-icon {
        transform: rotate(180deg);
    }
    
    
    
    
    

}

.suno-generation-error-card {
    position: relative;
    z-index: 2;
    width: min(92%, 560px);
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(7, 18, 40, 0.72);
    border: 1px solid rgba(255, 120, 120, 0.22);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.suno-generation-error-title {
    font-size: 18px;
    font-weight: 800;
    color: #ff9a9a;
    margin-bottom: 10px;
}

.suno-generation-error-text {
    font-size: 16px;
    line-height: 1.55;
    color: #ffecec;
    white-space: normal;
    word-break: break-word;
}

.suno-generated-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suno-generated-track-item {
    width: 100%;
}

.suno-generated-track-audio {
    width: 100%;
    display: block;
}









/* ===== AUDIO PLAYER THEMING ===== */
.suno-track-audio {
    width: 100%;
    border-radius: 14px;
    background: #102341;
    border: 1px solid rgba(140, 180, 255, 0.16);
    overflow: hidden;
}

/* Chrome / Safari */
.suno-track-audio::-webkit-media-controls-panel {
    background: #102341;
    color: #ffffff;
}

.suno-track-audio::-webkit-media-controls-enclosure {
    background: #102341;
}

.suno-track-audio::-webkit-media-controls-play-button,
.suno-track-audio::-webkit-media-controls-pause-button {
    filter: brightness(0) invert(1);
}

.suno-track-audio::-webkit-media-controls-current-time-display,
.suno-track-audio::-webkit-media-controls-time-remaining-display,
.suno-track-audio::-webkit-media-controls-timeline {
    color: #ffffff;
}

/* Полоса трека (частично работает только в некоторых браузерах) */
.suno-track-audio::-webkit-media-controls-timeline {
    accent-color: #3fb0ff;
}

/* Firefox */
.suno-track-audio {
    accent-color: #3fb0ff;
}






/* ===== RESULT AUDIO PLAYER THEMING ===== */
.suno-generated-track-audio {
    width: 100%;
    border-radius: 14px;
    background: #102341;
    border: 1px solid rgba(140, 180, 255, 0.16);
    overflow: hidden;
}

/* Chrome / Safari */
.suno-generated-track-audio::-webkit-media-controls-panel {
    background: #102341;
    color: #ffffff;
}

.suno-generated-track-audio::-webkit-media-controls-enclosure {
    background: #102341;
}

.suno-generated-track-audio::-webkit-media-controls-play-button,
.suno-generated-track-audio::-webkit-media-controls-pause-button {
    filter: brightness(0) invert(1);
}

.suno-generated-track-audio::-webkit-media-controls-current-time-display,
.suno-generated-track-audio::-webkit-media-controls-time-remaining-display,
.suno-generated-track-audio::-webkit-media-controls-timeline {
    color: #ffffff;
}

/* Полоса трека (частично работает только в некоторых браузерах) */
.suno-generated-track-audio::-webkit-media-controls-timeline {
    accent-color: #3fb0ff;
}

/* Firefox */
.suno-generated-track-audio {
    accent-color: #3fb0ff;
}















.suno-help-btn {
    position: absolute;
    border: none;
    background: linear-gradient(135deg, #7c4dff, #4a90e2);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.25);
    z-index: 2;
}

#suno-help-btn {
    top: 12px;
    right: 12px;
}

#suno-lyrics-btn {
    top: 12px;
    right: 12px;
}

.suno-style-field {
    position: relative;
}

.suno-prompt-field {
    position: relative;
}

.suno-style-field label {
    padding-right: 92px;
}

.suno-prompt-field label {
    padding-right: 100px;
}

.suno-help-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.suno-help-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.suno-help-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.suno-help-modal-content {
    position: relative;
    width: min(720px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    margin: 12px auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(7, 18, 40, 0.96);
    border: 1px solid rgba(140, 180, 255, 0.15);
    border-radius: 18px;
    padding: 18px;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    font-size: 14px;
    line-height: 1.5;
}

.suno-help-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
}

.suno-help-text {
    margin: 0 0 16px;
    line-height: 1.5;
    font-size: 14px;
}

.suno-help-close-btn {
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    cursor: pointer;
}

.suno-help-field {
    margin-bottom: 16px;
}

.suno-help-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #cfe2ff;
}

.suno-help-field textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border-radius: 14px;
    border: 1px solid rgba(140, 180, 255, 0.22);
    background: rgba(3, 12, 28, 0.92);
    color: #fff;
    padding: 14px 16px;
    outline: none;
    font: inherit;
}

#suno-help-input::placeholder,
#suno-help-output::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

#suno-help-output {
    min-height: 130px;
}

.suno-help-counter {
    margin-top: 6px;
    text-align: right;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.suno-help-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.suno-help-generate-btn,
.suno-help-apply-btn {
    border: none;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}

.suno-help-generate-btn {
    background: rgba(63, 176, 255, 0.18);
}

.suno-help-generate-btn:hover {
    background: rgba(63, 176, 255, 0.24);
}

.suno-help-apply-btn {
    background: rgba(255, 255, 255, 0.08);
}

.suno-help-apply-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.suno-help-apply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.suno-help-message {
    margin-top: 8px;
    font-size: 14px;
    min-height: 20px;
    color: #8ef0ff;
    text-shadow: 0 0 8px rgba(63, 176, 255, 0.45);
}

#id_prompt {
    min-height: 150px;
    resize: vertical;
    padding-right: 110px;
}

@media (max-width: 700px) {
    #suno-help-btn {
        top: 28px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
    }

    #suno-lyrics-btn {
        top: auto;
        bottom: 210px;
        right: 10px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .suno-style-field label {
        padding-right: 84px;
    }

    .suno-prompt-field label {
        padding-right: 92px;
    }

    #id_style {
        padding-right: 100px;
    }

    #id_prompt {
        padding-right: 100px;
    }
}

@media (max-width: 700px) {
    .suno-sidebar {
        position: relative;
    }

    .suno-sidebar-content {
        transition: all 0.2s ease;
    }
}
