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

body {
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(ellipse at center, #e8f4fc 0%, #b8daf0 55%, #8ec4e8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-radial-gradient(circle at 50% 45%, transparent 0 38px, rgba(255, 255, 255, 0.15) 38px 39px);
    pointer-events: none;
}

.home-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.logo-card {
    max-width: 520px;
}

.logo-card img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
}

.slogan {
    color: #1a3a6e;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
}

.admin-link {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #2c5282;
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.85;
}

.admin-link:hover {
    opacity: 1;
    color: #0d47a1;
    text-decoration: underline;
}
