/* ─── HSE TOP 100 Premium Styles ─── */
/* .glass-panel и .spotlight-card:hover — в app.blade.php, не дублируем */

/* Silver shimmer for TOP 100 */
@keyframes silverShimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}
.hero-silver {
    background: linear-gradient(
        105deg,
        #c0c8d4 0%,
        #e8ecf1 20%,
        #ffffff 40%,
        #f0f4f8 45%,
        #c8cfd8 55%,
        #dde2e8 70%,
        #c0c8d4 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShimmer 6s ease-in-out infinite;
}
.hero-blue-shimmer {
    background: linear-gradient(90deg, #c4b896, #d4c8a8, #ece6d4, #ffffff, #ece6d4, #d4c8a8, #c4b896);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShimmer 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212,200,160,0.15));
}

/* Play button pulse */
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
}
.hero-play-pulse {
    animation: playPulse 2s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Continuous slow zoom — runs on ALL slides at all times, never resets.
   Each slide starts at a different animation-delay so they are mid-zoom
   when they fade in, creating a seamless parallax feel. */
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 18s ease-in-out infinite alternate;
    will-change: transform;
}
/* Stagger each slide so zoom position differs when it fades in */
.hero-slide:nth-child(1) .hero-slide-bg { animation-delay: 0s; }
.hero-slide:nth-child(2) .hero-slide-bg { animation-delay: -6s; }
.hero-slide:nth-child(3) .hero-slide-bg { animation-delay: -12s; }
.hero-slide:nth-child(4) .hero-slide-bg { animation-delay: -3s; }
.hero-slide:nth-child(5) .hero-slide-bg { animation-delay: -9s; }
.hero-slide:nth-child(6) .hero-slide-bg { animation-delay: -15s; }

/* Heavy dark tint — photos are background mood, not the focus */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, #0B0C15 0%, rgba(11,12,21,0.82) 30%, rgba(11,12,21,0.68) 55%, rgba(11,12,21,0.78) 100%),
        linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 38rem;
    margin-bottom: 2.5rem;
}

/* Scroll hint */
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* === SECTION DIVIDERS === */
.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    pointer-events: none;
}

/* === QUOTE SECTION === */
.quote-section {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #0f172a 50%, #0d1117 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.quote-mark {
    font-size: clamp(6rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(59,130,246,0.06);
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: Georgia, serif;
}

/* === VALUE CARDS === */
.value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(11,12,21,0.95));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.value-card:hover {
    border-color: rgba(59,130,246,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(59,130,246,0.08);
}
.value-card:hover::before { opacity: 0; }

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(59,130,246,0.05));
    border: 1px solid rgba(59,130,246,0.15);
    transition: all 0.4s;
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(59,130,246,0.1));
    box-shadow: 0 0 20px rgba(59,130,246,0.15);
}

.value-num {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.02);
}

/* === TIMELINE === */
.timeline-container { position: relative; }

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(59,130,246,0.3) 10%,
        rgba(59,130,246,0.3) 90%,
        transparent);
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .timeline-line {
        left: 1.5rem;
        transform: none;
    }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

@media (max-width: 767px) {
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
        padding-left: 3.5rem;
        gap: 0;
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #0B0C15;
    border: 2px solid #3b82f6;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s;
}
.timeline-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #3b82f6;
}
@media (max-width: 767px) {
    .timeline-dot {
        left: 1.5rem;
        transform: none;
    }
}

.timeline-card {
    flex: 1;
    max-width: calc(50% - 2.5rem);
    background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(11,12,21,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}
.timeline-card:hover {
    border-color: rgba(59,130,246,0.15);
    box-shadow: 0 0 30px rgba(59,130,246,0.06);
}
@media (max-width: 767px) {
    .timeline-card { max-width: 100%; }
}

.timeline-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* === JURY GRID === */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border-radius: 1rem;
    overflow: hidden;
}
@media(min-width:640px){.jury-grid{grid-template-columns:repeat(3,1fr) !important;}}
@media(min-width:768px){.jury-grid{grid-template-columns:repeat(5,1fr) !important;}}
@media(min-width:1024px){.jury-grid{grid-template-columns:repeat(6,1fr) !important;}}
@media(min-width:1280px){.jury-grid{grid-template-columns:repeat(7,1fr) !important;}}

