body {
    background: #000000; /* Koyu tema */
    color: #fff;
}

/* header {
    background-color: #E9E3CE;
} */

.electrolize-regular {
    font-family: "Electrolize", serif;
    font-weight: 400;
    font-style: normal;
}



.reklam-marquee {
  background-color: #9c0000;
  height: 60px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-content a img {
  height: 50px;
  width: 280px;
  object-fit: contain;
  display: block;
}

/* Animasyon en sağdan başlatır */
@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}





#popupText p {
    font-size: 1.1rem;
    font-weight: 500;
}
.modal-content {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}









.story-section {
    overflow-x: auto; /* Yatay kaydırma */
    position: sticky;
    top: 0;
    z-index: 1000;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    transition: background-color 0.3s ease;
}
.story-section.sticky {
    background-color: #2c2c2c; /* Yapışkan durumdayken arkaplan rengi */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.story-section::-webkit-scrollbar {
    display: none; 
}

.story-container {
    position: relative; /* Pseudo elementlerin konumlandırılması için */
    padding: 20px; /* Padding artırıldı */
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: padding 0.3s ease; /* Geçiş efekti için padding'e transition özelliği eklendi */
}

.story-container.sticky {
    padding-top: 10px; /* Yapışkan durumdayken üst padding azaltıldı */
    padding-bottom: 10px; /* Yapışkan durumdayken alt padding azaltıldı */
}


.story-container::before,
.story-container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #9c0000;
    border-radius: 100%; /* Yuvarlatılmış köşeler */
    transition: opacity 0.3s ease; /* Geçiş efekti için opacity özelliği eklendi */
    opacity: 1;
}

.story-container::before {
    top: 0; /* Üst kenarlık */
}

.story-container::after {
    bottom: 0; /* Alt kenarlık */
}

.story-container.no-border::before,
.story-container.no-border::after {
    opacity: 0; 
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.story-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9c0000;
}

.story-item span {
    color: #fff;
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
}








.border-custom {
    border-radius: 10px;
    border: 3px solid #9c0000;
    background-color: #2c2c2c;
}
















/* Modal Düzenlemesi */
#imageModal .modal-details {
    margin-bottom: 20px; /* Siteye Git butonu ile arasında boşluk */
}

#imageModal .modal-details p {
    text-align: left; /* Künye bilgilerini sola hizala */
    margin-bottom: 5px;
}














.logo-container {
    text-align: center;
}

.logo {
    max-width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.btn-custom {
    background-color: #9c0000;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
}

.social-logos {
    font-size: 24px;
}



/* .btn-custom:hover {
    background-color: #9c0000; 
} */

@media (max-width: 767px) {
    .logo {
        max-width: 80px; 
    }

    .btn-custom {
        padding: 8px 16px; 
        font-size: 12px; 
        line-height: 20px;
        clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    }
}

/* Flamalar Konteyneri */
.flama-container {
    position: fixed;
    top: 30%;
    width: 100%;
    z-index: 1000;
}

.flama {
    position: absolute;
    height: 60vh; 
}

.left-flama {
    left: 0;
    margin-left: 25px;
}

.right-flama {
    right: 0;
    margin-right: 25px;
}

.flama img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
}

@media (max-width: 1330px) {
    .flama {
        display: none
    }
}


/* Footer Düzenlemesi */
.footer-navbar {
    background-color: #2c2c2c;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0; 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.footer-navbar .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease; 
}

.footer-navbar .nav-link:hover {
    color: #9c0000;
}

.footer-navbar .nav-link.active {
    color: #9c0000;
}

.footer-navbar .nav-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Mobil Görünüm İçin Footer Düzenlemesi */
@media (max-width: 767px) {
    .footer-navbar .nav-link {
        font-size: 12px; 
        padding: 10px;
    }

    .footer-navbar .nav-link i {
        font-size: 1rem; 
        margin-right: 5px; 
    }
}




.section-header {
    background-color: #9c0000;
    margin-bottom: 30px;
    position: relative;
    border-radius: 7px;
}

.section-header h2 {
    padding: 4px 0;
    color: #fff; /* Başlık metin rengi (beyaz) */
    position: relative;
}




/* Kart Düzenlemesi */
.card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #2c2c2c;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    transition: 0.3s; /* Yumuşak geçiş efekti */
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); /* Hover durumunda gölgeyi artır */
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.card .btn {
    border-radius: 0;
    width: 100%;
    background-color: #000000; 
    color: white;
}

.card .btn:hover {
    background-color: #2e8b57;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.overlay:hover {
    opacity: 1;
}






/* Modal Düzenlemeleri */
.modal-content {
    background-color: #000000;
    color: #fff;
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
}

.modal-header .btn-close {
    background-color: #9c0000;
}

.modal-body img {
    border-radius: 10px;
}

.modal-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 70vh;
    width: auto;
    max-width: 100%;
}

.modal-details p {
    margin-bottom: 5px; /* Paragraflar arası boşluk */
    text-align: left;
}









.bonus-item {
    border-radius: 80px; /* Pill formatı için */
    background-color: #2c2c2c; /* Arka plan rengi eklendi */
}

.bonus-img-container {
    border: 4px solid #9c0000;
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.bonus-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-info {
    text-align: center;
    color: #fff;
    margin-left: 1.1rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9c0000;
    margin-bottom: 5px;
}

.btn {
    background-color: #9c0000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 50px; /* Pill formatı için */
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease; /* Hover efekti için */
}

.btn:hover {
    background-color: #2e8b57;
}

/* Mobil Görünüm */
@media (max-width: 767px) {
    .bonus-info {
        text-align: center;
        color: #fff;
        margin-left: 0.4rem;
    }
    .bonus-img-container {
        border: 4px solid #9c0000;
        border-radius: 50%;
        width: 90px;
        height: 90px;
    }
    
    .bonus-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bonus-amount {
        font-size: 1.2rem;
        font-weight: bold;
        color: #9c0000;
        margin-bottom: 5px;
    }
    .btn {
        font-size: 0.6rem;
        background-color: #9c0000;
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 50px; /* Pill formatı için */
        text-transform: uppercase;
        font-weight: bold;
        transition: all 0.3s ease; /* Hover efekti için */
    }

}



.social-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    padding: 0 15px;
}

.social-card {
    display: flex;
    align-items: center;
    width: 300px;
    padding: 15px;
    background-color: rgba(249, 249, 249, 0.6);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #ddd;
}

.social-card:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
}

.social-card-logo {
    width: 64px;
    height: 64px;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-card:hover .social-card-logo {
    transform: scale(1.1);
}

.social-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-card-content h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.social-card-content p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

.social-card:hover .social-card-content p {
    color: #000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .social-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        overflow-x: auto;
        display: flex;
        gap: 10px;
        scroll-snap-type: x mandatory;
    }

    .social-card {
        min-width: 150px;
        scroll-snap-align: center;
    }
}










/* Genel Renk Güncellemeleri */
.text-center {
    color: #fff; /* Başlıklar için beyaz renk */
}

h2 {
    color: #fff; /* H2 başlıkları için beyaz renk */
}




