/* Temel ayarlar ve değişkennler */
:root {
    --bg-color: #030014;
    /* Çok koyu mor/siyah */
    --text-color: #E2E8F0;
    --primary-color: #7C3AED;
    /* Mor */
    --secondary-color: #2563EB;
    /* Mavi */
    --accent-color: #F472B6;
    /* Pembe */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Yatay taşmayı engellemek için önemli */
}

/* Sadece HTML ve Body'ye overflow-x verelim */
html {
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
    /* Temel font boyutu */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Navigasyon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(3, 0, 20, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Hero bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-decoration: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #94A3BB;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* Butonlar */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Arkaplan Glow */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Özellikler Bölümü */
.features {
    padding: 5rem 5%;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-header p {
    color: #94A3B8;
}

/* Kartlar Grid Yapısı */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Kart Tasarımı */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card p {
    color: #94A3B8;
    line-height: 1.6;
}

/* Kart Hover Glow Efekti */
.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: 0.4s;
}

.card:hover .card-glow {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* JS animasyon sınıfları */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Projeler Sayfası Ekleri --- */

/* Sayfa Başlığı */
.page-header {
    padding: 8rem 2rem 4rem;
    /* Üstten boşluk bıraktık ki menü altında kalmasın */
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Aktif Link Rengi */
.nav-links a.active {
    color: var(--accent-color);
}

/* Proje Kartları İyileştirmesi */
.project-card {
    padding: 0;
    /* İç boşluğu sıfırladık, resim kenara değsin */
    display: flex;
    flex-direction: column;
}

.project-img {
    height: 200px;
    width: 100%;
    /* Gerçek resim yerine şimdilik renkli alanlar */
}

.gradient-1 {
    background: linear-gradient(45deg, #FF512F, #DD2476);
}

.gradient-2 {
    background: linear-gradient(45deg, #8E2DE2, #4A00E0);
}

.gradient-3 {
    background: linear-gradient(45deg, #11998e, #38ef7d);
}

.project-info {
    padding: 1.5rem;
}

.tag {
    font-size: 0.8rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.details-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.details-link:hover {
    color: var(--accent-color);
}

/* --- Hakkımızda Sayfası Ekleri --- */

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 5rem;
}

.story-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
}

.story-section h2 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Ekip Bölümü */
.team-title {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--glass-bg);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--glass-border);
}

.role {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- İletişim Sayfası Ekleri --- */

.contact-section {
    padding: 0 20px 5rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Sol taraf biraz daha dar, sağ geniş */
    gap: 3rem;
}

/* Sol Taraf */
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.discord-box {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05));
    border: 1px solid #5865F2;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

/* Sağ Taraf - Form */
.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #94A3B8;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        /* Mobilde alt alta */
    }
}

/* Canlı İstatiskik Stili */
.server-stat {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem;
}


/* Yükleme ekranı */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.glitch {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

@keyframes glitch {
    0% {
        text-shadow: -2px 0 #ff00c1, 2px 0 #00fff9;
    }

    25% {
        text-shadow: 2px 0 #00fff9, -2px 0 #ff00c1;
    }

    50% {
        text-shadow: -1px 0 #ff00c1, 1px 0 #00fff9;
    }

    75% {
        text-shadow: 1px 0 #00fff9, -1px 0 #ff00c1;
    }

    100% {
        text-shadow: 0 0 white;
    }
}

/* Galeri / Lightbox */
.lightbox {
    display: none;
    /* Gizli başla */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    width: 60%;
    height: 50%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
    background-size: cover;
    background-position: center;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 4rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

#lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Resimlerin tıklanabilir olduğunu göster */
.project-img {
    cursor: pointer;
    transition: 0.3s ease;
}

.project-img:hover {
    filter: brightness(1.2);
}


/* Logo Ayarları */
.logo img {
    height: 60px;
    /* Logo yüksekliği */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
    /* Neon parlaması */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    /* Üzerine gelince büyüsün */
}

/* --- Mağaza Sayfası --- */

.store-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.store-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 5rem;
}

/* Ürün Kartı */
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.product-image {
    height: 180px;
    background-color: #1a1a2e;
    /* Resim yoksa arkası boş kalmasın */
    background-size: cover;
    background-position: center;
}

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: auto;
    margin-bottom: 1rem;
}

.btn-buy {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-buy:hover::before {
    width: 300px;
    height: 300px;
}

.btn-buy:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* --- Ürün Detay Sayfası --- */

.product-detail-container {
    padding: 120px 20px 5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    width: 100%;
}

.detail-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 2rem;
}

.detail-desc {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.btn-purchase {
    background: linear-gradient(45deg, var(--primary-color), #8b5cf6);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-purchase:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
    background: linear-gradient(45deg, #7c3aed, #a78bfa);
}

.btn-purchase:active {
    transform: translateY(-2px);
}

.btn-back {
    border: 1px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .detail-image {
        height: 250px;
    }

    .detail-title {
        font-size: 2rem;
    }
}

/* --- Anasayfa Genişletmeleri --- */

/* 1. İstatistik Şeridi */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 5%;
    flex-wrap: wrap;
    gap: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94A3B8;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. Hakkımızda Özeti */
.about-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 10%;
    gap: 4rem;
    background: radial-gradient(circle at left, rgba(37, 99, 235, 0.1), transparent 50%);
    margin-bottom: 4rem;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    height: 400px;
    background: transparent;
    position: relative;
    /* Logo zaten .about-logo-img ile ortalanıp animasyon eklenmişti */
}

/* 3. Sıkça Sorulan Sorular (SSS) */
.faq-section {
    padding: 0 20px 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--glass-bg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.5rem;
    color: #94A3B8;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.arrow {
    transition: transform 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .about-preview {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 100%;
        height: 250px;
    }

    .stats-bar {
        flex-direction: column;
    }
}

/* --- Hakkımızda Logosu Ayarları --- */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-logo-img {
    width: 60%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- HİBRİT NAVİGASYON VE SIDEBAR --- */

/* Menü Butonu (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2000;
    /* Sidebar'dan bile üstte olsun */
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: 0.3s;
}

/* Sidebar (Çekmece) */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* Başlangıçta gizli (sağda) */
    width: 280px;
    height: 100vh;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    transition: 0.4s ease-in-out;
    z-index: 1500;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
    /* İçeri kaydır */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 2px;
}

.close-btn {
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-color);
    line-height: 0.5;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
    display: block;
}

.sidebar-links a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
    /* Üzerine gelince sağa kaysın */
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: #555;
    text-align: center;
}

/* Karartma Efekti (Overlay) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Yol Haritası (Roadmap) --- */
.roadmap-section {
    padding: 5rem 20px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    border-left: 2px solid var(--glass-border);
    margin-left: 20px;
    padding-left: 40px;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

/* Noktalar */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    /* Çizginin üstüne oturt */
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-color);
    border: 2px solid #555;
    border-radius: 50%;
    transition: 0.3s;
}

