*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Cinzel', 'Outfit', Georgia, serif;
    user-select:none;
}

body{
    background:#020408;
    color:#e0f2fe;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    min-height:100vh;
    text-align:center;
    padding:60px 16px 90px;
    overflow-x:hidden;
}

#bgCanvas{
    position:fixed;
    inset:0;
    z-index:-2;
    pointer-events:none;
}

.page-bg{
    position:fixed;
    inset:-40px;
    z-index:-3;
    background-size:cover;
    background-position:center;
    filter:blur(0px);
    transition:filter 0.4s ease, background-image 0.6s ease;
    transform:scale(1.04);
}

.page-bg-overlay{
    position:fixed;
    inset:0;
    z-index:-2;
    background:radial-gradient(ellipse at center, rgba(2, 6, 18, 0.45) 0%, rgba(1, 3, 8, 0.94) 100%);
    pointer-events:none;
}

.container{
    max-width:760px;
    width:100%;
    opacity:0;
    transform:translateY(20px);
    transition:opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    z-index:1;
}

.container.visible{
    opacity:1;
    transform:translateY(0);
}

.tabnav{
    display:inline-flex;
    justify-content:center;
    gap:8px;
    margin-bottom:48px;
    padding:6px 12px;
    background:rgba(6, 12, 24, 0.75);
    border:1px solid rgba(56, 189, 248, 0.25);
    border-radius:999px;
    backdrop-filter:blur(20px);
    box-shadow:0 10px 40px rgba(0,0,0,0.7), 0 0 20px rgba(56, 189, 248, 0.15), inset 0 0 15px rgba(56, 189, 248, 0.08);
    flex-wrap:wrap;
}

