* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: #304E7F;
    color: #ffffff;
    font-family: 'Special Gothic Expanded One', sans-serif;
    overflow: hidden;
}

.kare-ler {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.kar {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #6ca6c1, #a0d8ef);
    opacity: 0.66;
    filter: blur(56px);
    border-radius: 25px;
    transition: top 4s ease, left 4s ease, transform 4s ease;
}

/* Orta Metinler */
.maintxt {
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 2;
}

.maintxt2 {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 24px;
    z-index: 2;
}

.maintxt3 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-family: "Special Gothic Condensed One", sans-serif;
    color: #b3ecff;
    z-index: 2;
}

.maintxt4 {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
    z-index: 2;
    width: 80%;
    line-height: 1.5;
}

.lvbzg {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    z-index: 2;
}

.maintxt5 {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 24px;
}

/* BZG DIMENSION Buton Efekti */
.plain-text {
    color: #ffffff;
    font-weight: bold;
}

/* BZG DIMENSION Buton Efekti */
.bzg-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.1s ease, color 0.1s ease, text-shadow 0.1s ease;
    cursor: pointer;
}

/* Üstüne gelince sadece hafif renk değişimi */
.bzg-link:hover {
    color: #b3ecff;
}

/* Basınca (Active) içe doğru çökme ve RENK vurgusu */
.bzg-link:active {
    transform: scale(0.92);
    /* İçe çökme hissi */
    filter: none;
    /* Blur efektini tamamen kaldırdık */
    color: #ffffff;
    /* İstersen basınca bembeyaz kalabilir */
}

/* Diğerleri */
.widget {
    position: fixed;
    top: 20px;
    right: 5px;
    z-index: 10;
    padding: 10px;
    font-family: 'Fira Code', monospace;
    min-width: 250px;
}

.city-row {
    display: flex;
    align-items: center;
    font-size: 11px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.city-row span:first-child {
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 130px; 
}

.c-code {
    color: #b3ecff;
    font-weight: 800;
    margin-left: auto;
    font-size: 0.9em;
    padding-right: 10px;
}

.city-time {
    color: #b3ecff;
    font-weight: bold;
    margin-left: auto;
    text-shadow: 0 0 8px rgba(179, 236, 255, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.city-row:last-child {
    margin-bottom: 0;
}

.ampm {
    font-size: 0.8em;
    margin-left: 15px;
    color: #ffffff;
    font-weight: normal;
}

.kose-logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kose-logo img {
    width: 35px;
    height: auto;
    display: block;
}

.altkose-text {
    font-size: 0.7rem;
    color: #b3ecff;
}

.biglogo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    filter: brightness(5700%) hue-rotate(360deg);
    z-index: 10;
}

.clickblur {
    width: 80px;
    height: auto;
    /* Tıklama özelliğini hissettiren her şeyi kaldırdık */
    cursor: default;
    pointer-events: none;
    /* Üstüne gelse bile hiçbir şey yapmaz */
    opacity: 0.8;
    /* Hafif transparanlık daha şık durabilir */
}

.active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(60);
    filter: blur(25px);
    opacity: 0;

}


/* Mobil */
@media screen and (max-width: 768px) {
    .widget {
        right: 10px;
        top: 10px;
        min-width: auto;
        padding: 5px;
    }

    .city-row {
        font-size: 9px; 
        margin-bottom: 4px;
    }

    .city-row span:first-child {
        width: 100px; 
    }

    .ampm {
        margin-left: 8px; 
    }

   
    .maintxt, .maintxt2, .maintxt3, .maintxt4, .maintxt5, .lvbzg {
        width: 90%;
        left: 50% !important; 
        text-align: center;
    }

    .maintxt4 {
        font-size: 12px;
        top: 54%;
    }

    .biglogo {
        right: 10px;
        bottom: 10px;
    }

    .clickblur {
        width: 60px; 
    }

    .kose-logo {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }
}













