body {
    margin: 0;
    padding: 0;
    background: #eae7e1; /* Brand beige */
    font-family: 'Metropolis', sans-serif;
    color: #414042; /* Dark grey */
}

.wrapper {
    max-width: 600px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.logo {
    width: 140px;
    height: auto;
}

.spider-logo {
    opacity: 0.9;
}

.align-logo {
    opacity: 1;
}

.arrow {
    font-size: 42px;
    color: #f15a22; /* Brand orange */
    font-weight: 600;
}

h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    color: #555;
}

.countdown-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
}

.spinner {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;

    border: 6px solid #ffffff;
    border-top-color: #f15a22;

    display: block;
    box-sizing: border-box;

    animation: spin 1s linear infinite;
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: 600;
    color: #414042;
    pointer-events: none;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.redirect-button {
    padding: 12px 26px;
    background: #f15a22;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}

.redirect-button:hover {
    background: #d94f1d;
}
