* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    letter-spacing: normal;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 540px;
    width: 100%;
}

/* Üst kısımdaki Logo */
.site-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

/* Altındaki Sunucu Bilgisi Yazısı */
.hosting-title {
    font-size: 1.15rem;
    font-weight: 300;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Hemen altındaki Alan Adı Gösterimi */
.domain-display {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: normal;
    color: #00b8d4;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 18px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    word-break: break-all;
    letter-spacing: normal;
}

.domain-icon {
    font-size: 0.85rem;
    color: #10b981;
}

@media (max-width: 480px) {
    .site-logo {
        max-width: 220px;
        margin-bottom: 20px;
    }
    
    .hosting-title {
        font-size: 1.05rem;
    }
    
    .domain-display {
        font-size: 0.88rem;
        padding: 7px 16px;
    }
}

