.gnsbanner {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gnsbanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gnsbanner .accent-bar {
    width: 6px;
    background: linear-gradient(180deg, #4a90e2 0%, #a855f7 50%, #ec4899 100%);
    position: relative;
}

.gnsbanner .accent-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

.gnsbanner .content {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.gnsbanner .main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gnsbanner .brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gnsbanner .logo {
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    position: relative;
}

.gnsbanner .logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #a855f7, transparent);
    overflow: hidden;
}

.gnsbanner .logo::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0%;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    animation: logo-glitter 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes logo-glitter {
    0% {
        left: 0%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 80%;
        opacity: 0;
    }
}

.gnsbanner .product-button {
    background: linear-gradient(135deg, #4a90e2, #a855f7);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gnsbanner .product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.gnsbanner .product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.6);
    color: white;
    text-decoration: none;
}

.gnsbanner .product-button:hover::before {
    left: 100%;
}

.gnsbanner .offer-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gnsbanner .cashback-amount {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4a90e2, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.gnsbanner .cta-button {
    background: linear-gradient(135deg, #4a90e2, #a855f7);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.gnsbanner .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.gnsbanner .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6);
    color: white;
    text-decoration: none;
}

.gnsbanner .cta-button:hover::before {
    left: 100%;
}

.gnsbanner .details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

.gnsbanner .period {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 10px;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.gnsbanner .urgency {
    color: #ec4899;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gnsbanner .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ec4899;
    animation: urgent-pulse 1.5s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(236, 72, 153, 0);
    }
}

.gnsbanner .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gnsbanner .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1), transparent);
    animation: float 8s ease-in-out infinite;
}

.gnsbanner .shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: -20px;
    right: 100px;
    animation-delay: 0s;
}

.gnsbanner .shape:nth-child(2) {
    width: 40px;
    height: 40px;
    bottom: -10px;
    right: 200px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(120deg); 
    }
    66% { 
        transform: translateY(10px) rotate(240deg); 
    }
}

.gnsbanner .glow-effect {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    filter: blur(20px);
    transform: translateY(-50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}