/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6441a5;
    --secondary-color: #9146ff;
    --accent-color: #ff6b6b;
    --kick-color: #61CB2B;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.7);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --border-color: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --gradient: linear-gradient(135deg, #61CB2B 0%, #4a9f21 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: url('images/background.webp?v=20250111');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.5) 0%, 
        rgba(10, 10, 10, 0.6) 50%, 
        rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.gradient-layer {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 20% 50%, rgba(97, 203, 43, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(97, 203, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 2;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 1.5%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 2%);
    z-index: 3;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 0 0.5rem 0;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #61CB2B;
    box-shadow: 0 0 30px rgba(97, 203, 43, 0.5);
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ff0000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #61CB2B, #4a9f21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

/* Bio section removed - no longer needed
.bio {
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bio p {
    font-size: 1rem;
    line-height: 1.6;
}
*/

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

/* First section title (Platformlarım) has less top margin */
.social-links .section-title {
    margin-top: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Social Links */
.links-grid {
    display: grid;
    gap: 0.8rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.link-card:hover {
    border-color: #61CB2B;
    box-shadow: 0 4px 25px rgba(97, 203, 43, 0.4);
    transform: translateY(-2px);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.2rem;
}

.link-card.kick .link-icon { background: rgba(97, 203, 43, 0.2); color: #61CB2B; }
.link-card.twitter .link-icon { 
    background: rgba(0, 0, 0, 0.2); 
    color: #ffffff; 
}
.link-card.instagram .link-icon { background: rgba(225, 48, 108, 0.2); color: #E1306C; }
.link-card.twitch .link-icon { background: rgba(145, 70, 255, 0.2); color: #9146FF; }
.link-card.youtube .link-icon { background: rgba(255, 0, 0, 0.2); color: #FF0000; }
.link-card.youtube-kesit .link-icon { background: rgba(255, 0, 0, 0.2); color: #FF0000; }
.link-card.tiktok .link-icon { background: rgba(0, 0, 0, 0.2); color: #fff; }
.link-card.discord .link-icon { background: rgba(88, 101, 242, 0.2); color: #5865F2; }
.link-card.spotify .link-icon { background: rgba(30, 215, 96, 0.2); color: #1ED760; }

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.link-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 1rem;
    opacity: 0.5;
}

/* Influence Metrics */
.metrics-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Desktop: 2 cards on top row, 3 cards on bottom row */
@media (min-width: 769px) {
    .metrics-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* First row - 2 cards (Kick and Viewers) */
    .metric-card:nth-child(1) { 
        grid-column: span 3;
    }
    .metric-card:nth-child(2) { 
        grid-column: span 3;
    }
    
    /* Second row - 3 cards (Twitter, Instagram, YouTube) */
    .metric-card:nth-child(3) { 
        grid-column: span 2;
    }
    .metric-card:nth-child(4) { 
        grid-column: span 2;
    }
    .metric-card:nth-child(5) { 
        grid-column: span 2;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

.metric-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.metric-card:hover {
    border-color: #61CB2B;
    box-shadow: 0 4px 25px rgba(97, 203, 43, 0.4);
    transform: translateY(-2px);
}

.metric-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Platform Specific Colors for Metrics */
.metric-card[data-platform="kick"] .metric-icon { color: #61CB2B; }
.metric-card[data-platform="twitter"] .metric-icon { color: #ffffff; }
.metric-card[data-platform="instagram"] .metric-icon { color: #E1306C; }
.metric-card[data-platform="youtube"] .metric-icon { color: #FF0000; }
.metric-card[data-platform="viewers"] .metric-icon { color: #00ff00; }

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.counter {
    background: linear-gradient(135deg, #61CB2B, #4a9f21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suffix {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Progress bars removed - cleaner design
.metric-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease;
}
*/

/* Brand Partnerships - New Design */
.sponsors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Desktop layout: proper 2 top, 3 bottom */
@media (min-width: 769px) {
    .sponsors-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    /* Top row: 2 featured sponsors, each takes 3 columns */
    .sponsor-card.featured:nth-child(1) {
        grid-column: 1 / 4;
    }
    
    .sponsor-card.featured:nth-child(2) {
        grid-column: 4 / 7;
    }
    
    /* Bottom row: 3 regular sponsors, each takes 2 columns */
    .sponsor-card:not(.featured):nth-child(3) {
        grid-column: 1 / 3;
    }
    
    .sponsor-card:not(.featured):nth-child(4) {
        grid-column: 3 / 5;
    }
    
    .sponsor-card:not(.featured):nth-child(5) {
        grid-column: 5 / 7;
    }
    
    .sponsor-card.featured {
        flex-direction: row;
    }
    
    .sponsor-card:not(.featured) {
        flex-direction: column;
        text-align: center;
    }
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.sponsor-card:hover {
    border-color: #61CB2B;
    box-shadow: 0 6px 30px rgba(97, 203, 43, 0.4);
    transform: translateY(-2px);
}

.sponsor-card.featured {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(97, 203, 43, 0.05) 0%, var(--card-bg) 100%);
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%);
    border-radius: 50%;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(97, 203, 43, 0.4);
}

.sponsor-card.featured .sponsor-logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border: 3px solid rgba(97, 203, 43, 0.6);
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        brightness(1.1)
        contrast(1.2)
        drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}

.sponsor-info {
    flex: 1;
}

.sponsor-card.featured .sponsor-info {
    text-align: left;
}

.sponsor-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.sponsor-card.featured .sponsor-info h3 {
    font-size: 1.6rem;
}

.sponsor-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.sponsor-card.featured .sponsor-info p {
    font-size: 1rem;
}

.sponsor-info .highlight {
    color: #61CB2B;
    font-weight: 600;
}

.sponsor-info .highlight-orange {
    color: #ff6b6b;
    font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sponsor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .sponsor-info {
        text-align: center;
    }
    
    .sponsor-card.featured .sponsor-info {
        text-align: center;
    }
    
    .sponsor-logo {
        width: 90px;
        height: 90px;
        min-width: 90px;
    }
    
    .sponsor-card.featured .sponsor-logo {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }
}

/* Contact Section */
.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #61CB2B, #4a9f21);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

}

@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .contact-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
}

/* Loading Animation - Disabled for performance */
.loading {
    background: var(--card-bg);
}

/* WebP Support Styles */
.webp .animated-bg {
    background-image: url('images/background.webp?v=20250111');
}

.no-webp .animated-bg {
    background-image: url('images/background.jpg?v=20250111');
}

/* Fallback if no background image exists */
.animated-bg {
    background-color: var(--dark-bg);
}
