/* Kickoff Topbar Banner Styles */
.kickoff-topbar {
    background: white;
    color: #F43330;
    padding: 12px 16px;
    text-align: center;
    border-bottom: 2px solid rgba(244, 51, 48, 0.1);
    position: relative;
    z-index: 60;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: "Montserrat", Sans-serif;
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kickoff-topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kickoff-topbar-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 0.875rem;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .kickoff-topbar-content {
        font-size: 1rem;
    }
}

.kickoff-topbar-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: bounceSlow 2s infinite;
}

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.kickoff-topbar-icon svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.kickoff-topbar-text {
    display: flex;
    align-items: center;
}

.kickoff-topbar-text span {
    color: #F43330;
}

.kickoff-topbar-close {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 4px !important;
    color: #94a3b8 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: inherit !important;
    line-height: 1 !important;
    text-decoration: none !important;
    outline: none !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
}

.kickoff-topbar-close:hover {
    color: #1E1E1E !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.kickoff-topbar-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

.kickoff-topbar-close svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    fill: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide banner when closed */
.kickoff-topbar.kickoff-topbar-hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .kickoff-topbar {
        padding: 10px 12px;
    }
    
    .kickoff-topbar-content {
        font-size: 0.8125rem;
        gap: 6px;
    }
    
    .kickoff-topbar-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .kickoff-topbar-close {
        right: 12px !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }
    
    .kickoff-topbar-close svg {
        width: 18px !important;
        height: 18px !important;
    }
}

