.container-events {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Featured Events Widget Styles */
.featured-events-section {
    margin: 0;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.featured-events-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Event Card */
.featured-event-card {
    width: 100%;
    height: 700px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-event-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Background Image with Overlay */
.featured-event-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 63, 103, 0.20) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(38, 38, 38, 0.9) 100%
    );
    z-index: 1;
}

/* Animated Particles Effect */
.featured-event-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.featured-event-particles::before,
.featured-event-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.featured-event-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 
        100px 200px 0 -2px rgba(255, 255, 255, 0.3),
        200px 100px 0 -1px var(--primary-color),
        300px 300px 0 -2px rgba(255, 255, 255, 0.2),
        400px 50px 0 -1px var(--primary-color),
        500px 250px 0 -2px rgba(255, 255, 255, 0.4);
}

.featured-event-particles::after {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    box-shadow: 
        -100px -200px 0 -2px rgba(255, 255, 255, 0.2),
        -200px -100px 0 -1px var(--primary-color),
        -300px -300px 0 -2px rgba(255, 255, 255, 0.3),
        -400px -50px 0 -1px var(--primary-color),
        -500px -250px 0 -2px rgba(255, 255, 255, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.featured-event-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: white;
}

/* Federation Branding */
.featured-event-branding {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.federation-title {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.3), rgba(0, 0, 0, 0.2));
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInSlideDown 1s ease-out 0.8s both;
}

.website-notice {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInSlideLeft 1s ease-out 1s both;
}

@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Section - Title and Age */
.featured-event-header {
    flex: 0 0 auto;
    text-align: center;
    animation: slideInFromTop 1s ease-out 0.3s both;
}

.featured-event-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.2), rgba(0, 0, 0, 0.3));
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes slideInFromTop {
    0% { 
        opacity: 0; 
        transform: translateY(-50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes glow {
    0% { 
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    100% { 
        box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
    }
}

.featured-event-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 25px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    color: white;
    animation: slideInFromLeft 1s ease-out 0.5s both;
}

.featured-event-age {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    animation: slideInFromRight 1s ease-out 0.7s both;
}

@keyframes slideInFromLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInFromRight {
    0% { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Countdown Timer */
.featured-event-countdown {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.2), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: countdownPulse 2s ease-in-out infinite;
}

.countdown-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    position: relative;
}

.countdown-separator {
    display: none;
}

.countdown-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.3), rgba(0, 0, 0, 0.4));
    border-radius: 12px;
    width: 60px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: numberPulse 1s ease-in-out infinite;
}

.countdown-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes countdownPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

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

