body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1c24;
    scroll-behavior: smooth;
}

.main-content {
    padding-bottom: 80px; /* Alt navigasyon barı için yer açar */
}

@media (min-width: 1024px) {
    .main-content {
        padding-bottom: 0; /* Desktop'ta alt navigasyon barı olmadığı için normal padding */
    }
}

/* Scrollbar styling */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Social Media Icons */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    box-shadow: 0 8px 25px rgba(227, 48, 108, 0.3);
}

.social-icon.twitter:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    color: white;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.social-icon.facebook:hover {
    background: linear-gradient(45deg, #4267b2, #365899);
    color: white;
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.3);
}

.social-icon.tiktok:hover {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Banner ve profil fotoğrafı düzenlemeleri */
.broadcaster-banner {
    height: 250px;
    background: linear-gradient(135deg, #4c1d95 0%, #7e22ce 25%, #9333ea 50%, #a855f7 75%, #c084fc 100%);
    position: relative;
    overflow: hidden;
}

.broadcaster-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(1px);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    padding-bottom: 24px;
}

.profile-header {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.avatar-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #1a1c24;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px rgba(147, 51, 234, 0.3),
        0 20px 40px rgba(0,0,0,0.4),
        0 0 60px rgba(147, 51, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    position: relative;
    background: linear-gradient(135deg, #9333ea, #a855f7);
}

.avatar-inner:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 0 0 6px rgba(147, 51, 234, 0.4),
        0 30px 60px rgba(0,0,0,0.5),
        0 0 100px rgba(147, 51, 234, 0.3);
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.profile-content {
    padding-top: 80px;
}

/* Modern Card Styling */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.8), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 80px rgba(147, 51, 234, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(147, 51, 234, 0.4);
    backdrop-filter: blur(30px);
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #a855f7, #6366f1, #3b82f6);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover::after {
    width: 100%;
    background: linear-gradient(135deg, #a855f7, #6366f1, #3b82f6, #10b981);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Enhanced Animations */
.active-badge {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #a855f7, #6366f1, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #e879f9, #8b5cf6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-text:hover::before {
    opacity: 1;
}

/* Enhanced Glass Effect */
.glass-effect {
    background: rgba(40, 44, 56, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Advanced Responsive Design */
@media (max-width: 475px) {
    .broadcaster-banner {
        height: 200px;
    }
    
    .avatar-inner {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .profile-content {
        padding-top: 60px;
    }
    
    .banner-content {
        padding-bottom: 16px;
    }
}

@media (min-width: 476px) and (max-width: 640px) {
    .broadcaster-banner {
        height: 220px;
    }
    
    .avatar-inner {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .profile-content {
        padding-top: 70px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .broadcaster-banner {
        height: 240px;
    }
    
    .avatar-inner {
        width: 130px;
        height: 130px;
        border-width: 4px;
    }
    
    .profile-content {
        padding-top: 75px;
    }
}

@media (min-width: 1024px) {
    .broadcaster-banner {
        height: 280px;
    }
    
    .avatar-inner {
        width: 160px;
        height: 160px;
        border-width: 5px;
    }
    
    .profile-content {
        padding-top: 90px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 400px 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Enhanced hover effects for statistics cards */
.stats-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Floating animation for avatar */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-10px);
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition-property: transform, opacity, background-color, border-color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
} 