.lyrics-form-section {
    margin-top: 24px;
    padding: 0;
}

.lyrics-form-inner {
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.lyrics-form-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), transparent 60%);
    pointer-events: none;
}

.lyrics-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.lyrics-form-header i {
    color: #dc2626;
    font-size: 18px;
    flex-shrink: 0;
}

.lyrics-form-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f5f5f4;
    margin: 0;
    flex: 1;
}

.lyrics-form-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d6d3d1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.lyrics-form-close:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
    border-color: rgba(220, 38, 38, 0.4);
}

.lyrics-form {
    position: relative;
    z-index: 1;
}

.lyrics-form-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lyrics-form-row label {
    font-size: 13px;
    font-weight: 600;
    color: #d6d3d1;
}

.lyrics-form-row label .required {
    color: #dc2626;
}

.lyrics-form-row input[type="text"],
.lyrics-form-row input[type="email"],
.lyrics-form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f5f4;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.lyrics-form-row input::placeholder,
.lyrics-form-row textarea::placeholder {
    color: #78716c;
}

.lyrics-form-row input:focus,
.lyrics-form-row textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.lyrics-form-row textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.8;
    direction: rtl;
}

.lyrics-form-counter {
    font-size: 11px;
    color: #78716c;
    text-align: left;
    direction: ltr;
    margin-top: 2px;
}

.lyrics-form-counter.warn {
    color: #f59e0b;
}

.lyrics-form-counter.danger {
    color: #dc2626;
}

.lyrics-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lyrics-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
    transition: all 0.25s ease;
}

.lyrics-form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
}

.lyrics-form-submit:active {
    transform: translateY(0);
}

.lyrics-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.lyrics-form-submit i {
    font-size: 14px;
}

.lyrics-form-cancel {
    padding: 12px 22px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #a8a29e;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.lyrics-form-cancel:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f4;
    border-color: rgba(255, 255, 255, 0.2);
}

.lyrics-form-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    display: none;
    line-height: 1.7;
}

.lyrics-form-message.show {
    display: block;
}

.lyrics-form-message.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.lyrics-form-message.error {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #f87171;
}

.lyrics-form-message.info {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

@media (max-width: 640px) {
    .lyrics-form-inner {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .lyrics-form-header h3 {
        font-size: 14px;
    }

    .lyrics-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lyrics-form-submit,
    .lyrics-form-cancel {
        width: 100%;
    }
}


.hero-container-new > .hero-col-player-new,
.hero-container-new > .lyrics-form-section,
.hero-container-new > .lyrics-section,
.hero-container-new > .video-player-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
}
.lyrics-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px 0;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.12) 0%,
        rgba(220, 38, 38, 0.04) 100%);
    border: 1px solid rgba(220, 38, 38, 0.18);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lyrics-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 100%);
    pointer-events: none;
}

.lyrics-author:hover {
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.18) 0%,
        rgba(220, 38, 38, 0.08) 100%);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-1px);
}

.lyrics-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    flex-shrink: 0;
    box-shadow:
        0 4px 12px rgba(220, 38, 38, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.lyrics-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    direction: rtl;
    text-align: right;
}

.lyrics-author-label {
    font-size: 11px;
    color: #a8a29e;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.lyrics-author-name {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lyrics-author-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.lyrics-author-badge i {
    font-size: 11px;
}

/* موبایل */
@media (max-width: 640px) {
    .lyrics-author {
        padding: 10px 12px;
        gap: 10px;
    }

    .lyrics-author-avatar {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .lyrics-author-name {
        font-size: 14px;
    }

    .lyrics-author-badge span {
        display: none;
    }

    .lyrics-author-badge {
        padding: 5px 7px;
    }
}