/* =============================================
   LAYOUT — Hero, Canvas, Containers, Grid
   ============================================= */

/* --- Background layers --- */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140vw;
    height: 140vh;
    background: radial-gradient(ellipse, rgba(30, 60, 160, 0.25) 0%, rgba(10, 20, 60, 0.1) 55%, transparent 80%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.transition-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.transition-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 130, 255, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease;
}

/* --- Main wrapper --- */
.main-container {
    position: relative;
    z-index: 6;
    min-height: 100vh;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative accent lines */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(100, 160, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 80px rgba(100, 160, 255, 0.25);
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards, titleGlow 4s ease-in-out 1.5s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 40px rgba(100, 150, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 80px rgba(100, 150, 255, 0.5), 0 0 120px rgba(100, 150, 255, 0.2);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.4s forwards;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 2px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.5s forwards;
}

/* Hero stats row */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.6s forwards;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
}

.hero-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blue);
    animation: bounce 2.5s ease infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =============================================
   MARQUEE TICKER
   ============================================= */
.marquee-wrapper {
    width: 100%;
    background: rgba(100, 160, 255, 0.06);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 6;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 40s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.marquee-item span.accent {
    color: var(--blue);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

/* =============================================
   CONTENT CONTAINER & GRID
   ============================================= */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 48px 120px;
}

.section-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 160, 255, 0.3), rgba(100, 255, 180, 0.2), transparent);
    margin: 80px 0;
    position: relative;
}

.section-divider-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(100, 160, 255, 0.5);
}

.identity-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 420px;
}

.identity-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.identity-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(100, 160, 255, 0.08);
    border: 1px solid rgba(100, 160, 255, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    width: fit-content;
}

.identity-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #e8efff;
    margin: 0;
}

.identity-body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 440px;
}

.identity-clubs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
}

.club-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.club-bosco {
    color: #64a0ff;
    border-color: rgba(100, 160, 255, 0.4);
    background: rgba(100, 160, 255, 0.08);
}

.club-bosco:hover {
    background: rgba(100, 160, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 160, 255, 0.2);
}

.club-bluegrass {
    color: #64ffb4;
    border-color: rgba(100, 255, 180, 0.4);
    background: rgba(100, 255, 180, 0.08);
}

.club-bluegrass:hover {
    background: rgba(100, 255, 180, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 255, 180, 0.2);
}

.identity-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-orbit-scene {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin linear infinite;
}

.orbit-ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(100, 160, 255, 0.2);
    animation-duration: 8s;
}

.orbit-ring-2 {
    width: 270px;
    height: 270px;
    border-color: rgba(100, 255, 180, 0.12);
    animation-duration: 14s;
    animation-direction: reverse;
}

.orbit-ring-3 {
    width: 310px;
    height: 310px;
    border-color: rgba(192, 106, 255, 0.08);
    animation-duration: 22s;
}

