<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --bs-dark-rgb: 22, 27, 34;
    --bs-body-bg-rgb: 13, 17, 23;
    --bs-primary-rgb: 46, 160, 67;
    --bs-secondary-rgb: 88, 166, 255;
    --bs-body-color-rgb: 201, 209, 217;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(var(--bs-body-bg-rgb));
    color: rgb(var(--bs-body-color-rgb));
    scroll-behavior: smooth;
}

/* --- NAVÝGASYON MENÜSÜ --- */
.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

    .navbar.scrolled {
        background-color: rgba(var(--bs-dark-rgb), 0.85);
        backdrop-filter: blur(10px);
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: rgb(var(--bs-primary-rgb));
    }

/* --- KARÞILAMA BÖLÜMÜ (HERO) --- */
.hero-section {
    background: linear-gradient(170deg, rgb(var(--bs-dark-rgb)) 55%, #0d1117 100%);
    padding-top: 100px;
    padding-bottom: 60px;
}

    .hero-section .lead {
        color: #a7b3be;
    }

    .hero-section .text-gradient {
        background: linear-gradient(90deg, rgb(var(--bs-primary-rgb)), rgb(var(--bs-secondary-rgb)));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

/* --- BÖLÜM BAÞLIKLARI --- */
.section-title {
    font-weight: 700;
    color: rgb(var(--bs-secondary-rgb));
}

.section-subtitle {
    font-weight: 600;
    color: #c9d1d9;
}

/* --- YENÝ ÖNE ÇIKAN OYUN VÝTRÝNÝ --- */
.featured-game-showcase {
    background: linear-gradient(rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 1)), url('/img/landspace_alternative.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    border-radius: 1rem;
    color: #fff;
}

/* --- OYUN KARTLARI --- */
.card {
    background-color: #1c222b;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.3);
    }

/* --- BUTONLAR --- */
.btn-primary {
    background: linear-gradient(90deg, #238636 0%, #2ea043 100%);
    border: none;
    padding: 0.85rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

    .btn-primary:hover {
        transform: scale(1.05);
    }

.btn-outline-secondary {
    color: #a7b3be;
    border-color: #a7b3be;
}

    .btn-outline-secondary:hover {
        background-color: rgb(var(--bs-secondary-rgb));
        border-color: rgb(var(--bs-secondary-rgb));
        color: #fff;
    }

/* --- GENEL BÖLÜM STÝLLERÝ --- */
.section-bg {
    background-color: rgb(var(--bs-dark-rgb));
    border-radius: 1rem;
}

/* --- FOOTER --- */
footer {
    background-color: rgb(var(--bs-dark-rgb));
    color: #fff;
    font-size: 0.95rem;
}
    /* --- FOOTER YAZI RENGÝ ÝÇÝN KESÝN VE NÝHAÝ ÇÖZÜM --- */
    footer p,
    footer li, /* Bu satýr güncellendi: Artýk ikonlarý da kapsýyor */
    footer small {
        color: #fff !important; /* Link olmayan tüm metinleri ve ikonlarý beyaz yapar */
    }

    footer h5 {
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    footer a {
        color: rgb(var(--bs-secondary-rgb));
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: rgb(var(--bs-primary-rgb));
            text-decoration: none;
        }

.footer-links li {
    margin-bottom: 0.75rem;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 0.75rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

    footer .social-icons a:hover {
        transform: translateY(-3px) scale(1.1);
        color: rgb(var(--bs-primary-rgb));
    }

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
</pre></body></html>