/* Countdown Bar Ana Yapısı */
.ai-countdown-bar {
    width: 100%;
    height: fit-content;
    background: var(--amb-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Arkaplanda çok hafif dijital izgar */
.ai-countdown-bar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--amb-purple) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.03;
    pointer-events: none;
}

.bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Sol Kısım: Başlık ve Durum */
.bar-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--amb-purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--amb-purple);
    animation: pulse 2s infinite;
}

.event-title {
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--amb-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.event-loc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--amb-purple);
    background: rgba(148, 52, 148, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Orta Kısım: Sayaç */
.timer-display {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timer-unit {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.timer-val {
    font-family: Arame, monospace;
    font-size: 1.3em;
    font-weight: 400;
    color: #fff;
}

.timer-lbl {
    font-size: 0.6rem;
    font-weight: 600;
    color: #e3e3e3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sağ Kısım: Buton */
.bar-action .btn-amb {
    background-color: var(--amb-purple);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(148, 52, 148, 0.2);
}

.bar-action .btn-amb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(148, 52, 148, 0.3);
    background-color: #7d2a7d;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px var(--amb-purple); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Mobil Düzenlemeler */
@media (max-width: 992px) {
    .event-loc { display: none; }
}

@media (max-width: 768px) {
    .ai-countdown-bar { height: auto; padding: 10px 0; }
    .bar-container { flex-direction: column; gap: 10px; }
    .timer-val { font-size: 1.1rem; }
    .event-title { font-size: 0.8rem; }
}


.social-icons-wrapper {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
    margin-top: 10px;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: start;
}
.social-icons-wrapper li{
    border-right: 1px solid #654467;
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icons-wrapper li:last-child{

}

.social-icons-wrapper > li > a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    font-size: 1em;

}

.social-link:hover {
    color: var(--text-light);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--amb-peach));
}

.mini-social-tag{
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: nowrap;

}

@media(max-width:1100px){
    .ai-countdown-bar .timer-display{
        display: none;
    }
    .mini-social-tag{
        font-size: 0.6em;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

}

header.mobile .timer-unit{
    flex-direction: column;
}
header.mobile .timer-unit{
    gap: 0px;
}