/* Increased the site name size to a balanced size */
.logo .site-name {
    font-size: 2.5rem !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .logo .site-name {
        font-size: 1.8rem !important;
    }
    
    .logo img {
        height: 60px !important;
    }
    
    header {
        padding: 15px 20px !important;
    }
    
    /* Mobile Announcement Bar Improvements */
    .announcement-bar {
        font-size: 0.8rem !important;
        padding: 0.5rem 3rem 0.5rem 1rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .logo .site-name {
        font-size: 1.5rem !important;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    header {
        padding: 10px 15px !important;
    }
    
    /* Small Mobile Announcement Bar */
    .announcement-bar {
        font-size: 0.7rem !important;
        padding: 0.4rem 2.5rem 0.4rem 0.8rem !important;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Enhanced Flash Event Banner */
.flash-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    z-index: 4000;
    background: linear-gradient(135deg, #1a3a6d 0%, #2c5aa0 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 16px;
    width: min(96vw, 1200px);
    max-height: 85vh;
    min-height: 450px;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.flash-banner.show {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
    animation: flashGlow 2s infinite alternate;
}

.flash-content-enhanced {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    min-height: 450px;
    overflow: visible;
}

.flash-image-panel {
    position: relative;
    background: rgba(0,0,0,0.2);
    min-height: 450px;
    overflow: hidden;
}

.flash-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    min-height: auto;
}

.flash-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: #1a3a6d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flash-details-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a3a6d 0%, #2c5aa0 100%);
    overflow-y: auto;
}

.flash-header {
    margin-bottom: 1.5rem;
}

.flash-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flash-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

.flash-event-info {
    margin-bottom: 1.5rem;
}

.flash-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.4;
}

.flash-info-row i {
    width: 20px;
    margin-right: 12px;
    color: #ffd700;
    font-size: 1.1rem;
}

.flash-hosts {
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    opacity: 0.9;
}

.flash-hosts i {
    margin-right: 8px;
    color: #ffd700;
}

.flash-description {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.95;
}

.flash-description p {
    margin: 0;
    font-size: 1rem;
}

.flash-actions-enhanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.flash-btn {
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 120px;
    justify-content: center;
}

.flash-btn.primary {
    background: #ffd700;
    color: #1a3a6d;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.flash-btn.primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.flash-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.flash-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.flash-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(0,0,0,0.5);
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.flash-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flash-banner { 
        width: 95vw; 
        max-height: 90vh; 
    }
    
    .flash-content-enhanced {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .flash-image-panel {
        min-height: 250px;
        max-height: 250px;
        order: 1;
    }
    
    .flash-main-image {
        min-height: 250px;
        max-height: 250px;
    }
    
    .flash-details-panel {
        padding: 1.5rem;
        order: 2;
    }
    
    .flash-title {
        font-size: 1.8rem;
    }
    
    .flash-actions-enhanced {
        flex-direction: column;
    }
    
    .flash-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .flash-details-panel {
        padding: 1.2rem;
    }
    
    .flash-title {
        font-size: 1.6rem;
    }
    
    .flash-info-row {
        font-size: 0.9rem;
    }
    
    .flash-description p {
        font-size: 0.9rem;
    }
}

@keyframes flashGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,215,0,0.6); }
}