.jury-cell {
    background: rgba(11,12,21,0.95);
    padding: 1.25rem 1rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.jury-cell:hover {
    background: rgba(37,99,235,0.03);
}
.jury-cell .jury-ava {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.08);
}
.jury-cell .jury-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.3;
}
.jury-cell .jury-title {
    color: #6b7280;
    font-size: 0.6875rem;
    line-height: 1.4;
}
.jury-cell .jury-industry {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.625rem;
    color: #60a5fa;
    margin-top: 2px;
}
.jury-cell .jury-industry i {
    font-size: 8px;
}

/* === ELIGIBILITY === */
.elig-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 2.5rem;
}
.elig-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.elig-yes { background: linear-gradient(135deg, rgba(22,101,52,0.08), rgba(11,12,21,0.95)); border: 1px solid rgba(34,197,94,0.12); }
.elig-yes::before { background: linear-gradient(to bottom, #22c55e, rgba(34,197,94,0.3)); }
.elig-no { background: linear-gradient(135deg, rgba(127,29,29,0.08), rgba(11,12,21,0.95)); border: 1px solid rgba(239,68,68,0.12); }
.elig-no::before { background: linear-gradient(to bottom, #ef4444, rgba(239,68,68,0.3)); }

/* === CTA SECTION === */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #030e28, #0f2d6b 40%, #2563eb);
    overflow: hidden;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}
.cta-orbit-1 { width: 300px; height: 300px; animation: orbitSpin 25s linear infinite; }
.cta-orbit-2 { width: 500px; height: 500px; animation: orbitSpin 40s linear infinite reverse; }
.cta-orbit-3 { width: 700px; height: 700px; animation: orbitSpin 55s linear infinite; }
.cta-orbit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.cta-orbit-dot-lg {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

/* === MISC === */
@keyframes sirenGlow {
    0%, 100% { opacity: 0.02; }
    50% { opacity: 0.04; }
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.7);
}

/* === WINNER CARDS === */
.winner-card {
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.3s;
}
.winner-card:hover {
    border-color: rgba(59,130,246,0.15);
    background: rgba(59,130,246,0.03);
}
.winner-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
}

/* === PRIZE CARDS === */
.prize-card {
    padding: 2rem;
    border-radius: 1.25rem;
    background: rgba(11, 12, 21, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: all 0.3s;
}
.prize-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}
.prize-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #64748b;
}
.prize-icon {
    width: 48px; height: 48px;
    border-radius: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.prize-gold { border-color: rgba(212,200,160,0.2); }
.prize-gold .prize-tier { color: #d4c8a0; }
.prize-gold .prize-icon { background: rgba(212,200,160,0.1); color: #d4c8a0; }
.prize-silver { border-color: rgba(192,210,235,0.18); }
.prize-silver .prize-tier { color: #c0d2eb; }
.prize-silver .prize-icon { background: rgba(192,210,235,0.1); color: #c0d2eb; }
.prize-bronze { border-color: rgba(59,130,246,0.15); }
.prize-bronze .prize-tier { color: #60a5fa; }
.prize-bronze .prize-icon { background: rgba(59,130,246,0.08); color: #60a5fa; }

/* Shimmer effects for prize titles and icons */
.shimmer-gold {
    background: linear-gradient(90deg, #b8a870, #d4c8a8, #ece6d4, #fdfbf4, #ece6d4, #d4c8a8, #b8a870);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShimmer 5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212,200,140,0.25));
}
.shimmer-silver {
    background: linear-gradient(105deg, #b0bac8, #d8e2ee, #f4f7fa, #ffffff, #dce6f0, #b8c4d4, #b0bac8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: silverShimmer 5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(180,210,240,0.2));
}
@keyframes bronzeGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(59,130,246,0.35)); }
    50%       { filter: drop-shadow(0 0 12px rgba(96,165,250,0.75)); }
}
.shimmer-bronze {
    animation: bronzeGlow 5s ease-in-out infinite;
}
.prize-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prize-list li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.prize-list li:last-child { border-bottom: none; }
.prize-list li::before {
    content: '\2605';
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 8px;
    color: currentColor;
    opacity: 0.5;
    transform: translateY(-50%);
}

/* Animated number counter effect */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section fade-in */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SIDEBAR === */
.sidebar-panel {
    background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(11,12,21,0.98));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    overflow: hidden;
}
.sidebar-panel-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Big stat number */
.big-stat {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
