:root {
    --nouram-red: #C70039;
    --nouram-yellow: #FFC300;
    --nouram-white: #ffffff;
}

.nouram-top-banner {
    margin: 10px 12px 0;
    animation: nouramBannerFadeIn 0.35s ease-out;
}

.nouram-top-banner__inner {
    background: linear-gradient(120deg, var(--nouram-red), var(--nouram-yellow), var(--nouram-red));
    background-size: 200% 200%;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: nouramGradientFlow 8s ease infinite;
}

.nouram-top-banner__content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    flex-wrap: wrap;
}

.nouram-top-banner__gift {
    font-size: 20px;
    animation: nouramGiftFloat 2.6s ease-in-out infinite;
}

.nouram-top-banner__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nouram-top-banner__title,
.nouram-top-banner__subtitle {
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

.nouram-top-banner__title {
    font-size: 14px;
    font-weight: 700;
}

.nouram-top-banner__subtitle {
    font-size: 12px;
    opacity: 0.92;
}

.nouram-top-banner__badge {
    background: rgba(255,255,255,0.18);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    animation: nouramSoftPulse 2.8s ease-in-out infinite;
}

.nouram-google-official-btn--banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 16px 10px 12px;
    background: #ffffff;
    color: #1f1f1f;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #dadce0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: all 0.25s ease;
}

.nouram-google-official-btn--banner:hover {
    transform: translateY(-1px);
    background: #fcfcfc;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.nouram-google-official-btn__icon-wrap {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nouram-google-official-btn__icon {
    width: 18px;
    height: 18px;
    display: block;
}

@keyframes nouramBannerFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nouramGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes nouramGiftFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes nouramSoftPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@media (max-width: 768px) {
    .nouram-top-banner {
        margin: 10px 10px 0;
    }

    .nouram-google-official-btn--banner {
        width: 100%;
    }
}