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

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    margin: 0;

    display: flex;
    flex-direction: column;

    background: linear-gradient(180deg, #f0f6fc 0%, #ffffff 45%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 55%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(25, 118, 210, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 90%, rgba(25, 118, 210, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(25, 118, 210, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.badge {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 36px;
    border-radius: 50px;
    background: #1976d2;
    color: white;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.copyright {
    padding: 24px 16px;
    text-align: center;
    font-size: 14px;
    color: #1e3a5f;
}
