/* Genel Ayarlar ve Fontlar */
body {
    font-family: 'Inter', sans-serif;
    color: #f8f9fa; /* Açık gri metin */
    background-color: #1a1a1a; /* Koyu arka plan */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-dark {
    background-color: #121212 !important; /* Bir ton daha açık koyu */
}

.bg-darker {
    background-color: #0d0d0d !important; /* Footer için ekstra koyu */
}

/* Navbar */
.navbar-brand .text-danger {
    color: #dc3545 !important; /* Kırmızı vurgu */
}

.nav-link:hover {
    color: #dc3545 !important;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1080/000000?text=War+Universe+Arka+Plan'); /* Görsel yolu değiştirilebilir */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 5rem;
    text-transform: uppercase;
}

/* CTA Buton Animasyonu */
.pulse-effect {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Özellik Kartları */
.feature-card {
    background-color: #1a1a1a;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #dc3545 !important;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.15);
}

/* Galeri/Carousel */
.carousel-inner img {
    max-height: 600px;
    object-fit: cover;
}