/* ================================
   USONE Day Event Styles
   ================================ */

/* USONE Day Event Section */
.usone-day-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.usone-day-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.event-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    text-align: center;
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.event-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event-subtitle {
    font-size: 1.3rem;
    color: #E67E22;
    margin-bottom: 40px;
    font-weight: 500;
}

.event-details {
    margin-top: 40px;
}

.event-info-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
}

.event-info-item i {
    color: #667eea;
    font-size: 1.3rem;
}

.event-info-item.highlight {
    background: #fff3cd;
    border: 2px dashed #f39c12;
    border-radius: 10px;
    padding: 15px;
    font-weight: 700;
    color: #856404;
}

.event-info-item.highlight i {
    color: #f39c12;
}

.event-song {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.event-song h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.song-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.event-cta {
    margin-top: 40px;
}

.btn-event {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.event-tagline {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

/* USONE Day Application Section */
.usone-day-application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.usone-day-application-section .section-title {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-banner {
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-subtitle {
        font-size: 1rem;
    }
    
    .event-info-box {
        padding: 20px;
    }
    
    .event-info-item {
        font-size: 0.95rem;
    }
    
    .song-title {
        font-size: 1.4rem;
    }
    
    .btn-event {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .event-tagline {
        font-size: 1.1rem;
    }
}
