@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* Возвращаем оригинальный темно-коричневый фон сервера QYRAN */
body {
    background-color: #0f0a05; 
    color: #fef3c7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.5;
}

/* Навигация с правильным оранжевым акцентом */
.nav-container {
    background-color: #0f0a05;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: 0.3s;
    text-decoration: none;
}

/* Классы для активных ссылок и ховера */
.nav-link.active { color: #f59e0b; }
.nav-link:hover { color: #f59e0b; }

/* Карточки с коричневым фоном и рамкой */
.card {
    background-color: #1a120a;
    border: 1px solid #3d2b1a;
    border-radius: 2rem;
    transition: 0.3s;
}

/* Кнопка "Көшіру" и другие оранжевые элементы */
.orange-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
}

/* Коричневая кнопка оплаты из магазина */
.pay-button-custom {
    background-color: #7a4426; 
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.pay-button-custom:hover {
    background-color: #8e4f2d;
    color: #fff;
}

/* Поля ввода в магазине */
.modal-input {
    background-color: #141414;
    border: 1px solid #222;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

/* Заголовок QYRAN */
.minecraft-font {
    text-shadow: 2px 2px 0px #000;
}