/* Firerafter Volkanik Tema - v2.3 (Stabil HEX) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

body {
    background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)), 
                url('../img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* --- NAVIGASYON --- */
nav.navbar {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom: 3px solid #e67e22;
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 800;
    color: #e67e22;
    text-transform: uppercase;
}

.nav-link {
    color: #e0e0e0;
    transition: 0.3s;
}

.nav-link:hover {
    color: #e67e22;
}

/* --- BUTONLAR --- */
.btn-fire {
    background-color: #e67e22;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    text-transform: uppercase;
}

.btn-fire:hover {
    background-color: #c0392b;
    color: #ffffff;
}

/* --- KARTLAR --- */
.card {
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 12px;
}

.card:hover {
    border-color: #e67e22;
}

.text-orange {
    color: #e67e22;
}

/* --- DESTEK CHAT --- */
.support-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.support-button {
    background-color: #e67e22;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: #181818;
    border: 1px solid #e67e22;
    border-radius: 15px;
    display: none;
}

.chat-header {
    background-color: #e67e22;
    padding: 15px;
    color: #ffffff;
}

/* --- EKSTRALAR --- */
.progress-bar {
    background: linear-gradient(90deg, #e67e22, #c0392b);
}

.balance-box {
    border: 1px solid #e67e22;
    color: #e67e22;
    padding: 6px 18px;
    border-radius: 30px;
}

input.form-control, 
textarea.form-control {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
}

input.form-control:focus {
    border-color: #e67e22;
    background-color: #1a1a1a;
    color: #ffffff;
    outline: none;
    box-shadow: none;
}