/* Güncel Adres Bilgilendirme v2 */

.ga-kutu {
    max-width: 100%;
    margin: 2em auto;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

/* ─── Light Mode ─── */
.ga-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ga-light .ga-mesaj {
    background: #f1f5f9;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
	text-align:center;
}

.ga-light .ga-etiket {
    color: #64748b;
}

.ga-light .ga-domain {
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.ga-light .ga-alt {
    color: #000000;
    border-top: 1px solid #f1f5f9;
	font-size:16px;
}

/* ─── Dark Mode ─── */
.ga-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ga-dark .ga-mesaj {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ga-dark .ga-etiket {
    color: rgba(255, 255, 255, 0.5);
}

.ga-dark .ga-domain {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.ga-dark .ga-alt {
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── Mesaj alanı ─── */
.ga-mesaj {
    padding: 1.2em 1.5em;
    font-size: 0.9em;
    line-height: 1.7;
    text-align: left;
}

/* ─── Ana içerik ─── */
.ga-icerik {
    padding: 2em 1.5em 1.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
}

/* ─── Etiket ─── */
.ga-etiket {
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ─── Domain (Hero) ─── */
.ga-domain {
    font-size: 1.5em;
    font-weight: 800;
    padding: 0.5em 1.2em;
    border-radius: 10px;
    word-break: break-word;
    letter-spacing: 0.3px;
    margin: 0.3em 0 0.6em;
}

.ga-beklemede {
    opacity: 0.5;
    font-size: 1.1em;
    font-weight: 600;
}

/* ─── Buton ─── */
.ga-buton {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95em;
    padding: 0.8em 2.5em;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ga-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff !important;
    text-decoration: none !important;
}

.ga-buton:active {
    transform: translateY(0);
}

/* ─── Alt bilgi ─── */
.ga-alt {
    padding: 0.8em 1.5em;
    font-size: 0.75em;
    letter-spacing: 0.3px;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .ga-kutu {
        margin: 1em auto;
        border-radius: 12px;
    }

    .ga-icerik {
        padding: 1.5em 1.2em 1.4em;
    }

    .ga-domain {
        font-size: 1.25em;
        padding: 0.5em 1em;
    }

    .ga-buton {
        padding: 0.8em 2em;
        width: 100%;
        max-width: 260px;
    }

    .ga-mesaj {
        font-size: 0.85em;
        padding: 1em 1.2em;
    }
}
