* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8ecf0;
    padding: 20px;
}

/* Horizontal Box */
.horizontal-box {
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header Bar - Highlighted */
.header-bar {
    background: linear-gradient(238deg, #cc3029 0%, #006aac 100%);
    padding: 20px 40px;
    text-align: center;
}

.bank-name {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Content */
.box-content {
    background: #ffffff;
    padding: 40px 50px;
    text-align: center;
}

/* Important Information Badge */
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #faf7f7;
    border: 1px solid #ff9592;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-badge::before {
    content: "⚠";
    font-size: 1.2rem;
}

.info-badge span {
    color: #ff211d;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Message */
.message {
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* New URL - Interactive */
.new-url {
    text-decoration: underline;
    display: inline-block;
    color: #3b4044;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Notice */
.notice {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Loader Section */
.loader-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid #e0e0e0;
    border-top-color: #0068aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.timer-text {
    color: #4a4a4a;
    font-size: 0.9rem;
}

#countdown {
    color: #464646;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

#countdown.pulse {
    animation: countPulse 0.5s ease;
}

@keyframes countPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        color: #2a3794;
    }

    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    color: #888888;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    .header-bar {
        padding: 15px 20px;
    }

    .bank-name {
        font-size: 1.2rem;
    }

    .box-content {
        padding: 30px 25px;
    }

    .info-badge {
        padding: 10px 20px;
    }

    .info-badge span {
        font-size: 1rem;
    }

    .new-url {
        font-size: 1rem;
    }

    .message,
    .notice {
        font-size: 0.9rem;
    }
}