/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Header yüksekliği kadar boşluk */
    -webkit-text-size-adjust: 100%; /* iOS'ta text zoom engelle */
    -webkit-tap-highlight-color: transparent; /* Touch highlight kaldır */
    touch-action: manipulation; /* Touch optimizasyonu */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 23, 235, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #5e17eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8627a3, #5e17eb);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(134, 39, 163, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(94, 23, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #8627a3, #5e17eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8627a3, #5e17eb);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(134, 39, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(134, 39, 163, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8627a3;
}

.btn-secondary:hover {
    background: #8627a3;
    transform: translateY(-2px);
}

/* Floating Cards Animation */
.floating-cards {
    position: relative;
    height: 400px;
}

.card {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: rgba(94, 23, 235, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 30%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sections */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 23, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #5e17eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #8b5cf6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000000, #8627a3);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(94, 23, 235, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: #5e17eb;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(94, 23, 235, 0.2);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: #cccccc;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5e17eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(94, 23, 235, 0.2);
    color: #cccccc;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */

/* Tablet ve küçük masaüstü (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .kronika-features {
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .screenshot-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem;
    }
    
    .screenshot {
        max-width: 90px;
        padding: 0.3rem;
    }
    
    .screenshot-img {
        height: 50px !important;
    }
    
    .screenshot p {
        font-size: 0.55rem;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 768px) {
    /* Header ve Navigation */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(94, 23, 235, 0.3);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile menu overlay */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    /* Hero Section */
    .hero {
        min-height: calc(100vh - 70px);
        padding: 2rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        display: flex;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Grid Layouts */
    .services-grid,
    .projects-grid,
    .team-grid,
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Content Sections */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .kronika-info {
        text-align: center;
    }
    
    .kronika-info h3 {
        text-align: center;
    }
    
    .kronika-features {
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .screenshot-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem;
        justify-items: center;
    }
    
    .screenshot {
        max-width: 100px;
        padding: 0.3rem;
    }
    
    .screenshot-img {
        height: 60px !important;
    }
    
    .screenshot p {
        font-size: 0.6rem;
        margin-top: 0.3rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Floating Cards */
    .floating-cards {
        height: 300px;
    }
    
    .card {
        width: 80px;
        height: 80px;
    }
    
    /* Visual Elements */
    .game-dev-visual,
    .solutions-visual {
        height: 250px;
    }
    
    .code-block,
    .code-window {
        width: 150px;
        height: 100px;
    }
    
    .game-asset,
    .data-flow {
        width: 80px;
        height: 80px;
    }
    
    /* Screenshots */
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .screenshot-img {
        height: 80px !important;
    }
    
    .screenshot {
        padding: 0.5rem;
    }
    
    .screenshot p {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    /* Social Media */
    .social-media-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-media-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .header .container {
        padding: 0.8rem 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Kronika mobile layout düzeltmeleri */
    .kronika-info h3 {
        font-size: 1.5rem;
    }
    
    .screenshot-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.3rem;
    }
    
    .screenshot {
        max-width: 80px;
        padding: 0.2rem;
    }
    
    .screenshot-img {
        height: 45px !important;
    }
    
    .screenshot p {
        font-size: 0.5rem;
        margin-top: 0.2rem;
    }
    
    .kronika-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Navigation */
    .nav {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    /* Cards and Content */
    .service-card,
    .project-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    /* Tech Stack */
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    /* Screenshots */
    .screenshot-grid {
        grid-template-columns: 1fr;
        max-width: none;
        justify-items: center;
    }
    
    .screenshot {
        max-width: 300px;
        width: 100%;
    }
    
    .screenshot-img {
        height: 120px !important;
        width: 100% !important;
    }
    
    /* Floating Elements */
    .floating-cards {
        height: 200px;
    }
    
    .card {
        width: 60px;
        height: 60px;
    }
    
    /* Visual Elements */
    .game-dev-visual,
    .solutions-visual {
        height: 200px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-text {
        font-size: 0.9rem;
    }
    
    /* Social Media */
    .social-media-icons {
        grid-template-columns: 1fr;
    }
    
    .influencer-photo {
        width: 100px;
        height: 100px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .project-card,
    .team-member {
        padding: 1rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
}

/* Landscape orientation için özel kurallar */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .floating-cards {
        height: 150px;
    }
}

/* Scroll Animations */
/* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8627a3, #5e17eb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5e17eb, #8627a3);
}

/* Page Specific Styles */

/* Studio Page Styles */
.studio-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.game-dev-visual {
    position: relative;
    height: 400px;
}

.code-block {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 150px;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 10px;
    animation: codeGlow 3s ease-in-out infinite;
}

.game-asset {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 120px;
    height: 120px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: assetFloat 4s ease-in-out infinite;
}

.progress-bar {
    position: absolute;
    bottom: 30%;
    left: 50%;
    width: 180px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #8627a3, #5e17eb);
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(94, 23, 235, 0.3); }
    50% { box-shadow: 0 0 20px rgba(94, 23, 235, 0.6); }
}

@keyframes assetFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.about-studio {
    background: #000000;
}

.studio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(94, 23, 235, 0.2);
    transform: translateY(-2px);
}

.projects {
    background: #000000;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.2);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(134, 39, 163, 0.1), rgba(94, 23, 235, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    opacity: 0.7;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(94, 23, 235, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-progress {
    margin-bottom: 1.5rem;
}

.progress-label {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8627a3, #5e17eb);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(94, 23, 235, 0.2);
    color: #5e17eb;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team {
    background: #000000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(94, 23, 235, 0.2);
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-member p {
    color: #5e17eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill {
    background: rgba(94, 23, 235, 0.1);
    color: #5e17eb;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Solutions Page Styles */
.solutions-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.solutions-visual {
    position: relative;
    height: 400px;
}

.code-window {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 250px;
    height: 180px;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 10px;
    animation: codeWindow 4s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    top: 40%;
    right: 20%;
    width: 150px;
    height: 100px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    animation: dataFlow 3s ease-in-out infinite;
}

.analytics-dashboard {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 200px;
    height: 120px;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 10px;
    animation: dashboardPulse 2s ease-in-out infinite;
}

@keyframes codeWindow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes dashboardPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(94, 23, 235, 0.3); }
    50% { box-shadow: 0 0 20px rgba(94, 23, 235, 0.6); }
}

.kronika-section {
    background: #000000;
}

/* Kronika content - desktop only */
@media (min-width: 1025px) {
    .kronika-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "info screenshots"
            "features screenshots";
        gap: 2rem 4rem;
        align-items: start;
    }
}

/* Kronika content - default mobile-first */
.kronika-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
        "info"
        "screenshots"
        "features";
    gap: 2rem;
    text-align: center;
}

.kronika-info {
    grid-area: info;
}

.kronika-features {
    grid-area: features;
}

.kronika-screenshots {
    grid-area: screenshots;
}



.kronika-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}



.kronika-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.kronika-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(94, 23, 235, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(94, 23, 235, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #5e17eb;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Screenshot Grid - 2 SÜTUN SABİT */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 600px;
}

.screenshot {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(94, 23, 235, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(134, 39, 163, 0.4);
    border-color: rgba(134, 39, 163, 0.6);
}

.screenshot-img {
    width: 100% !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(94, 23, 235, 0.3);
    transition: all 0.3s ease;
    display: block !important;
}

.screenshot-img:hover {
    border-color: rgba(134, 39, 163, 0.8);
    transform: scale(1.02);
}

.screenshot p {
    color: #ffffff;
    font-weight: 500;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        justify-items: center;
        align-items: start;
    }
    
    .screenshot {
        padding: 0.5rem;
        width: 100%;
        max-width: 150px;
    }
    
    .screenshot-img {
        height: 80px !important;
        width: 100% !important;
        object-fit: cover;
    }
    
    .screenshot p {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        text-align: center;
    }
}

/* Coming Soon Section */
.coming-soon {
    background: #000000;
    padding: 100px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-subtitle {
    font-size: 1rem;
    color: #8627a3;
    font-style: italic;
    margin-bottom: 3rem;
    font-weight: 500;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coming-soon-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(134, 39, 163, 0.2);
    transition: all 0.3s ease;
}

.coming-soon-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(134, 39, 163, 0.3);
    border-color: rgba(134, 39, 163, 0.5);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.coming-soon-features .feature-item span:last-child {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coming-soon-features .feature-item {
        padding: 1rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.gallery-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    color: #8627a3;
    transform: scale(1.1);
}

.gallery-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.gallery-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-btn {
    background: rgba(134, 39, 163, 0.8);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(134, 39, 163, 1);
    transform: scale(1.1);
}

.gallery-info {
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
}

.gallery-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.gallery-info p {
    color: #cccccc;
    font-size: 1rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-img {
        max-height: 70vh;
    }
    
    .gallery-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .gallery-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

.solutions-section {
    background: #000000;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.2);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(94, 23, 235, 0.2);
    color: #5e17eb;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tech-stack-section {
    background: #000000;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.tech-category h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-item {
    background: rgba(94, 23, 235, 0.1);
    color: #5e17eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(94, 23, 235, 0.2);
    transform: translateY(-2px);
}

.process-section {
    background: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 23, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(94, 23, 235, 0.2);
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5e17eb;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Network Page Styles */
.network-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.network-visual {
    position: relative;
    height: 400px;
}

.social-media-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: socialPulse 3s ease-in-out infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.5s; }
.social-icon:nth-child(3) { animation-delay: 1s; }
.social-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes socialPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.about-network {
    background: #000000;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.media-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.channel {
    background: rgba(94, 23, 235, 0.1);
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.channel:hover {
    background: rgba(94, 23, 235, 0.2);
    transform: translateY(-2px);
}

.network-services {
    background: #000000;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5e17eb;
    font-weight: bold;
}

.network-projects {
    background: #000000;
}

.network-team {
    background: #000000;
}

 

/* Influencer Photo Styles */
.influencer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(134, 39, 163, 0.3);
    transition: all 0.3s ease;
}

.influencer-photo:hover {
    border-color: rgba(134, 39, 163, 0.8);
    transform: scale(1.05);
}

/* Social Media Buttons */
.social-media-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.tiktok {
    background: #000000;
    color: white;
    border: 1px solid #ffffff;
}

.social-btn.youtube {
    background: #ff0000;
    color: white;
}

.social-btn.twitch {
    background: #9146ff;
    color: white;
}

.social-btn.kick {
    background: #53fc18;
    color: #000000;
    font-weight: 600;
}

/* Font Awesome Icons */
.fab, .fas {
    font-size: 1rem;
}

/* Responsive adjustments for social buttons */
@media (max-width: 768px) {
    .social-media-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}