::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #161615; }
::-webkit-scrollbar-thumb { background: #E30613; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #be050f; }

#projemaps {
    height: 550px;
    width: 100%;
    border-radius: 1rem;
}

.shorts-track::-webkit-scrollbar { display: none; }
.shorts-track { -ms-overflow-style: none; scrollbar-width: none; }

/* Dikkat Çekici Animasyonlar (Bilgi Al & Play) */
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(227, 6, 19, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(227, 6, 19, 0.8); }
}
.animate-pulse-glow {
    animation: pulse-glow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes play-ripple {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}
.play-ripple-effect {
    position: relative;
}
.play-ripple-effect::before, .play-ripple-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #E30613;
    background: rgba(227, 6, 19, 0.2);
    animation: play-ripple 2s infinite ease-out;
    z-index: 0;
}
.play-ripple-effect::after {
    animation-delay: 1s;
}
/* Google Maps InfoWindow Siyah Tema ve Kutu Ayarları */
.gm-style-iw.gm-style-iw-c {
    background-color: #1e1e1d !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
}
/* Alttaki ok işaretinin rengini koyu yapma */
.gm-style-iw-tc::after {
    background-color: #1e1e1d !important;
}
/* İçeriğin taşmasını engelleme ve kaydırma çubuğunu kaldırma */
.gm-style-iw-d {
    overflow: hidden !important;
    max-height: none !important;
}
/* Çarpı (Kapatma) butonunu beyaz ve görünür yapma */
.gm-style .gm-ui-hover-effect {
    filter: invert(1) !important;
    outline: none !important;
    top: 2px !important;
    right: 2px !important;
}