:root {
    --bg-dark: #0b0c10;
    --card-bg: #151821;
    --gold-primary: #f3c614;
    --gold-hover: #d4ac0d;
    --text-muted: #9ba1a6;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(243, 198, 20, 0.1);
}

/* Bütün tünd kartlardakı boz yazıları tam oxunaqlı edirik */
.text-muted {
    color: #b0b7c0 !important;
}

.step-card p, 
.feature-box p {
    color: #d1d5db !important;
    font-size: 0.95rem;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-link {
    color: #ffffff !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold-primary);
    color: #000000;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #000000;
}

.btn-outline-gold {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 700;
    background: transparent;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: #000;
}

/* Hero Section - Əsas Fon */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1e29 0%, var(--bg-dark) 70%);
}

/* Hero hissəsindəki izahat mətnlərini daha oxunaqlı edirik */
.hero-section p.text-muted {
    color: #d1d5db !important; /* Daha parlaq boz rəng */
    font-size: 1.05rem;
}

/* Statistika rəqəmlərinin altındakı kiçik yazılar */
.hero-section .row.text-muted small {
    color: #9ca3af !important;
}

/* Canlı sifariş kartındakı sol tərəfdə solğun görünən mətnlər */
.live-order-card .text-muted {
    color: #e5e7eb !important;
}

/* Live Order Card */
.live-order-card {
    background: var(--card-bg);
    border: 1px solid rgba(243, 198, 20, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Step Cards */
.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    opacity: 0.2;
    margin-bottom: 10px;
}

/* Feature Boxes */
.feature-box {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--gold-primary);
}

.feature-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
}

/* Footer */
footer {
    background-color: #07080a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px 0 20px 0;
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--gold-primary);
}