﻿body.public-body {
    margin: 0;
    /* 🔥 İŞTE FONT BÜTÜNLÜĞÜ: Segoe UI silindi, projenin ana fontu eklendi 🔥 */
    font-family: 'Stack Sans Text', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    /* Kutu ekranın ortasında değil, tepesinde sabit duracak. */
    align-items: flex-start;
    /* Standart Laptop (15.6") için varsayılan değer */
    padding-top: 14vh;
    padding-bottom: 60px; /* Aşağıya uzadığında monitörün altına yapışmaması için */
    box-sizing: border-box;
}

/* 🔥 21 İNÇ VE ÜSTÜ MONİTÖRLER İÇİN 🔥 */
@media (min-height: 850px) {
    body.public-body {
        padding-top: 16vh;
    }
}

/* 🔥 24 İNÇ VE BÜYÜK MONİTÖRLER İÇİN 🔥 */
@media (min-height: 1000px) {
    body.public-body {
        padding-top: 18vh;
    }
}

/* 🔥 BÜTÜN SAYFALARDA KUTU BOYU ARTIK AYNI: 1100px */
.public-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    background: #ffffff;
    zoom: 0.8;
}

.public-left {
    width: 368px;
    flex-shrink: 0;
    padding: 40px;
    background-color: rgb(218, 44, 70);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
}

.brand-area {
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.subtitle {
    opacity: 0.7;
    margin-top: 5px;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}

.left-links {
    margin-top: 40px;
}

    .left-links a {
        display: block;
        margin-bottom: 10px;
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

.public-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 40px 20px;
}

.public-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .public-wrapper {
        flex-direction: column;
        zoom: 1;
        margin: 20px 0;
    }

    .public-left, .public-right {
        width: 100%;
        padding: 40px 20px;
    }
}
