/* ===== ZEINTH STUDIOS - ANA STİL KILAVUZU ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at 20% 20%, #0a0f1e, #0c0f1a);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #5865F2, #9B59B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ===== NAVBAR (TÜM SAYFALARDA AYNI) ===== */
.navbar {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #5865F2, #9B59B6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    font-size: 16px;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #5865F2;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #5865F2;
    border-radius: 2px;
}

.nav-btn {
    padding: 8px 20px;
    background: rgba(88,101,242,0.1);
    border: 1px solid #5865F2;
    border-radius: 50px;
    color: #5865F2 !important;
    font-weight: 600 !important;
}

.nav-btn:hover {
    background: #5865F2;
    color: white !important;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #5865F2, #9B59B6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(88,101,242,0.3);
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88,101,242,0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: #5865F2;
    background: rgba(88,101,242,0.1);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #5865F2, #9B59B6);
    border-radius: 2px;
}

/* ===== CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #5865F2;
    background: rgba(88,101,242,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.card p {
    color: #b0b0b0;
    margin-bottom: 24px;
    font-size: 15px;
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.badge-green { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.badge-purple { background: rgba(155,89,182,0.15); color: #9b59b6; border: 1px solid rgba(155,89,182,0.3); }
.badge-blue { background: rgba(52,152,219,0.15); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.badge-orange { background: rgba(230,126,34,0.15); color: #e67e22; border: 1px solid rgba(230,126,34,0.3); }

/* ===== FOOTER (TÜM SAYFALARDA AYNI) ===== */
.footer {
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 100px;
    background: rgba(0,0,0,0.2);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-socials a {
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
    opacity: 0.7;
}

.footer-socials a:hover {
    color: #5865F2;
    opacity: 1;
    transform: translateY(-4px);
}

.footer p {
    color: #a0a0a0;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .section-title {
        font-size: 28px;
    }
}