body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(160deg, #0b3d91 0%, #1b86c1 100%);
    color: #fff;
    min-height: 100vh;
}

a {
    color: #ffe066;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:visited {
    color: #ffd75a;
}

a:hover,
a:focus {
    color: #fff5a5;
}

a:active {
    color: #ffd23f;
}

.holding-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.holding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.holding-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.holding-tagline {
    font-size: 1.25rem;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .holding-logo {
        max-width: 220px;
    }

    .holding-tagline {
        font-size: 1rem;
    }
}
