:root{
    --bg:#03050b;
    --bg2:#07111f;
    --glass:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.09);
    --text:#ffffff;
    --muted:#9fb4cf;
    --blue:#52b7ff;
    --blue2:#256dff;
    --danger:#ff4b4b;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background: radial-gradient(circle at top,#16375f 0%,transparent 35%), radial-gradient(circle at bottom,#05080d 0%,transparent 60%), linear-gradient(#02040a,#04070d);
    color:var(--text);
    font-family:Orbitron,sans-serif;
    overflow-x:hidden;
}

canvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:-20;
}

.noise{
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.03;
    z-index:-15;
    background-size:7px 7px;
}

header{
    position:fixed;
    left:0;
    right:0;
    top:0;
    padding:28px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(18px);
    background:rgba(2,5,12,.45);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-circle{
    width:58px;
    height:58px;
    border-radius:50%;
    background:gold;
    box-shadow:
        0 0 35px white,
        0 0 70px rgba(255,255,255,.5);
    position:relative;
}

.logo-circle::after{
    content:"";
    position:absolute;
    width:46px;
    height:46px;
    border-radius:50%;
    background:#03050b;
    left:8px;
    top:6px;
}

.logo-small{
    display:block;
    color:#8da4c3;
    letter-spacing:4px;
    font-size:11px;
    margin-bottom:5px;
}

.logo h1{
    font-family:Orbitron;
    font-size:23px;
    letter-spacing:3px;
}

nav{
    display:flex;
    gap:45px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:15px;
    opacity:.75;
    transition:.35s;
}

nav a:hover{
    opacity:1;
    color:var(--blue);
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    width:min(1400px,92%);
    margin:auto;
    padding-top:150px;
}

.hero h2{
    font-family:Orbitron;
    font-size:88px;
    line-height:.92;
    margin-bottom:35px;
    letter-spacing:3px;
}

.hero p{
    font-size:22px;
    color:var(--muted);
    max-width:620px;
    margin-bottom:50px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.button{
    padding:18px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.primary{
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color:white;
    box-shadow: 0 15px 50px rgba(37,109,255,.35);
}

.secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    background:rgba(255,255,255,.04);
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.eclipse{
    position:relative;
    width:520px;
    height:520px;
}

.sun{
    position:absolute;
    inset:0;
    border-radius:50%;
    background:gold;
    box-shadow: 0 0 60px rgba(255,255,255,.95), 0 0 140px rgba(255,255,255,.65), 0 0 260px rgba(90,170,255,.28);
}

.moon{
    position:absolute;
    width:440px;
    height:440px;
    border-radius:50%;
    background:#03050b;
    top:42px;
    left:52px;
    box-shadow: inset -30px -30px 60px rgba(255,255,255,.03), 0 0 40px rgba(0,0,0,.7);
}

.corona{
    position:absolute;
    inset:-45px;
    border-radius:50%;
    background:
        conic-gradient(
        from 0deg,
        rgba(255,255,255,.0),
        rgba(255,255,255,.55),
        rgba(120,190,255,.12),
        rgba(255,255,255,.5),
        rgba(255,255,255,0)
        );
    filter:blur(18px);
    animation:coronaRotate 40s linear infinite;
}

.glow{
    position:absolute;
    inset:-120px;
    border-radius:50%;
    background:
        radial-gradient(
        circle,
        rgba(110,180,255,.15),
        transparent 70%
        );
    animation:glowPulse 5s ease-in-out infinite;
}

section{
    width:min(1300px,92%);
    margin:auto;
    padding:50px 0;
}

.section-header{
    text-align:center;
    margin-bottom:55px;
}

.section-header span{
    display:block;
    color:#6eaee9;
    letter-spacing:4px;
    font-size:12px;
    margin-bottom:12px;
}

.section-header h3{
    font-size:54px;
    font-family:Orbitron;
}

.player{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    backdrop-filter:blur(25px);
    overflow:hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
}

.player-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
}

.live-dot{
    display:inline-block;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ff4747;
    margin-right:10px;
}

.player-video{
    position:relative;
    width:100%;
    padding-bottom:56.25%;
}

.player-video iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:none;
}

.player-bottom{
    display:flex;
    justify-content:space-around;
    padding:20px;
    color:#90a9c8;
    border-top:1px solid rgba(255,255,255,.08);
}

.timer{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.time{
    width:180px;
    padding:35px;
    text-align:center;
    border-radius:24px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

.time span{
    display:block;
    font-size:64px;
    font-family:Orbitron;
}

.time small{
    display:block;
    margin-top:12px;
    color:#7f98b7;
    letter-spacing:3px;
}

.glass{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    padding:55px;
    border-radius:30px;
    font-size:20px;
    line-height:1.9;
    color:#d6e2f1;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.cards article{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    transition:.35s;
    backdrop-filter:blur(20px);
}

.cards h4{
    font-size:26px;
    margin-bottom:20px;
}

.cards p{
    color:#b3c7df;
}

footer{
    padding:80px 20px;
    text-align:center;
    color:#8198b5;
    border-top:1px solid rgba(255,255,255,.06);
}

footer h4{
    font-family:Orbitron;
    font-size:30px;
    letter-spacing:4px;
    margin-bottom:15px;
}

@keyframes coronaRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes glowPulse{
    0%,100%{
        transform:scale(1);
        opacity:.5;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}

.time span{
    transition:.25s;
}

.flip{
    animation:flipNumber .35s ease;
}

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

.dashboard{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.panel{
    padding:35px;
    border-radius:25px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    transition:.35s;
}

.panel h4{
    color:#82a4c8;
    margin-bottom:18px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.panel span{
    font-size:30px;
    font-family:Orbitron;
}

.panel span{
    transition:.3s;
}

.eclipse{
    overflow:visible;
}

.eclipse-effects{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:5;
}

.status-dot{
    animation:pulseStatus 1.5s infinite;
}

@keyframes pulseStatus{
    0%{
        box-shadow:
            0 0 0 0 rgba(255,70,70,.8);
    }
    100%{
        box-shadow:
            0 0 0 15px rgba(255,70,70,0);
    }
}

.hero h2 span{
    transform:
        translateY(40px);
}

.totality{
    filter:
        brightness(.65);
}

.totality .eclipse{
    animation:
        totalityGlow
        5s infinite;
}

@keyframes totalityGlow{
    0%,100%{
        filter: drop-shadow(0 0 40px white);
    }
    50%{
        filter: drop-shadow(0 0 120px #8fd5ff);
    }
}

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:2px;
    background:
        linear-gradient(white, transparent);
}

.timeline-item{
    display:flex;
    justify-content:flex-end;
    width:50%;
    padding:25px;
    position:relative;
}

.timeline-item:nth-child(even){
    margin-left:50%;
    justify-content:flex-start;
}

.timeline-point{
    position:absolute;
    right:-8px;
    top:45px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#58bbff;
    box-shadow:
        0 0 25px #58bbff;
}

.timeline-item:nth-child(even)
.timeline-point{
    left:-8px;
}

.timeline-card{
    background:
        rgba(255,255,255,.05);
    border:
        1px solid rgba(255,255,255,.1);
    border-radius:25px;
    padding:30px;
    backdrop-filter:blur(20px);
}

.timeline-card span{
    color:#58bbff;
    font-family:Orbitron;
    letter-spacing:2px;
}

.timeline-card h4{
    font-size:24px;
    margin:15px 0;
}

.timeline-card p{
    color:#9db3ce;
}

.timeline-item.highlight
.timeline-card{
    border-color:#ffffff;
    box-shadow: 0 0 50px rgba(100,190,255,.25);
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:30px;
    margin:30px 0;
}

.footer-links a{
    color:#91a9c5;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:white;
}