/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    margin-right: 0.5rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #667eea;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="400" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="500" cy="500" r="300" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.company-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-slogan h3 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Character Animation */
.character {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.character-avatar {
    font-size: 8rem;
    color: #FFD700;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.social-icons-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.social-icons-circle i {
    position: absolute;
    font-size: 2rem;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-icons-circle i:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.social-icons-circle i:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.social-icons-circle i:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.social-icons-circle i:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
.social-icons-circle i:nth-child(5) { top: 25%; right: 25%; }
.social-icons-circle i:nth-child(6) { bottom: 25%; left: 25%; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Services Section */
.services {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) saturate(1.2);
    z-index: 10;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.service-card p {
    font-size: 0.9rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-card:hover h3 {
    transform: translateY(-2px);
}

.service-card:hover p {
    transform: translateY(-2px);
}

.service-card:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Platform-specific colors */
.instagram { background: linear-gradient(135deg, #E1306C, #F77737); }
.tiktok { background: linear-gradient(135deg, #000000, #333333); }
.youtube { background: linear-gradient(135deg, #FF0000, #cc0000); }
.twitter { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }
.facebook { background: linear-gradient(135deg, #1877F2, #166fe5); }
.twitch { background: linear-gradient(135deg, #9146FF, #7c3aed); }
.spotify { background: linear-gradient(135deg, #1DB954, #1ed760); }
.telegram { background: linear-gradient(135deg, #0088cc, #006bb3); }

/* Platform-specific hover glow effects */
.instagram:hover { box-shadow: 0 25px 50px rgba(225, 48, 108, 0.4); }
.tiktok:hover { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); }
.youtube:hover { box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4); }
.twitter:hover { box-shadow: 0 25px 50px rgba(29, 161, 242, 0.4); }
.facebook:hover { box-shadow: 0 25px 50px rgba(24, 119, 242, 0.4); }
.twitch:hover { box-shadow: 0 25px 50px rgba(145, 70, 255, 0.4); }
.spotify:hover { box-shadow: 0 25px 50px rgba(29, 185, 84, 0.4); }
.telegram:hover { box-shadow: 0 25px 50px rgba(0, 136, 204, 0.4); }

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services {
        padding: 110px 0 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-slogan h3 {
        font-size: 1.5rem;
    }
    
    .character {
        height: 200px;
    }
    
    .character-avatar {
        font-size: 5rem;
    }
    
    .social-icons-circle {
        width: 180px;
        height: 180px;
    }
    
    .social-icons-circle i {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services {
        padding: 100px 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-slogan h3 {
        font-size: 1.3rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav ul {
        display: none;
    }
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card:hover {
    animation: pulse 0.6s ease-in-out;
}

.hero-text,
.service-card,
.feature {
    animation: slideInUp 0.8s ease forwards;
}

/* Scroll animasyonu için */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; } 