body {
    /* background: linear-gradient(180deg, #eef2ff 50%, #ffffff); */
    background: #F2F0EF;
    color: #171717;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding: 16px;
}

img.logo {
    width: 400px;
}

h1 {
    color: #DC5E21;
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    text-align: center;
    margin: 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.125;
    margin: 0;
}

.coming-soon {
    color: #DC5E21;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: multiglow 3s ease-in-out infinite alternate;
}

.center-body {
    margin-top: 16px;
    display: flex;
    column-count: 3;
    column-gap: 24px;
    align-items: center;
}

.vertical-cards {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.message-box {
    /* padding: 24px; */
    text-align: center;
    max-width: 500px;
}

.message-box p {
    margin-bottom: 16px;
}


/* Card Design*/
.card {
    display: flex;
    flex-direction: column;
    height: 240px;
    width: 180px;
    border: 2px solid #dddddd;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    flex-shrink: 0;
}

.card-top {
    background: #f9f5ff;
    /* light purple card background */
    height: 140px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top img {
    width: 50px;
    height: 50px;
}

.card-top h3 {
    color: #1c0029;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.125rem;
    margin: 0;
}

.card-bottom {
    background: #fff;
    padding: 12px;
    height: 100px;
    display: flex;
    align-items: flex-start;
}

.card-bottom p {
    font-size: 12px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Form */
input[type="email"] {
    width: calc(100% - 16px);
    /* Account for padding */
    padding: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    /* Include padding in width */
}

input[type="email"]:focus {
    border-color: #DC5E21;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

button {
    padding: 14px;
    background-color: #DC5E21;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.validation {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.validation.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.validation.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.validation.show {
    display: block;
}

/* Social Media Icons*/
.social-links {
    margin: -24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-links a {
    color: #ff7a00;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #CCCCCC;
    transform: scale(1.2);
}

@media (max-width: 480px) {
    body {
        justify-content: flex-start;
    }

    .message-title {
        font-weight: 700;
        font-size: 2rem;
    }

    .teaser {
        font-weight: 700;
        font-size: 1rem;
    }

    .coming-soon {
        font-size: 2.125rem;
    }

    img.logo {
        width: 300px;
    }

    .center-body {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .center-body>div {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .vertical-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .social-links {
        margin: 24px;
    }

    h1 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 8px;
    }

    h2 {
        font-size: 1.25rem;
    }
}

@keyframes multiglow {
    0% {
        color: #fff;
        text-shadow:
            0 0 8px #ff00de,
            0 0 16px #ff00de,
            0 0 30px #ff00de,
            0 0 40px #00fff9,
            0 0 70px #00fff9,
            0 0 80px #00fff9;
    }

    25% {
        color: #fff;
        text-shadow:
            0 0 8px #00fff9,
            0 0 16px #00fff9,
            0 0 30px #00fff9,
            0 0 40px #00ff66,
            0 0 70px #00ff66,
            0 0 80px #00ff66;
    }

    50% {
        color: #fff;
        text-shadow:
            0 0 8px #00ff66,
            0 0 16px #00ff66,
            0 0 30px #00ff66,
            0 0 40px #ffae00,
            0 0 70px #ffae00,
            0 0 80px #ffae00;
    }

    75% {
        color: #fff;
        text-shadow:
            0 0 8px #ffae00,
            0 0 16px #ffae00,
            0 0 30px #ffae00,
            0 0 40px #ff0077,
            0 0 70px #ff0077,
            0 0 80px #ff0077;
    }

    100% {
        color: #fff;
        text-shadow:
            0 0 8px #ff0077,
            0 0 16px #ff0077,
            0 0 30px #ff0077,
            0 0 40px #ff00de,
            0 0 70px #ff00de,
            0 0 80px #ff00de;
    }
}