.request-container {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 40px 40px;
    background: #FAFAFA;
}

.request-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    padding: 60px 50px;
    max-width: 550px;
    width: 100%;
    margin-bottom: 40px;
}

.request-header {
    text-align: center;
    margin-bottom: 50px;
}

.request-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.request-subtitle {
    font-size: 16px;
    color: #666;
}

.request-subtitle a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
}

.request-subtitle a:hover {
    color: #666;
    border-bottom-color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
}

.form-help {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.search-preview {
    margin-bottom: 30px;
}

.search-preview h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.search-result-item,
.artist-result-item,
.artist-song-item {
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover,
.artist-result-item:hover,
.artist-song-item:hover {
    border-color: #1a1a1a;
    background: #f9f9f9;
}

.search-result-item .flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-result-item img,
.artist-result-item img,
.artist-song-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.search-result-item .placeholder,
.artist-result-item .placeholder,
.artist-song-item .placeholder {
    width: 60px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.search-result-artist {
    color: #666;
    font-size: 14px;
    margin-bottom: 3px;
}

.search-result-album {
    color: #999;
    font-size: 12px;
}

.search-result-badges {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.badge-bpm {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-select {
    background: #e8f5e8;
    color: #2e7d32;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn {
    padding: 15px 25px;
    border: 2px solid;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cancel {
    background: #fff;
    color: #666;
    border-color: #e0e0e0;
}

.btn-cancel:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.btn-submit {
    background: #1DB954;
    color: #fff;
    border-color: #1DB954;
}

.btn-submit:hover {
    background: #1ed760;
    border-color: #1ed760;
}

.benefits-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    padding: 50px;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 40px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefits-subtitle {
    color: #666;
    font-size: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-btn {
    padding: 15px 30px;
    border: 2px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.auth-btn-secondary {
    background: #fff;
    color: #1a1a1a;
}

.auth-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.auth-note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .request-container {
        padding: 140px 20px 20px;
    }

    .request-card,
    .benefits-card {
        padding: 40px 30px;
    }

    .request-title,
    .benefits-title {
        font-size: 24px;
    }

    .button-group {
        flex-direction: column;
    }

    .auth-buttons {
        flex-direction: column;
    }

    .auth-btn {
        justify-content: center;
    }
}