/* Tamamlananlar Yeşil */
.timeline-item.done::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Aktif Olan Yanıp Sönüyor */
.timeline-item.active::before {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
}

.timeline-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #94A3B8;
}

.status-badge {
    background: var(--accent-color);
    color: black;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(244, 114, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
    }
}

/* --- Studio Sayfası (About) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.about-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    transition: 0.3s;
}

.about-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.about-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Ekip Kartları İçin Güncelleme */
.team-grid {
    margin-top: 3rem;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Fiyatlandırma Bölümü --- */
.pricing-section {
    padding: 5rem 5%;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 350px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Butonu en alta itmesi için */
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features .icon {
    font-size: 1.2rem;
}

/* Popüler Kart Stili */
.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(244, 114, 182, 0.2);
    background: rgba(244, 114, 182, 0.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.08);
    /* Hover'da biraz daha büyüsün */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(244, 114, 182, 0.4);
}

.full-width {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* --- FAQ (Accordion) Bölümü --- */
.faq-section {
    padding: 0 5% 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-family: var(--font-body);
    /* Okunabilirlik için */
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    color: #94A3B8;
    line-height: 1.6;
}

/* Aktif (Açık) Durum */
.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    background: rgba(124, 58, 237, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* İçerik sığsın diye geniş pay */
    opacity: 1;
    padding-top: 1rem;
    /* Üstten biraz boşluk */
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

/* --- Özel Mouse Cursor (Sadece Nokta) --- */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    /* Neon Glow */
    transition: transform 0.1s;
}

/* Hover durumunda nokta biraz büyüsün */
body.hovering .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
}

/* Mobil cihazlarda cursor gizlensin */
@media (max-width: 768px) {
    .cursor-dot {
        display: none;
    }
}

/* --- Scroll to Top Butonu --- */
#scrollTopBtn {
    display: none;
    /* Başlangıçta gizli */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 1.5rem;
    background: var(--primary-color);
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* --- Daktilo Efekti İçin CSS --- */
.typewrite-text {
    border-right: 2px solid var(--accent-color);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {

    from,
    into {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent-color);
    }
}

/* --- Müzik Çalar --- */
.music-player {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.music-player:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-color);
}

.music-info {
    display: flex;
    flex-direction: column;
}

.music-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.music-artist {
    font-size: 0.7rem;
    color: #aaa;
}

