/* Mobile Optimierungen für Creator-Links-Seite */

/* Allgemeine mobile Anpassungen */
@media (max-width: 768px) {
    .creator-profile-container {
        padding: 20px;
        margin: 10px;
        max-width: 100%;
    }
    
    .creator-header {
        flex-direction: column;
        text-align: center;
    }
    
    .creator-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .creator-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        margin: 5px 10px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-link-card {
        padding: 12px;
    }
}

/* Kleinere Mobilgeräte */
@media (max-width: 480px) {
    .creator-profile-container {
        padding: 15px;
        margin: 5px;
    }
    
    .creator-name {
        font-size: 1.5rem;
    }
    
    .creator-bio {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .social-link-card {
        padding: 10px;
    }
    
    .social-link-icon i {
        font-size: 1.2rem;
    }
    
    .social-link-text {
        font-size: 0.9rem;
    }
    
    .social-link-username {
        font-size: 0.8rem;
    }
    
    /* Style-Buttons optimieren */
    .style-switcher {
        gap: 5px;
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .style-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
        min-width: 60px;
        margin-bottom: 5px;
    }
}

/* Spezielle Anpassungen für Style 8 (Universe) */
@media (max-width: 768px) {
    .creator-profile-container.style-8 .social-orbit {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .creator-profile-container.style-8 .social-orbit {
        transform: scale(0.6);
    }
}

/* Spezielle Anpassungen für Style 9 (Podcast) */
@media (max-width: 768px) {
    .creator-profile-container.style-9 .podcast-player {
        width: 100%;
    }
    
    .creator-profile-container.style-9 .podcast-controls {
        flex-wrap: wrap;
    }
}