.tabnav button{
    font-family: 'Cinzel', serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
    color:#94a3b8;
    background:transparent;
    border:none;
    padding:10px 24px;
    border-radius:999px;
    cursor:pointer;
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tabnav button:hover{
    color:#e0f2fe;
    background:rgba(56, 189, 248, 0.12);
    text-shadow:0 0 12px rgba(56, 189, 248, 0.6);
}

.tabnav button.active{
    background:linear-gradient(180deg, #ffffff 0%, #bae6fd 30%, #38bdf8 70%, #0284c7 100%);
    color:#020617;
    font-weight:800;
    box-shadow:0 0 25px rgba(56, 189, 248, 0.6), 0 0 50px rgba(56, 189, 248, 0.25), 0 4px 15px rgba(0,0,0,0.6);
}

.page{
    display:none;
}

.page.active{
    display:block;
    animation:icyFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes icyFadeIn{
    from{ opacity:0; transform:translateY(16px) scale(0.97); }
    to{ opacity:1; transform:translateY(0) scale(1); }
}

.avatar-wrapper{
    position:relative;
    display:inline-block;
    margin-bottom:16px;
}

.avatar-wrapper::after{
    content:'';
    position:absolute;
    inset:-7px;
    border-radius:50%;
    background:linear-gradient(135deg, rgba(56,189,248,0.9), rgba(224,242,254,0.4), rgba(56,189,248,0.9));
    z-index:-1;
    filter:blur(12px);
    opacity:0.75;
    animation:icyPulse 4s ease-in-out infinite alternate;
}

@keyframes icyPulse{
    0%{ transform:scale(0.98); opacity:0.5; filter:blur(10px); }
    100%{ transform:scale(1.06); opacity:0.9; filter:blur(16px); }
}

.avatar{
    width:165px;
    height:165px;
    border-radius:50%;
    border:2px solid rgba(186, 230, 253, 0.85);
    box-shadow:0 0 35px rgba(56, 189, 248, 0.4), 0 0 70px rgba(56, 189, 248, 0.15), 0 12px 45px rgba(0,0,0,0.8);
    object-fit:cover;
    transition:transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar:hover{
    transform:scale(1.05) rotate(1.5deg);
}

h1.title-main{
    margin-top:18px;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size:44px;
    font-weight:900;
    letter-spacing:10px;
    background:linear-gradient(180deg, #ffffff 0%, #e0f2fe 30%, #7dd3fc 65%, #0284c7 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 0 16px rgba(56, 189, 248, 0.65));
}

.subtitle-main{
    font-family: 'Cinzel', serif;
    font-size:12px;
    letter-spacing:5px;
    color:#7dd3fc;
    margin-top:6px;
    text-transform:uppercase;
    text-shadow:0 0 10px rgba(56, 189, 248, 0.4);
}

h2.page-title{
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size:24px;
    font-weight:900;
    letter-spacing:8px;
    background:linear-gradient(180deg, #ffffff, #38bdf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 0 15px rgba(56, 189, 248, 0.5));
    margin-bottom:36px;
}

.socials{
    margin-top:28px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.socials a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(56, 189, 248, 0.06);
    border:1px solid rgba(56, 189, 248, 0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#bae6fd;
    text-decoration:none;
    backdrop-filter:blur(10px);
    transition:all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.socials a:hover{
    background:rgba(56, 189, 248, 0.25);
    color:#ffffff;
    border-color:rgba(56, 189, 248, 0.7);
    transform:translateY(-4px) scale(1.1);
    box-shadow:0 0 25px rgba(56, 189, 248, 0.5);
}

.socials svg{
    width:19px;
    height:19px;
    fill:currentColor;
}

.player{
    margin:26px auto 0;
    width:380px;
    max-width:92%;
    background:rgba(6, 12, 24, 0.75);
    border:1px solid rgba(56, 189, 248, 0.25);
    border-radius:20px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:16px;
    backdrop-filter:blur(20px);
    box-shadow:0 12px 40px rgba(0,0,0,0.7), 0 0 20px rgba(56, 189, 248, 0.1), inset 0 0 15px rgba(56, 189, 248, 0.05);
    transition:all 0.35s ease;
}

.player:hover{
    border-color:rgba(56, 189, 248, 0.6);
    box-shadow:0 15px 50px rgba(0,0,0,0.8), 0 0 30px rgba(56, 189, 248, 0.25);
}

.player .art{
    width:50px;
    height:50px;
    border-radius:14px;
    object-fit:cover;
    flex-shrink:0;
    border:1px solid rgba(56, 189, 248, 0.35);
    box-shadow:0 4px 15px rgba(0,0,0,0.5);
}

.player .info{
    flex:1;
    text-align:left;
    overflow:hidden;
}

.player .title{
    font-family: 'Cinzel', serif;
    font-size:14px;
    font-weight:700;
    color:#e0f2fe;
    letter-spacing:2px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    text-shadow:0 0 8px rgba(56, 189, 248, 0.4);
}

.player .artist{
    font-size:13px;
    color:#7dd3fc;
    margin-top:2px;
    display:flex;
    align-items:center;
    gap:6px;
}

.audio-waves{
    display:flex;
    align-items:flex-end;
    gap:2px;
    height:12px;
}

.audio-waves span{
    width:2px;
    height:3px;
    background:#38bdf8;
    border-radius:1px;
    transition:height 0.2s ease;
}

.player.playing .audio-waves span:nth-child(1){ animation:icyWave 0.8s ease-in-out infinite alternate; }
.player.playing .audio-waves span:nth-child(2){ animation:icyWave 1.1s ease-in-out infinite alternate 0.2s; }
.player.playing .audio-waves span:nth-child(3){ animation:icyWave 0.7s ease-in-out infinite alternate 0.4s; }

@keyframes icyWave{
    0%{ height:3px; }
    100%{ height:12px; background:#e0f2fe; box-shadow:0 0 8px #38bdf8; }
}

.player .toggle{
    width:38px;
    height:38px;
    border-radius:50%;
    background:linear-gradient(180deg, #ffffff, #38bdf8);
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
    color:#020617;
    box-shadow:0 0 20px rgba(56, 189, 248, 0.5);
    transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.player .toggle:hover{
    transform:scale(1.12);
    box-shadow:0 0 35px rgba(56, 189, 248, 0.8);
}

.player .toggle svg{
    width:16px;
    height:16px;
    fill:currentColor;
}

.footer{
    margin-top:32px;
    color:#94a3b8;
    line-height:1.9;
    font-size:14px;
    letter-spacing:1.5px;
}

.signature{
    margin-top:36px;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-weight:700;
    letter-spacing:14px;
    color:#38bdf8;
    font-size:13px;
    text-shadow:0 0 12px rgba(56, 189, 248, 0.4);
}

.card-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:480px;
    margin:0 auto;
}

.card{
    display:flex;
    align-items:center;
    gap:18px;
    background:rgba(6, 12, 24, 0.7);
    border:1px solid rgba(56, 189, 248, 0.2);
    border-radius:18px;
    padding:16px 20px;
    text-align:left;
    text-decoration:none;
    color:#e0f2fe;
    backdrop-filter:blur(16px);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover{
    border-color:rgba(56, 189, 248, 0.5);
    background:rgba(14, 24, 46, 0.8);
    box-shadow:0 10px 35px rgba(0,0,0,0.6), 0 0 25px rgba(56, 189, 248, 0.2);
    transform:translateY(-3px);
}

.card img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:1px solid rgba(56, 189, 248, 0.35);
    flex-shrink:0;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
}

.card .card-name{
    font-family: 'Cinzel', serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#e0f2fe;
}

.card .card-sub{
    font-size:12px;
    color:#64748b;
    margin-top:2px;
}

.card .card-arrow{
    margin-left:auto;
    color:#64748b;
    font-size:16px;
    transition:transform 0.3s ease, color 0.3s ease;
}

.card:hover .card-arrow{
    color:#38bdf8;
    transform:translateX(5px);
}

.page-note{
    margin-top:40px;
    font-family: 'Cinzel', serif;
    font-size:11px;
    color:#64748b;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hof-category{
    max-width:580px;
    margin:0 auto 32px;
}

.hof-cat-title{
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:5px;
    color:var(--icy-accent, #38bdf8);
    text-shadow:0 0 15px var(--icy-glow, rgba(56, 189, 248, 0.5));
    margin-bottom:14px;
    text-transform:uppercase;
}

.hof-card{
    background:rgba(6, 12, 24, 0.75);
    border:1px solid var(--icy-border, rgba(56, 189, 248, 0.25));
    border-radius:20px;
    padding:28px 32px;
    text-align:center;
    line-height:2.3;
    font-size:14px;
    letter-spacing:2px;
    color:#e0f2fe;
    backdrop-filter:blur(20px);
    box-shadow:0 12px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(56, 189, 248, 0.04);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hof-card:hover{
    border-color:var(--icy-accent, rgba(56, 189, 248, 0.65));
    box-shadow:0 18px 50px rgba(0,0,0,0.8), 0 0 35px var(--icy-glow, rgba(56, 189, 248, 0.25));
    transform:translateY(-3px);
}

.hof-card .name{
    color:#f8fafc;
    font-weight:600;
    transition:all 0.25s ease;
}

.hof-card .name:hover{
    color:#ffffff;
    text-shadow:0 0 14px var(--icy-accent, #38bdf8);
}

.hof-card .sep{
    color:#475569;
    margin:0 4px;
    font-weight:300;
}

.cat-hof{
    --icy-accent: #00f2fe;
    --icy-border: rgba(0, 242, 254, 0.35);
    --icy-glow: rgba(0, 242, 254, 0.5);
}

.cat-icon{
    --icy-accent: #e0f2fe;
    --icy-border: rgba(224, 242, 254, 0.35);
    --icy-glow: rgba(224, 242, 254, 0.5);
}

.cat-superstar{
    --icy-accent: #38bdf8;
    --icy-border: rgba(56, 189, 248, 0.35);
    --icy-glow: rgba(56, 189, 248, 0.5);
}

.cat-hunt{
    --icy-accent: #2dd4bf;
    --icy-border: rgba(45, 212, 191, 0.35);
    --icy-glow: rgba(45, 212, 191, 0.4);
}

.packers-grid{
    display:flex;
    flex-direction:column;
    gap:26px;
    max-width:620px;
    margin:0 auto;
}

.clip-card{
    background:rgba(6, 12, 24, 0.75);
    border:1px solid rgba(56, 189, 248, 0.25);
    border-radius:20px;
    padding:20px;
    backdrop-filter:blur(20px);
    box-shadow:0 12px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(56, 189, 248, 0.04);
    transition:all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align:left;
}

.clip-card:hover{
    border-color:rgba(56, 189, 248, 0.6);
    box-shadow:0 18px 50px rgba(0,0,0,0.8), 0 0 35px rgba(56, 189, 248, 0.2);
    transform:translateY(-3px);
}

.clip-title-banner{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.clip-badge{
    font-family: 'Cinzel', serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(56, 189, 248, 0.15);
    color:#38bdf8;
    border:1px solid rgba(56, 189, 248, 0.4);
    text-transform:uppercase;
}

.clip-title{
    font-family: 'Cinzel', serif;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    color:#e0f2fe;
    text-shadow:0 0 10px rgba(56, 189, 248, 0.4);
}

.clip-video-wrapper{
    width:100%;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(56, 189, 248, 0.2);
    box-shadow:0 8px 25px rgba(0,0,0,0.5);
    background:#000000;
}

.clip-video-wrapper video{
    width:100%;
    max-height:400px;
    display:block;
    outline:none;
}

.clip-link-btn{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    background:rgba(14, 24, 46, 0.8);
    border:1px solid rgba(56, 189, 248, 0.3);
    border-radius:14px;
    color:#e0f2fe;
    text-decoration:none;
    transition:all 0.3s ease;
}

.clip-link-btn:hover{
    background:rgba(2, 132, 199, 0.3);
    border-color:rgba(56, 189, 248, 0.7);
    box-shadow:0 0 20px rgba(56, 189, 248, 0.3);
}

.bg-blur-control{
    position:fixed;
    bottom:22px;
    right:22px;
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(6, 12, 24, 0.85);
    border:1px solid rgba(56, 189, 248, 0.3);
    border-radius:999px;
    padding:8px 18px;
    z-index:1000;
    backdrop-filter:blur(20px);
    box-shadow:0 10px 35px rgba(0,0,0,0.7), 0 0 15px rgba(56, 189, 248, 0.2);
}

.bg-blur-control svg{
    width:14px;
    height:14px;
    fill:#38bdf8;
    flex-shrink:0;
}

.bg-blur-control input[type=range]{
    -webkit-appearance:none;
    appearance:none;
    width:90px;
    height:3px;
    background:#1e293b;
    border-radius:2px;
    outline:none;
    cursor:pointer;
}

.bg-blur-control input[type=range]::-webkit-slider-thumb{
    -webkit-appearance:none;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#38bdf8;
    box-shadow:0 0 10px #38bdf8;
    cursor:pointer;
}

.bg-blur-control input[type=range]::-moz-range-thumb{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#38bdf8;
    border:none;
    box-shadow:0 0 10px #38bdf8;
    cursor:pointer;
}

.enter-overlay{
    position:fixed;
    inset:0;
    background:#020408;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    z-index:999;
    cursor:pointer;
    transition:opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-overlay.hidden{
    opacity:0;
    pointer-events:none;
}

.enter-overlay .enter-text{
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size:22px;
    font-weight:700;
    letter-spacing:7px;
    background:linear-gradient(180deg, #ffffff, #38bdf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 0 25px rgba(56, 189, 248, 0.75));
    animation:icyPulseOverlay 2.2s ease-in-out infinite;
}

.enter-overlay .enter-sub{
    font-family: 'Cinzel', serif;
    font-size:12px;
    letter-spacing:4px;
    color:#64748b;
    text-transform:uppercase;
}

@keyframes icyPulseOverlay{
    0%,100%{ opacity:1; transform:scale(1); }
    50%{ opacity:0.45; transform:scale(0.97); }
}

.loading-screen{
    position:fixed;
    inset:0;
    background:#020408;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    z-index:1001;
    transition:opacity 0.6s ease;
}

.loading-screen.hidden{
    opacity:0;
    pointer-events:none;
}

.loading-screen .loading-percent{
    font-family: 'Cinzel', serif;
    font-size:28px;
    font-weight:700;
    letter-spacing:4px;
    color:#e0f2fe;
    text-shadow:0 0 20px rgba(56, 189, 248, 0.8);
}

.loading-screen .loading-text{
    font-family: 'Cinzel', serif;
    font-size:11px;
    letter-spacing:4px;
    color:#64748b;
    text-transform:uppercase;
}

.loading-bar-track{
    width:220px;
    height:3px;
    background:rgba(56, 189, 248, 0.15);
    border-radius:2px;
    overflow:hidden;
}

.loading-bar-fill{
    height:100%;
    width:0%;
    background:linear-gradient(90deg, #38bdf8, #ffffff);
    box-shadow:0 0 14px #38bdf8;
    transition:width 0.15s linear;
}

.cursor-dot{
    position:fixed;
    top:0;
    left:0;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#38bdf8;
    box-shadow:0 0 12px #38bdf8, 0 0 24px #00d2ff;
    pointer-events:none;
    z-index:1002;
    transform:translate(-50%,-50%);
}

.particle{
    position:fixed;
    top:0;
    left:0;
    width:4px;
    height:4px;
    border-radius:50%;
    background:rgba(56, 189, 248, 0.9);
    box-shadow:0 0 10px rgba(0, 210, 255, 0.8);
    pointer-events:none;
    z-index:1001;
}

@media (hover:none){
    .cursor-dot, .particle{ display:none; }
}