.countdown-finished {
    font-size: 24px;
    font-weight: 600;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    padding: 15px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Footer Section - Location and Date */
.featured-event-footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.featured-event-info {
    flex: 1;
    text-align: left;
}

/* Location Block */
.featured-event-location {
    margin-bottom: 20px;
    animation: slideInFromBottom 1s ease-out 1.2s both;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-event-city {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 0;
}

.featured-event-city svg {
    color: var(--text-white);
    filter: drop-shadow(0 0 8px var(--text-white));
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.city-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.featured-event-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin-left: 0;
}

.featured-event-address svg {
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.9;
}

.street-address {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Date Block */
.featured-event-date-block {
    animation: slideInFromBottom 1s ease-out 1.4s both;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}

.featured-event-date {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    border: none;
    margin: 0;
}

.featured-event-date svg {
    color: var(--text-white);
    filter: drop-shadow(0 0 8px var(--text-white));
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.date-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-main {
    font-size: 26px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.date-year {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

@keyframes iconGlow {
    0% { 
        filter: drop-shadow(0 0 8px var(--primary-color));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 15px var(--primary-color));
        transform: scale(1.05);
    }
}

@keyframes slideInFromBottom {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.featured-event-link {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(26, 63, 103, 0.25), rgba(0, 0, 0, 0.4));
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInFromBottom 1s ease-out 1.6s both;
}

.featured-event-link::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 ease;
}

.featured-event-link:hover::before {
    left: 100%;
}

.featured-event-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(26, 63, 103, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.featured-event-link span {
    position: relative;
    z-index: 2;
}

.featured-event-link svg {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.featured-event-link:hover svg {
    transform: translateX(3px);
}

/* Loading States */
.featured-events-loading,
.featured-events-empty,
.featured-events-error {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.featured-events-empty {
    font-style: italic;
}

.featured-events-error {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-event-card {
        height: 100vh;
        min-height: 600px;
        margin: 0;
        border-radius: 0;
    }
    
    .featured-event-content {
        padding: 15px;
        justify-content: flex-start;
        gap: 20px;
    }
    
    /* Mobile branding */
    .federation-title {
        top: 10px;
        left: 15px;
        font-size: 11px;
        padding: 5px 10px;
        letter-spacing: 1px;
        border-radius: 15px;
    }
    
    .website-notice {
        top: 10px;
        right: 15px;
        font-size: 9px;
        padding: 3px 8px;
        letter-spacing: 0.5px;
        border-radius: 12px;
    }
    
    /* Header adaptations */
    .featured-event-header {
        margin-top: 35px;
        animation-delay: 0.2s;
        text-align: center;
    }
    
    .featured-event-badge {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .featured-event-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .featured-event-age {
        font-size: 15px;
        padding: 5px 14px;
    }
    
    /* Compact mobile countdown */
    .featured-event-countdown {
        margin: 15px 0;
        flex: 0 0 auto;
    }
    
    .countdown-timer {
        gap: 8px;
        padding: 15px 20px;
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .countdown-row {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 50px;
        flex: none;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-number {
        font-size: 20px;
        width: 45px;
        min-height: 32px;
        margin-bottom: 4px;
    }
    
    .countdown-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    /* Compact footer mobile layout */
    .featured-event-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding-top: 15px;
    }
    
    .featured-event-info {
        text-align: center;
        width: 100%;
    }
    
    .featured-event-location {
        margin-bottom: 12px;
        padding: 15px;
    }
    
    .featured-event-address {
        justify-content: center;
        margin-left: 0;
        padding: 6px 0;
    }
    
    .street-address {
        font-size: 13px;
        text-align: center;
    }
    
    .featured-event-date-block {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 15px;
        margin-top: 8px;
    }
    
    .featured-event-date {
        justify-content: center;
        gap: 10px;
        padding: 0;
        border: none;
        margin: 0;
        width: 100%;
        max-width: 200px;
    }
    
    .date-main {
        font-size: 18px;
    }
    
    .date-year {
        font-size: 12px;
    }
    
    .featured-event-link {
        padding: 14px 28px;
        font-size: 15px;
        width: 180px;
        justify-content: center;
    }
    
    /* Disable heavy animations on mobile */
    .featured-event-particles::before,
    .featured-event-particles::after {
        display: none;
    }
    
    .countdown-timer {
        animation: none;
    }
    
    .countdown-number {
        animation: none;
    }
}

@media (max-width: 480px) {
    .featured-event-card {
        height: 100vh;
        min-height: 500px;
    }
    
    .featured-event-content {
        padding: 12px;
        gap: 15px;
    }
    
    /* Extra small mobile branding */
    .federation-title {
        top: 8px;
        left: 12px;
        font-size: 10px;
        padding: 4px 8px;
        letter-spacing: 0.5px;
    }
    
    .website-notice {
        top: 8px;
        right: 12px;
        font-size: 8px;
        padding: 2px 6px;
    }
    
    /* Header for small screens */
    .featured-event-header {
        margin-top: 30px;
    }
    
    .featured-event-badge {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .featured-event-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .featured-event-age {
        font-size: 13px;
        padding: 4px 12px;
    }
    
    /* Ultra compact countdown for small screens */
    .featured-event-countdown {
        margin: 12px 0;
    }
    
    .countdown-timer {
        gap: 6px;
        padding: 12px 15px;
        max-width: 220px;
    }
    
    .countdown-row {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 18px;
        width: 38px;
        min-height: 28px;
        margin-bottom: 3px;
    }
    
    .countdown-label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    /* Ultra compact footer */
    .featured-event-footer {
        gap: 12px;
        padding-top: 12px;
    }
    
    .featured-event-location {
        margin-bottom: 8px;
        padding: 12px;
    }
    
    .featured-event-address {
        padding: 4px 0;
    }
    
    .street-address {
        font-size: 11px;
    }
    
    .featured-event-date-block {
        padding: 12px;
    }
    
    .featured-event-date {
        gap: 8px;
        padding: 0;
        max-width: 180px;
    }
    
    .featured-event-date svg {
        width: 14px;
        height: 14px;
    }
    
    .date-main {
        font-size: 16px;
    }
    
    .date-year {
        font-size: 11px;
    }
    
    .featured-event-link {
        padding: 12px 24px;
        font-size: 13px;
        width: 160px;
    }
    
    .featured-event-link svg {
        width: 12px;
        height: 12px;
    }
} 

/* --- FJU Event Section (афиша) --- */

/* Контейнер и фон */
.fju-event-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: url('assets/fju-logo.jpg') center/cover;
    overflow: hidden;
}
.fju-event-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.6));
    z-index: 1;
}
.fju-event-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 244, 119, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: fju-morphing 20s ease-in-out infinite;
}

@keyframes fju-morphing {
    0%, 100% { opacity: 0.3; filter: blur(0px); }
    50% { opacity: 0.6; filter: blur(2px); }
}

/* Заголовки */
.fju-event-title {
    position: relative;
    z-index: 3;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 8px 32px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #fff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fju-titleGlow 3s ease-in-out infinite alternate;
}
@keyframes fju-titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.5)); }
}
.fju-event-subtitle {
    position: relative;
    z-index: 3;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-align: center;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
    letter-spacing: 0.05em;
}

/* Контент и сетка */
.fju-event-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Детали события */
.fju-event-details {
    animation: fju-slideInLeft 1.2s ease-out;
}
.fju-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
    overflow: hidden;
}
.fju-detail-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}
.fju-detail-item:hover::before { left: 100%; }
.fju-detail-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.25);
}
.fju-detail-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.fju-detail-item:hover .fju-detail-icon {
    background: rgba(255,255,255,0.2);
    transform: rotate(5deg) scale(1.1);
}
.fju-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.fju-detail-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.5;
}
.fju-age-category {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.fju-age-category:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Таймер */
.fju-event-timer {
    text-align: center;
    animation: fju-slideInRight 1.2s ease-out;
}
.fju-timer-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
    position: relative;
}
.fju-timer-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}
.fju-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.fju-countdown-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    padding: 2rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
    position: relative;
    overflow: hidden;
}
.fju-countdown-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}
.fju-countdown-item:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}
.fju-countdown-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
    background: linear-gradient(135deg, #fff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fju-countdown-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
}

