* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;

    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Arka Plan Kolaj */
.background-collage {
    position: fixed;

    top: 0;
    left: 0;

    width: 110%;
    height: 110%;

    display: grid;

    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);

    gap: 5px;

    z-index: -2;

    transform: rotate(-2deg) scale(1.1);

    filter: grayscale(35%) brightness(0.5);
}

.grid-item {
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    transition: transform 0.4s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

/* Karartma Katmanı */
.overlay {
    position: fixed;
    inset: 0;

    background: radial-gradient(
        circle,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.92) 100%
    );

    z-index: -1;
}

/* İçerik Alanı */
.content {
    text-align: center;

    max-width: 850px;

    padding: 40px;

    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;
}

/* Logo */
.logo {
       width: min(92vw, 359px);
    /* padding: 18px 24px; */
    /* background: rgba(255, 255, 255, 0.96); */
    border-radius: 28px;
}

.logo-mark {
    display: block;

    width: 100%;
    height: auto;

    margin-bottom: 10px;

    opacity: 0.96;
    border-radius: 18px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));

    transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo-mark:hover {
    transform: translateY(-2px) scale(1.01);
    opacity: 1;
}

/* Yazı Gölgesi */
.logo,
h2,
.message p,
.status-badge,
footer {
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

/* Çizgi */
.divider {
    width: 80px;
    height: 4px;

    background-color: #e63946;

    margin: 12px auto 25px auto;

    border-radius: 10px;
}

/* Mesaj Alanı */
.message {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Başlık */
h2 {
    font-size: 1.5rem;
    font-weight: 400;

    letter-spacing: 5px;

    margin-bottom: 14px;
}

/* Açıklama */
.message p {
    max-width: 650px;

    font-size: 1rem;

    line-height: 1.9;

    color: rgba(255,255,255,0.86);

    margin-bottom: 38px;
}

/* Buton */
.status-badge {
    display: inline-block;

    padding: 16px 42px;

    border: 2px solid #e63946;
    border-radius: 50px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: all 0.3s ease;

    margin-bottom: 45px;
}

.status-badge:hover {
    background-color: #e63946;

    transform: translateY(-2px);
}

/* Footer */
footer {
    font-size: 0.85rem;

    color: rgba(255,255,255,0.6);

    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {

    .content {
        width: 92%;
        padding: 20px;
    }

    .logo {
        width: min(88vw, 420px);
        padding: 14px 16px;
        border-radius: 22px;
    }

    h2 {
        font-size: 1.05rem;
        letter-spacing: 3px;
    }

    .message p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .status-badge {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.72rem;
    }
}