@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #eef1f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.thank-you-banner {
    width: 390px;
    height: 60px;
    background: linear-gradient(90deg, #7f57f1 0%, #00d9f4 100%);
    color: white;
    border-radius: 12px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 2px 5px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    position: relative;
    z-index: 1;
}

.thank-you-banner:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.09);
}

.banner-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    gap: 0.4em;
}

.banner-content .text-segment {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
}

.banner-content .number-group {
    display: inline-flex;
    align-items: baseline;
    gap: 0.1em;
}

.banner-content #animated-number {
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 1ch;
    display: inline-block;
    line-height: 1;
}

.banner-content .plus-sign {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.banner-content .gtrans-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
} 