/* Genel Stil */
body {
    font-family: 'Inter', sans-serif;
    color: #f8f9fa;
    background-color: #1a1a1a;
}

.bg-black {
    background-color: #000000 !important;
}

.bg-darker {
    background-color: #0d0d0d !important;
}

.text-danger {
    color: #dc3545 !important; /* Kırmızı vurgu */
}

.hover-danger:hover {
    color: #dc3545 !important;
}

/* Dil Sekmeleri için Minimal Stil */
.nav-pills .nav-link {
    background-color: #333;
    border: 1px solid #444;
    color: #f8f9fa;
    margin-right: 5px;
}

.nav-pills .nav-link.active {
    background-color: #dc3545; /* Kırmızı aktif sekme */
    color: #fff;
    border-color: #dc3545;
}

/* Bayrak Boyutu */
.fi {
    font-size: 1.2rem;
}

/* Video Konteyneri */
.video-container {
    position: relative;
    width: 100%;
    /* Değiştirilmesi Gereken Kısım: */
    max-width: 700px; /* Video maksimum 700px genişlikte olacak */
    /* ------------------------------------- */
    padding-top: 56.25%; /* 16:9 Oranını korur */
    border: 3px solid #dc3545;
    overflow: hidden;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Kart Stili (Bilgi Kutusu) */
.card {
    border-radius: 12px;
    background-color: #121212 !important;
}

/* Özellik Listesi */
.feature-list {
    margin-top: 10px;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #cccccc;
}

/* 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); }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .video-container {
        padding-top: 75%; 
    }
    .display-4 {
        font-size: 2rem;
    }
}