/* Genel Ayarlar */
:root {
    --gold: #d4af37;
    --gold-hover: #b4942b;
    --dark: #111;
    --text: #eee;
    --overlay: rgba(0, 0, 0, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background-color: var(--dark);
    overflow-x: hidden;
}

/* Hero Section (Arka Plan) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Buraya rastgele bir Metin2 wallpaper linki koydum, değiştirebilirler */
    background: url('https://wallpapers.com/images/hd/metin2-lycan-fighting-k8k4k8k4k8k4k8k4.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1;
}

/* İçerik Düzeni */
.logo-container, .buttons-container, .features-grid {
    position: relative;
    z-index: 2;
}

.logo-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.logo-container p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Buton Tasarımları */
.buttons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    text-decoration: none;
    padding: 15px 40px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: rgba(0,0,0,0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-primary { background: linear-gradient(45deg, #b4942b, #d4af37); color: #000; border: none; }
.btn-primary:hover { background: linear-gradient(45deg, #d4af37, #fff); }

/* Özellik Kutuları */
.features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    border-bottom: 3px solid var(--gold);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.feature-card p {
    font-size: 0.8rem;
    color: #ccc;
}

/* FOOTER (ÖNEMLİ KISIM) */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    z-index: 2;
    border-top: 1px solid #333;
}

footer p {
    font-size: 0.8rem;
    color: #888;
}

footer a {
    color: #aaa;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

footer a:hover {
    color: var(--gold);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .logo-container h1 { font-size: 2.5rem; }
    .buttons-container { flex-direction: column; width: 80%; }
    .btn { width: 100%; justify-content: center; }
}