/* ==========================================================================
   Modern CSS Reset & Base Optimization 
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 12px;
    font-family: 'Dosis', sans-serif;
    font-weight: 400;
    color: #555;
    
    /* Mevcut arka plan kuralınız aynen korunmuştur */
    background: url(images/bg.png) repeat; 
    
    /* Modern Flexbox Ortalama Motoru */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Seçim Alanı Renk Ayarı */
::selection {
    background: #555;
    color: #EEE;
}

/* ==========================================================================
   Ecosystem Component Layout
   ========================================================================== */
#mainwrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    
    /* Yumuşak sayfa giriş animasyonu */
    animation: premiumFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo {
    font-size: 36px;
    line-height: 44px;
    font-family: 'Berkshire Swash', cursive;
    color: #555;
    padding: 10px 0;
    margin-right: 10px;
    white-space: nowrap;
}

.content {
    margin-left: 10px;
    line-height: 22px;
    color: #555;
    border-left: 1px dotted #AAA;
    font-family: 'Poiret One', cursive;
    font-size: 22px;
    padding: 10px 0 10px 15px;
}

/* ==========================================================================
   Premium Black Brand Kapsülü Tasarımı
   ========================================================================== */
.brand-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 17px; /* Kapsül içi denge için optimize edilen boyut */
    letter-spacing: -0.2px;
    
    /* Siyah Arka Plan ve Tasarım Kuralları */
    background: #000000;
    color: #FFFFFF; /* Siyah kutu içinde yazı net saf beyaz */
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 6px;
    
    /* Premium donanım/etiket hissi veren mikro gölge */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Kapsül içindeki siber siyan ikon parlaması */
.hash-tag {
    color: #00E5FF;
    font-weight: 600;
    margin-right: 1px;
}

.studio-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Fareyle üzerine gelindiğinde kapsülün hafifçe parlamasını ve yaylanmasını sağlar */
.studio-link:hover {
    text-decoration: none;
    opacity: 0.9;
    transform: translateY(-1px);
}

@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Cihazlar İçin Sıkışmayı Önleyen Optimizasyon */
@media (max-width: 340px) {
    .logo {
        font-size: 30px;
    }
    .content {
        font-size: 18px;
        line-height: 18px;
    }
    .brand-badge {
        font-size: 14px;
        padding: 2px 8px;
    }
}