T.ME/BIBIL_0DAY
CasperSecurity


Server : Apache/2
System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
User : gositeme ( 1004)
PHP Version : 8.2.29
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Directory :  /home/gositeme/domains/soundstudiopro.com/public_html/assets/css/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/gositeme/domains/soundstudiopro.com/public_html/assets/css/artist-profile.css
/**
 * ARTIST PROFILE CSS
 * Extracted from artist_profile.php to improve performance
 */

/* Artist Profile Container */
.artist-profile {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    color: white;
}

/* Artist Header Section */
.artist-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.artist-avatar {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.artist-avatar:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
    transform: scale(1.02);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.default-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    font-weight: 700;
    color: white;
    border-radius: 50%;
}

.avatar-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-avatar:hover .avatar-upload-overlay {
    opacity: 1;
}

.upload-label {
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.upload-label i {
    display: block;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

/* Artist Name */
.artist-name {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Artist Info */
.artist-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.artist-info-left {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.artist-info-right {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

/* Location */
.artist-location {
    font-size: 1.6rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Genres */
.artist-genres {
    margin-bottom: 2rem;
}

.genre-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    margin: 0.2rem;
    font-weight: 600;
}

/* Music Style */
.artist-style {
    margin-bottom: 2rem;
}

.style-text {
    font-size: 1.4rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Bio */
.artist-bio {
    margin-bottom: 2rem;
}

.artist-bio p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Edit Fields */
.edit-field {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 8px;
    padding: 1rem;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.edit-field:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

/* Action Buttons */
.artist-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary, .btn-success, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Tracks Section */
.artist-tracks {
    margin-top: 4rem;
}

.tracks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tracks-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.track-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.track-duration {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 1rem;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
}

.preview-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn.play-track-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.preview-btn.play-track-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-profile {
        padding: 1rem;
    }
    
    .artist-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-avatar {
        width: 12rem;
        height: 12rem;
    }
    
    .artist-name {
        font-size: 2.8rem;
    }
    
    .track-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-actions {
        flex-direction: column;
    }
}

/* Loading States */
.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Notification Badges */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
    z-index: 10;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.artist-profile {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.track-card:hover .track-title {
    color: #667eea;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
} 

CasperSecurity Mini