/* Кнопка */
.fju-event-button {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.fju-event-button::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; width: 0; height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.fju-event-button:hover::before {
    width: 300px; height: 300px;
}
.fju-event-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.4);
}
.fju-event-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Декоративные элементы */
.fju-event-floating-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
}
.fju-event-floating-element {
    position: absolute;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: fju-float 12s ease-in-out infinite;
}
.fju-event-floating-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.fju-event-floating-element:nth-child(2) { top: 70%; right: 15%; animation-delay: 4s; }
.fju-event-floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 8s; }
.fju-event-floating-element:nth-child(4) { top: 40%; right: 25%; animation-delay: 2s; }
.fju-event-floating-element:nth-child(5) { top: 60%; left: 60%; animation-delay: 6s; }
@keyframes fju-float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.3; }
    33% { transform: translateY(-40px) rotate(120deg) scale(1.1); opacity: 0.6; }
    66% { transform: translateY(-20px) rotate(240deg) scale(0.9); opacity: 0.4; }
}

/* Анимации появления */
@keyframes fju-slideInLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fju-slideInRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

/* SVG-иконки */
.fju-icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Адаптив */
@media (max-width: 768px) {
    .fju-event-content { grid-template-columns: 1fr; gap: 3rem; }
    .fju-countdown { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .fju-countdown-item { padding: 1.5rem 0.5rem; }
    .fju-event-section { padding: 1rem; }
    .fju-detail-item { padding: 1rem; }
    .fju-detail-icon { width: 50px; height: 50px; }
    .fju-event-floating-element { width: 60px; height: 60px; }
} 

/* LIVE STATUS */
.live-status {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}
.live-indicator {
    width: 14px;
    height: 14px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #ff4757, 0 0 20px #ff4757;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.live-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff4757;
    text-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* LIVE BUTTON */
.fju-event-button.live-button {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.4);
    color: #fff;
    margin-left: 1rem;
}
.fju-event-button.live-button:hover {
    background: rgba(255, 71, 87, 0.3);
    border-color: rgba(255, 71, 87, 0.6);
}

/* EVENT STATUS */
.event-status {
    text-align: center;
    animation: slideInRight 1.2s ease-out;
}

.status-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    position: relative;
}

.status-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.current-status {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.current-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.8), transparent);
}

.status-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 16px;
    height: 16px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.status-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.status-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.status-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    padding: 2rem 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.status-card:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.status-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}