.play-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    /* Mor */
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.play-btn:hover {
    color: var(--accent-color);
    /* Pembe */
    transform: scale(1.1);
}

/* --- Sayaç (Countdown) --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
}

/* --- PROJECT SHOWCASE STYLE --- */
.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    transition: 0.3s;
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.showcase-content h3 {
    font-size: 2rem;
    margin: 10px 0;
    color: white;
}

.showcase-content p {
    color: #94A3B8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.tech-list-small {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.tech-list-small li {
    font-size: 0.9rem;
    color: #cbd5e1;
    position: relative;
    padding-left: 15px;
}

.tech-list-small li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.showcase-visual {
    flex: 1;
    min-height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.viz-1 {
    background: linear-gradient(45deg, #10002b, #240046);
}

.viz-2 {
    background: linear-gradient(45deg, #0f172a, #1e293b);
}

.viz-3 {
    background: linear-gradient(45deg, #064e3b, #065f46);
}

.viz-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    z-index: 2;
}

.countdown-number-old {
    display: none;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.countdown-label {
    font-size: 0.9rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Animasyonlu İstatistikler --- */
/* (Stat-number sınıfı zaten var, JS ile manipüle edeceğiz) */

/* --- 5. Çerez Bildirimi (Cookie Banner) --- */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    /* Başlangıçta ekran dışında */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 90%;
    max-width: 600px;
}

.cookie-banner.show {
    bottom: 30px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        bottom: -300px;
        /* Mobilde daha aşağıdan gelsin */
    }

    .cookie-btn {
        width: 100%;
    }
}

/* --- 6. Buton Loading & Success Animasyonları --- */
.btn-loading {
    color: transparent !important;
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

.btn-success {
    background: #10B981 !important;
    /* Başarı Yeşili */
    color: white !important;
    border-color: #10B981 !important;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
    position: relative;
    padding-left: 2.5rem !important;
    /* İkon için yer */
}

/* Yeşil Tik İkonu (CSS ile) */
.btn-success::before {
    content: "✓";
    font-weight: bold;
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
}

/* --- Dil Butonu ve Full Screen Menu --- */

/* Lang Button */
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Full Screen Mobile Menu */
@media (max-width: 768px) {
    .sidebar {
        width: 100% !important;
        /* Tüm ekranı kaplasın */
        right: -100%;
        /* Gizli konum */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(3, 0, 20, 0.98);
        /* Neredeyse opak */
        backdrop-filter: blur(20px);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .sidebar.active {
        right: 0;
        /* Açık konum */
    }

    .sidebar-links li {
        margin: 1.5rem 0;
        text-align: center;
        opacity: 0;
        /* Animasyon için gizli başla */
        transform: translateY(20px);
        transition: 0.5s ease;
    }

    .sidebar.active .sidebar-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Linklerin sırayla gelmesi için delay */
    .sidebar.active .sidebar-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .sidebar.active .sidebar-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .sidebar.active .sidebar-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .sidebar.active .sidebar-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .sidebar.active .sidebar-links li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .sidebar.active .sidebar-links li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .sidebar-links a {
        font-size: 1.5rem;
        /* Linkler büyüdü */
        font-weight: 700;
    }

    .sidebar-header {
        position: absolute;
        top: 20px;
        width: 90%;
        display: flex;
        justify-content: space-between;
    }

    .close-btn {
        font-size: 3rem;
        color: var(--accent-color);
    }
}


/* --- GLOBAL MOBILE FIXES (GENEL MOBİL DÜZELTMELER) --- */
@media (max-width: 768px) {

    /* 1. Genel Padding Ayarları */
    section {
        padding: 3rem 1.5rem !important;
        /* Kenarlardan boşluk */
    }

    /* 2. Başlık Boyutlarını Küçült */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    /* 3. Hero Bölümü Düzenlemesi */
    .hero-content {
        padding-top: 50px;
        /* Navbar altına girmesin */
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        /* Mobilde çok büyük olmasın */
    }

    /* 4. Kartlar ve Grid Yapıları */
    .grid-container,
    .pricing-container,
    .features-grid,
    .project-showcase {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .card,
    .pricing-card,
    .service-block,
    .showcase-item {
        width: 100%;
        margin: 0;
    }

    /* 5. Navbar Mobilde */
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none !important;
        /* JS ile açılacak */
    }

    .navbar .hamburger {
        display: none !important;
    }

    .hamburger {
        display: block;
        /* Hamburgeri göster */
    }

    /* 6. Hizmetler & Projeler Sayfa Başlığı */
    .page-header {
        padding-top: 100px !important;
        padding-bottom: 2rem;
    }

    /* 7. Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}