﻿        /* --- CSS BAŞLANGICI --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #050505 url('img/black-mesa-bg.jpg') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
            overflow-x: hidden;
        }

        /* Arka Plan Filtresi */
        body::before {
            content: ""; position: fixed; inset: 0;
            background: rgba(0, 0, 0, 0.85); z-index: -1;
        }

        /* PRELOADER (Açılış Ekranı) */
        #preloader {
            position: fixed; inset: 0; background: #000; z-index: 99999;
            display: flex; justify-content: center; align-items: center;
            transition: opacity 0.8s ease;
        }
        .loader-content { text-align: center; }
        .loader-logo { height: 80px; filter: drop-shadow(0 0 15px #f58220); margin-bottom: 20px; animation: pulse 2s infinite ease-in-out; }
        .loader-bar { width: 200px; height: 3px; background: #111; margin: 0 auto; border-radius: 10px; overflow: hidden; }
        .progress { width: 0%; height: 100%; background: #f58220; animation: load 2s linear forwards; }
        .loader-text { display: block; margin-top: 15px; font-size: 0.6rem; letter-spacing: 3px; color: #f58220; font-weight: 700; }

        /* ANA WRAPPER */
        #main-wrapper { opacity: 0; transition: opacity 1.2s ease; visibility: hidden; }
        #main-wrapper.visible { opacity: 1; visibility: visible; }

        /* NAVBAR */
        .navbar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1rem 8%; background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 2000;
            border-bottom: 1px solid rgba(245, 130, 32, 0.2);
        }
        .logo { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; font-weight: 800; }
        .logo img { height: 40px; }
        .orange-text { color: #f58220; }

        /* NAV LINKS */
        .nav-links { display: flex; list-style: none; gap: 30px; transition: 0.5s ease-in-out; }
        .nav-links a {
            color: #aaa; text-decoration: none; font-weight: 700; font-size: 0.8rem;
            text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
        }
        .nav-links a:hover, .nav-links a.active { color: #f58220; }

        /* HAMBURGER BUTON */
        .menu-btn { display: none; width: 30px; height: 20px; cursor: pointer; z-index: 2100; position: relative; }
        .menu-btn__burger, .menu-btn__burger::before, .menu-btn__burger::after {
            width: 30px; height: 3px; background: #f58220; position: absolute; transition: 0.4s;
        }
        .menu-btn__burger::before { content: ''; transform: translateY(-8px); }
        .menu-btn__burger::after { content: ''; transform: translateY(8px); }

        .menu-btn.open .menu-btn__burger { background: transparent; transform: translateX(-20px); }
        .menu-btn.open .menu-btn__burger::before { transform: rotate(45deg) translate(15px, -15px); }
        .menu-btn.open .menu-btn__burger::after { transform: rotate(-45deg) translate(15px, 15px); }

        /* HERO */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
        .hero { padding: 100px 0; }
        .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); color: #f58220; margin-bottom: 15px; }
        .hero p { color: #888; margin-bottom: 30px; font-size: 1.1rem; }
        .btn {
            background: #f58220; color: #000; padding: 1rem 3rem; border-radius: 50px;
            text-decoration: none; font-weight: 800; transition: 0.3s; display: inline-block;
        }
        .btn:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(245, 130, 32, 0.4); }

        /* SENİN YUVARLAK BUTONLARIN */
        .circle-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; padding-bottom: 80px; }
        .circle-btn { text-decoration: none; width: 130px; transition: 0.3s; }
        .img-wrap {
            width: 110px; height: 110px; border-radius: 50%; border: 2px solid rgba(245,130,32,0.2);
            overflow: hidden; margin: 0 auto 10px; transition: 0.4s; padding: 5px; background: rgba(0,0,0,0.4);
        }
        .circle-btn img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .circle-btn span { display: block; color: #777; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; }

        .circle-btn:hover .img-wrap { border-color: #f58220; box-shadow: 0 0 20px rgba(245,130,32,0.4); transform: translateY(-5px); }
        .circle-btn:hover span { color: #f58220; }

        /* MOBİL RESPONSIVE */
        @media (max-width: 992px) {
            .menu-btn { display: block; }
            .nav-links {
                position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
                background: rgba(10, 10, 10, 0.98); flex-direction: column;
                justify-content: center; align-items: center; z-index: 2050;
            }
            .nav-links.open { right: 0; }
            .nav-links li { margin: 15px 0; }
            .nav-links a { font-size: 1.2rem; }
        }
		
		/* YAMA NOTLARI (CHANGELOG) KUTUSU - STABİL VERSİYON */
.patch-notes {
    max-width: 800px;
    margin: 40px auto 100px;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
    position: relative;
}

.patch-notes::before {
    content: "YAMA NOTLARI";
    display: block;
    background: rgba(245, 130, 32, 0.1);
    margin: -25px -25px 20px -25px;
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #f58220;
    border-bottom: 1px solid rgba(245, 130, 32, 0.2);
    letter-spacing: 2px;
}

.patch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
    gap: 15px;
    margin-bottom: 20px;
}

.patch-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.patch-version {
    background: #f58220;
    color: #000;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
}

/* SİSTEM DURUMU */
.status-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(245, 130, 32, 0.1);
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; }

.status-stable .status-dot { background: #00ff00; box-shadow: 0 0 10px #00ff00; animation: statusPulse 2s infinite; }
.status-maintenance .status-dot { background: #ff0000; box-shadow: 0 0 10px #ff0000; animation: statusPulse 1s infinite; }

.status-text { font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.status-stable .status-text { color: #00ff00; }
.status-maintenance .status-text { color: #ff0000; }

.patch-date { color: #555; font-size: 0.75rem; font-weight: 700; }

.patch-list { list-style: none; }
.patch-list li { font-size: 0.85rem; color: #bbb; margin-bottom: 10px; padding-left: 20px; position: relative; line-height: 1.4; }
.patch-list li::before { content: ">"; position: absolute; left: 0; color: #f58220; font-weight: 800; }

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

@media (max-width: 600px) {
    .patch-header { flex-direction: column; align-items: flex-start; }
    .patch-notes { margin: 20px 15px; }
}
		
		

        /* ANIMASYONLAR */
        @keyframes load { to { width: 100%; } }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.95); } }