@keyframes orbitSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.medal-center-stat {
    position: relative;
    z-index: 3;
    text-align: center;
    background: rgba(10, 15, 45, 0.8);
    border: 1px solid rgba(100, 160, 255, 0.3);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(100, 160, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.medal-center-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.medal-center-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 4px;
}

.orbit-medal {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.4rem;
    background: rgba(10, 15, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 14px 6px 8px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.orbit-medal span {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(220, 230, 255, 0.8);
}

.orbit-medal-gold {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: medalFloat1 5s ease-in-out infinite;
}

.orbit-medal-silver {
    bottom: 15px;
    right: 0px;
    animation: medalFloat2 6s ease-in-out infinite;
}

.orbit-medal-bronze {
    bottom: 15px;
    left: 0px;
    animation: medalFloat3 7s ease-in-out infinite;
}

@keyframes medalFloat1 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes medalFloat2 {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes medalFloat3 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

.rating-evolution-section {
    max-width: 900px;
    margin: 0 auto;
}

.rating-evo-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 2rem;
    text-align: center;
}

.rating-evo-bars {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.rating-bar-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-bar-weapon {
    font-weight: 700;
    font-size: 0.95rem;
}

.rating-bar-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.rating-bar-track {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: visible;
    display: flex;
    align-items: center;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 12px rgba(100, 200, 255, 0.3);
    position: relative;
}

.rating-bar-fill::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 0 8px rgba(100, 200, 255, 0.6);
}

.rating-bar-val {
    position: absolute;
    right: -52px;
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(220, 230, 255, 0.9);
    letter-spacing: 0.02em;
}

.results-cinema {
    max-width: 1200px;
    margin: 0 auto;
}

.results-cinema-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.results-cinema-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.results-cinema-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.results-stream {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.result-card {
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 18, 50, 0.6);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.result-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.result-card-inner {
    position: relative;
    z-index: 2;
}

.result-medal-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.08;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.result-card:hover .result-medal-glow {
    opacity: 0.18;
}

.result-glow-gold {
    background: radial-gradient(circle at 50% 0%, #ffd700, transparent 70%);
}

.result-glow-silver {
    background: radial-gradient(circle at 50% 0%, #c0c0c0, transparent 70%);
}

.result-glow-bronze {
    background: radial-gradient(circle at 50% 0%, #cd7f32, transparent 70%);
}

.result-gold {
    border-color: rgba(255, 215, 0, 0.25);
}

.result-silver {
    border-color: rgba(192, 192, 192, 0.2);
}

.result-bronze {
    border-color: rgba(205, 127, 50, 0.25);
}

.result-place {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #e8efff;
}

.result-gold .result-place {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.result-silver .result-place {
    color: var(--silver);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

.result-bronze .result-place {
    color: var(--bronze);
    text-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.result-of {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.5;
    margin-left: 2px;
}

.result-event {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(220, 230, 255, 0.9);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.result-tournament {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.result-date {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.dual-panel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.dual-panel {
    background: rgba(10, 16, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 2.5rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dual-panel:hover {
    border-color: rgba(100, 160, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.panel-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.6rem;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e8efff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.floating-project-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fpc {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(100, 160, 255, 0.15);
    border-radius: 16px;
    padding: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.fpc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(100, 160, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fpc:hover::before {
    opacity: 1;
}

.fpc:hover {
    transform: translateY(-4px) translateX(4px);
    border-color: rgba(100, 160, 255, 0.35);
    box-shadow: 0 12px 30px rgba(100, 160, 255, 0.12);
}

.fpc-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.fpc-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.fpc-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #7ba3ff;
    line-height: 1.2;
}

.fpc-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.fpc-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 0.7rem;
}

.fpc-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fpc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.fpc-link-npm {
    color: #cb3837;
}

.fpc-link-gh {
    color: #7ba3ff;
}

.fpc-link-nm {
    color: #64ffb4;
}

.fpc-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.ai-orbit-container {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-orbit-center {
    position: absolute;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 160, 255, 0.2), rgba(100, 255, 180, 0.15));
    border: 1px solid rgba(100, 160, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(100, 160, 255, 0.2);
    animation: aiCoreBreath 4s ease-in-out infinite;
}

@keyframes aiCoreBreath {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(100, 160, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(100, 160, 255, 0.4), 0 0 60px rgba(100, 255, 180, 0.15);
    }
}

.ai-orbit-core {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7ba3ff;
}

.ai-orbit-items {
    position: absolute;
    inset: 0;
    animation: orbitContainerSpin 20s linear infinite;
}

.ai-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c);
    background: rgba(10, 15, 45, 0.9);
    border: 1px solid var(--c);
    border-color: color-mix(in srgb, var(--c) 40%, transparent);
    border-radius: 100px;
    padding: 5px 14px;
    white-space: nowrap;
    transform:
        translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateX(105px) rotate(calc(var(--i) * -60deg));
    animation: counterSpin 20s linear infinite;
    box-shadow: 0 0 10px color-mix(in srgb, var(--c) 20%, transparent);
}

@keyframes orbitContainerSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes counterSpin {
    to {
        transform:
            translate(-50%, -50%) rotate(calc(var(--i) * 60deg + 360deg)) translateX(105px) rotate(calc(var(--i) * -60deg - 360deg));
    }
}

.ai-body {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

.hobbies-bubble-section {
    text-align: center;
}

.hobbies-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 2.5rem;
}

.hobbies-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hobby-bubble {
    background: rgba(12, 18, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.hobby-bubble:hover {
    transform: scale(1.18) translateY(-8px);
    box-shadow: 0 15px 40px rgba(100, 160, 255, 0.2);
    border-color: rgba(100, 160, 255, 0.4);
}

.hb-1 {
    width: 120px;
    height: 120px;
    animation: hbFloat 6s ease-in-out infinite;
}

.hb-2 {
    width: 110px;
    height: 110px;
    animation: hbFloat 7s ease-in-out 0.5s infinite;
}

.hb-3 {
    width: 100px;
    height: 100px;
    animation: hbFloat 5.5s ease-in-out 1s infinite;
}

.hb-4 {
    width: 115px;
    height: 115px;
    animation: hbFloat 8s ease-in-out 0.3s infinite;
}

.hb-5 {
    width: 95px;
    height: 95px;
    animation: hbFloat 6.5s ease-in-out 0.8s infinite;
}

.hb-6 {
    width: 108px;
    height: 108px;
    animation: hbFloat 7.5s ease-in-out 0.2s infinite;
}

@keyframes hbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hb-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.hb-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(220, 230, 255, 0.6);
    text-transform: uppercase;
    text-align: center;
}

.connect-section {
    position: relative;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.connect-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(100, 160, 255, 0.06);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.connect-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.connect-favicon-wrap {
    display: block;
    margin-bottom: 0.5rem;
}

.connect-favicon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(100, 160, 255, 0.5));
    animation: connectFaviconPulse 4s ease-in-out infinite;
}

@keyframes connectFaviconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(100, 160, 255, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(100, 255, 180, 0.6));
        transform: scale(1.08);
    }
}

.connect-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #e8efff;
    margin: 0;
}

.connect-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0;
}

.connect-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0.5rem 0;
}

.connect-pill {
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
}

.connect-pill:hover {
    transform: translateY(-2px) scale(1.05);
}

.cp-gold {
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.06);
}

.cp-silver {
    color: var(--silver);
    border-color: rgba(192, 192, 192, 0.35);
    background: rgba(192, 192, 192, 0.06);
}

.cp-bronze {
    color: var(--bronze);
    border-color: rgba(205, 127, 50, 0.35);
    background: rgba(205, 127, 50, 0.06);
}

.cp-blue {
    color: var(--blue);
    border-color: rgba(100, 160, 255, 0.35);
    background: rgba(100, 160, 255, 0.06);
}

.connect-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.8rem;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(220, 230, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cs-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cs-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-btn:hover::before {
    opacity: 1;
}

.cs-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cs-github:hover {
    color: #64ffb4;
    border-color: rgba(100, 255, 180, 0.5);
    box-shadow: 0 12px 30px rgba(100, 255, 180, 0.15);
}

.cs-instagram:hover {
    color: #c06aff;
    border-color: rgba(192, 106, 255, 0.5);
    box-shadow: 0 12px 30px rgba(192, 106, 255, 0.15);
}

.cs-tracker:hover {
    color: #ff9a3c;
    border-color: rgba(255, 154, 60, 0.5);
    box-shadow: 0 12px 30px rgba(255, 154, 60, 0.15);
}

@media (max-width: 1100px) {
    .results-stream {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .content-container {
        padding: 60px 28px 80px;
    }

    .identity-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .identity-body {
        max-width: 100%;
    }

    .identity-clubs {
        justify-content: center;
    }

    .identity-right {
        order: -1;
    }

    .medal-orbit-scene {
        width: 260px;
        height: 260px;
    }

    .dual-panel-row {
        grid-template-columns: 1fr;
    }

    .rating-bar-row {
        grid-template-columns: 120px 1fr;
    }

    .section-divider-line {
        margin: 50px 0;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 40px 18px 60px;
    }

    .results-stream {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-title {
        font-size: 2.5rem;
    }

    .hero-stat-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 30px 14px 50px;
    }

    .results-stream {
        grid-template-columns: 1fr;
    }

    .connect-socials {
        flex-direction: column;
        align-items: stretch;
    }

    .cs-btn {
        justify-content: center;
    }
}