html,
body{
    margin:0;
    padding:0;
    width:100%;
    overflow:hidden;
}

#dgInaugurationOverlay{
    position:fixed;
    inset:0;
    z-index:999999;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at top,#1e3a8a 0%,#07111f 45%,#020617 100%);
    color:#fff;
}

/* Canvas */
#dgInaugurationCanvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
}

/* Background Glow Orbs */
.dg-launch-bg-orb{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:2;
}

.dg-orb-one{
    width:250px;
    height:250px;
    background:#2563eb;
    top:-100px;
    left:-100px;
    opacity:.25;
}

.dg-orb-two{
    width:250px;
    height:250px;
    background:#f59e0b;
    right:-100px;
    bottom:-100px;
    opacity:.25;
}

.dg-orb-three{
    width:200px;
    height:200px;
    background:#22c55e;
    bottom:10%;
    left:40%;
    opacity:.15;
}

/* Watermark */
#dgInaugurationOverlay::before{
    content:'🏆';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:220px;
    opacity:.03;
    pointer-events:none;
    z-index:1;
}

/* Main Card */
.dg-launch-stage{
    position:relative;
    z-index:5;
    width:min(850px,92%);
    padding:40px 30px;
    text-align:center;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    box-shadow:0 25px 70px rgba(0,0,0,.4);
}

/* Trophy */
.dg-launch-emblem{
    margin-bottom:20px;
}

.dg-core{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#111;
    background:linear-gradient(135deg,#facc15,#f59e0b);
    box-shadow:0 0 40px rgba(250,204,21,.4);
    animation:pulse 2s infinite;
}

/* Text */
.dg-launch-kicker{
    font-size:12px;
    font-weight:800;
    letter-spacing:3px;
    color:#93c5fd;
    text-transform:uppercase;
}

.dg-launch-title{
    margin:10px 0;
    font-size:clamp(32px,5vw,58px);
    font-weight:900;
}

.dg-launch-subtitle{
    margin:0;
    color:#facc15;
    font-size:clamp(18px,3vw,28px);
    font-weight:800;
}

.dg-launch-divider{
    width:120px;
    height:4px;
    margin:25px auto;
    border-radius:10px;
    background:linear-gradient(90deg,#2563eb,#facc15,#22c55e);
}

.dg-launch-text{
    font-size:18px;
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}

/* Stats */
.dg-launch-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:30px;
}

.dg-launch-stats div{
    padding:15px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}

.dg-launch-stats strong{
    display:block;
    font-size:26px;
}

.dg-launch-stats span{
    font-size:13px;
    color:#cbd5e1;
}

/* Button */
.dg-launch-button{
    position:relative;
    border:none;
    border-radius:20px;
    padding:18px 35px;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    color:#111;
    background:linear-gradient(135deg,#facc15,#f59e0b);
    box-shadow:0 15px 40px rgba(245,158,11,.35);
}

.dg-launch-button:hover{
    transform:translateY(-2px);
}

/* Final Screen */
.dg-launch-final{
    position:absolute;
    inset:0;
    z-index:10;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:rgba(2,6,23,.92);
    opacity:0;
    visibility:hidden;
    transition:.8s;
}

.dg-launch-final.show{
    opacity:1;
    visibility:visible;
}

.dg-final-success{
    font-size:90px;
    color:#22c55e;
    margin-bottom:20px;
}

.dg-launch-final h2{
    font-size:clamp(30px,5vw,60px);
    margin:0;
}

.dg-launch-final p{
    font-size:20px;
    color:#cbd5e1;
}

/* Animation */
@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}

/* Mobile */
@media(max-width:768px){

    .dg-launch-stage{
        padding:25px 18px;
    }

    .dg-launch-stats{
        grid-template-columns:1fr;
    }

    .dg-launch-button{
        width:100%;
    }

    #dgInaugurationOverlay::before{
        font-size:140px;
    }
}

#dgInaugurationOverlay{
    transition:opacity 1s ease;
}

.dg-launch-sequence{
    position:absolute;
    inset:0;
    z-index:99999;
    background:rgba(2,6,23,.96);
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
}

.dg-launch-sequence.show{
    display:flex;
}

#dgSequenceText{
    font-size:90px;
    font-weight:900;
    color:#facc15;
    text-shadow:0 0 40px rgba(250,204,21,.5);
}