/* Genel Ayarlar */
:root {
    --bg-color: #050505;
    --card-bg: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #ffffff; /* Vurgu rengi beyaz */
    --border: #222222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.container { width: 85%; margin: auto; max-width: 1200px; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.logo { font-size: 24px; font-weight: 900; letter-spacing: -1px; }
.logo .dot { color: var(--text-muted); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }

.nav-actions { display: flex; gap: 15px; }
.btn-login { color: var(--text-main); font-weight: 700; font-size: 14px; padding: 10px 20px; border: 1px solid var(--border); border-radius: 4px; }
.btn-login:hover { background: #111; border-color: #444; }

.btn-play { background: var(--text-main); color: #000; font-weight: 800; font-size: 14px; padding: 10px 25px; border-radius: 4px; }
.btn-play:hover { background: #ddd; box-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* Hero Section */
.hero {
    height: 90vh;
    background: url('https://images.wallpapersden.com/image/download/black-white-landscape-4k_bGdnaWuUmZqaraWkpJRmbmdlrWZlbWU.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--bg-color)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }

.server-tag { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 50px; font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); letter-spacing: 1px; }

.hero h1 { font-size: 72px; font-weight: 900; margin: 20px 0; letter-spacing: -3px; line-height: 1.1; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }

/* IP Box Custom Design */
.ip-box {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 350px;
}
.ip-box:hover { border-color: var(--text-main); transform: translateY(-3px); }

.ip-icon { background: var(--text-main); color: #000; width: 40px; height: 40px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-right: 15px; }
.ip-info { text-align: left; flex: 1; }
.ip-label { display: block; font-size: 10px; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.ip-text { display: block; font-size: 16px; font-weight: 800; letter-spacing: 1px; }
.ip-copy-btn { background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 4px; font-size: 12px; font-weight: 700; transition: 0.2s; }

.btn-hero-store {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-weight: 700;
    border-radius: 8px;
}
.btn-hero-store:hover { background: var(--text-main); color: #000; }

.stats-row { display: flex; justify-content: center; gap: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-item i { font-size: 24px; margin-bottom: 5px; color: var(--text-muted); }
.stat-item span { font-size: 20px; font-weight: 800; }
.stat-item small { font-size: 12px; color: var(--text-muted); font-weight: 700; }

/* News Section */
.news-section { padding: 100px 0; background: var(--bg-color); }
.section-header { margin-bottom: 50px; display: flex; align-items: center; gap: 20px; }
.section-header h2 { font-size: 28px; font-weight: 800; letter-spacing: -1px; white-space: nowrap; }
.section-header .line { width: 100%; height: 1px; background: var(--border); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.news-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: 0.4s; }
.news-card:hover { transform: translateY(-10px); border-color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.card-image { height: 200px; background-size: cover; background-position: center; position: relative; }
.badge { position: absolute; top: 15px; left: 15px; padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 900; color: #000; }
.badge.update { background: #fff; }
.badge.event { background: #ccc; }
.badge.store { background: #888; color: #fff; }

.card-body { padding: 25px; }
.meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.card-body h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; }
.card-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

.read-more { font-size: 13px; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 5px; }
.read-more:hover { gap: 10px; }

/* Footer */
footer { padding: 50px 0; border-top: 1px solid var(--border); background: #080808; margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-left h2 { font-size: 20px; font-weight: 900; margin-bottom: 5px; }
.footer-left p { font-size: 12px; color: var(--text-muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--text-muted); font-size: 20px; }
.footer-social a:hover { color: var(--text-main); transform: scale(1.1); }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hero h1 { font-size: 40px; }
    .ip-box { min-width: auto; width: 100%; }
    .stats-row { gap: 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}