/* Sponsor Banner CSS */
.sponsor-banner {
    display: flex;
    align-items: center;
    height: 90px;
    background: linear-gradient(135deg, #0f2850 0%, #1a4380 100%);
    border: 2px solid #d4af37;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.banner-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    color: white;
}

.banner-content {
    flex-grow: 1;
}

.banner-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 1px;
}

.banner-title {
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0;
}

/* Credits badge */
.credits-badge {
    background-color: #d4af37;
    color: #0f2850;
    width: fit-content;
    padding: 4px 7px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.banner-button {
    /*background-color: #5F8B4C;*/
    background-color: #d4af37;
    position: relative;
    z-index: 10;
    padding: 8px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.banner-pattern {
  z-index: 1;
}

.banner-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.button-arrow {
    display: inline-block;
    margin-left: 5px;
}