.running-wrapper{
    width:100%;
    overflow:hidden;
    background:linear-gradient(
        90deg,
        #0a1d38,
        #123a70,
        #0a1d38
    );

    border:1px solid rgba(255,215,0,.25);
    border-radius:15px;

    margin-bottom:20px;
    box-shadow:
        0 0 15px rgba(255,215,0,.15);
}

.running-text{
    white-space:nowrap;
    display:inline-block;

    padding:12px 0;

    font-size:15px;
    font-weight:700;
    color:#ffd700;

    animation:marquee 20s linear infinite;
}

@keyframes marquee{
    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.promo-text{
    margin:18px 0 20px;
    padding:14px 18px;
    border-radius:14px;
    text-align:center;
    font-size:15px;
    font-weight:700;
    line-height:1.8;
    color:#fff;
    background:linear-gradient(
        90deg,
        rgba(29,110,255,.18),
        rgba(255,215,79,.12),
        rgba(29,110,255,.18)
    );
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

@media(max-width:700px){
    .promo-text{
        font-size:13px;
        padding:12px;
        line-height:1.6;
    }
}

body{
    background:url('https://images2.imgbox.com/25/78/T9LiPztO_o.png') center center/cover no-repeat fixed;
    font-family:Arial,Helvetica,sans-serif;
    color:#fff;
    min-height:100vh;
    position:relative;
}

.bg-overlay{
    position:fixed;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(3,10,25,.75),
            rgba(7,19,38,.92)
        );

    z-index:-1;
}

.container{
    width:100%;
    max-width:600px;
    margin:auto;
    padding:20px;
    position:relative;
    z-index:2;
}

.hero-banner{
    width:100%;
    aspect-ratio:1/1;
    border-radius:25px;
    overflow:hidden;
    border:2px solid rgba(255,215,0,.35);
    box-shadow:
        0 0 30px rgba(255,215,0,.15),
        0 15px 40px rgba(0,0,0,.4);
}

.hero-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.button-grid{
    margin-top:25px;
    display:grid;
    gap:15px;
}

.menu-btn{
    height:65px;
    border-radius:18px;
    text-decoration:none;
    color:white;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    font-size:18px;
    font-weight:700;

    background:linear-gradient(
        135deg,
        #0f2346,
        #153b75
    );

    border:1px solid rgba(255,215,0,.25);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35);

    transition:.3s;
}

.menu-btn span{
    font-size:22px;
}

.menu-btn:hover{
    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #1a4da3,
        #2a6cff
    );

    box-shadow:
        0 0 20px rgba(255,215,0,.3),
        0 12px 35px rgba(0,0,0,.45);
}

@media(max-width:600px){

    .container{
        padding:15px;
    }

    .menu-btn{
        height:60px;
        font-size:16px;
    }

}

.copyright{
    position:relative;
    z-index:2;
    color:#ffffff;
    font-size:28px;
    font-weight:500;
    text-shadow:0 0 10px rgba(255,255,255,.4);
}

footer{
    width:100%;
    padding:40px 0;
    text-align:center;
    color:#fff;
    font-size:18px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.promo-text{
margin:20px 0;
padding:25px 20px;
text-align:center;
border-radius:18px;
background:linear-gradient(
135deg,
rgba(8,22,45,.95),
rgba(18,58,112,.95)
);
border:1px solid rgba(255,215,0,.25);
box-shadow:
0 0 20px rgba(255,215,0,.15),
0 10px 30px rgba(0,0,0,.35);
}

.promo-subtitle{
color:#d8e7ff;
font-size:14px;
font-weight:700;
letter-spacing:1px;
margin-bottom:8px;
}

.promo-title{
color:#ffffff;
font-size:28px;
font-weight:900;
margin-bottom:15px;
text-transform:uppercase;
}

.promo-link{
font-size:28px;
font-weight:900;
color:#ffd700;
text-shadow:
0 0 20px #ffb300,
0 0 30px #ffcc00;
margin-bottom:12px;
word-break:break-word;
}

.promo-desc{
color:#cfdfff;
font-size:15px;
font-weight:500;
}

@media(max-width:768px){

```
.promo-title{
    font-size:20px;
}

.promo-link{
    font-size:26px;
}
```

}
