/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top left, #0f1c2e, #050a14);
    color: #e8eefc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CONTAINER */
.container {
    max-width: 900px;
    width: 100%;
    padding: 20px;
}

/* LOGO */
.logo-wrapper {
    margin-bottom: 20px;
}

.logo-img {
    width: auto;
    max-width: 100%;
    max-height: 100vh;  /* Controls vertical size */
    height: auto;
}

/* CONTENT */
.content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.content p {
    font-size: 15px;
    line-height: 1.5;
    color: #b9c6e3;
    margin-bottom: 18px;
}

.subtext {
    font-size: 13px;
    color: #8ea0c8;
}

/* DIVIDER */
.divider {
    width: 60px;
    height: 2px;
    background: #2ca24c;
    margin: 18px auto;
}

/* BUTTON */
.button {
    display: inline-block;
    padding: 10px 24px;
    margin-top: 10px;
    background: linear-gradient(135deg, #2ca24c, #1d7a35);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 162, 76, 0.3);
}

/* FOOTER */
footer {
    margin-top: 25px;
    font-size: 12px;
    color: #6e7ea3;
}
