*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#08141f;
    color:#fff;
}

.mobile{
    max-width:480px;
    min-width: 350px;
    margin:auto;
    min-height:100vh;
    background:#102435;
    padding-bottom:90px;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#091827;
    padding:10px;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.logo{
    width:140px;
}

.header-right{
    display:flex;
    gap:10px;
    align-items:center;
}

.forgot{
    font-size:12px;
}

.forgot a{
    text-decoration: none;
    color: white;
}

.forgot a:hover{
    color: #2d9cff;
}

.register{
    background:#2d9cff;
    padding: 10px 10px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
}

.register:hover {
    background:#164c7c;
}

.login{
    background:#2d9cff;
    padding:10px 10px;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    text-align: center;
}

.login:hover {
    background: #164c7c;
}

.login-box{
    display:grid;
    grid-template-columns:35% 35% auto;
    gap:5px;
}

.login-box input{
    height:40px;
    border:none;
    border-radius:8px;
    padding:0 10px;
}

/* HERO */

.hero{
    padding:10px;
}

.hero img{
    width:100%;
    border-radius:15px;
}

/* NOTICE */

.notice{
    margin:0 10px 10px;
    padding:10px;
    background:#0c1824;
    border-radius:10px;
    color:#ffb100;
    font-size: 12px;
    text-align: center;
}

/* BUTTONS */

.action-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:10px;
}

.action-buttons a{
    height:50px;
    border:2px solid #00d7ff;
    border-radius:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-weight:bold;
}

/* CONTENT */

.content{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:10px;
    padding:10px;
}

.sidebar{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.side{
    height:70px;
    background:#18364d;
    border-radius:15px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.side.active{
    background:#4f77ff;
}

.side span{
    font-size: 12px;
}

.games{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.game{
    background:#112536;
    border-radius:15px;
    overflow:hidden;
}

.game img{
    width:100%;
    aspect-ratio:3/3;
    object-fit:cover;
    display:block;
}

.game-title{
    background:#224cd7;
    padding:10px;
    text-align:center;
    font-size:12px;
    font-weight:bold;
}

/* ARTICLE */
.article {
    color: rgb(181, 184, 192);
    max-width: 480px;
    padding: 0 10px 0 10px;
    line-height: 18px;
    margin-top: 10px;
}

h1 {
    font-size: 15px;
    text-align: center;
}

h2 {
    font-size: 13px;
    text-align: center;
}

h3 {
    font-size: 12px;
    text-align: center;
}

p {
    font-size: 11px;
    text-align: justify;
    margin-bottom: 10px;
}

/* Pages */
.pages {
    max-width: 480px;
    padding: 0 10px 0 10px;
    line-height: 17px;
    color: rgb(181, 184, 192);
}

h4 {
    font-size: 12px;
    text-align: center;
    
}

h5 {
    font-size: 11px;
    text-align: center;
    
}

.pages a{
    text-decoration: none;
    color: rgb(181, 184, 192);
}


/* NAVIGATION */

.bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    max-width:480px;
    margin:auto;
    background:#08141f;
    display:flex;
    justify-content:space-around;
    padding:10px 0;
}

.bottom-nav a{
    color:#fff;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:12px;
    gap:5px;
}

.bottom-nav a.active{
    color:#ffd54a;
}

.bottom-nav a:hover {
    color: #ffd54a;
}

.box{
    position:relative;
    border-radius:15px;
    background:#111;
    color:#fff;
    }

    .box::before{
        content:"";
        position:absolute;
        inset:0;
        padding:3px;
        border-radius:30px;
        background:linear-gradient(
            90deg,
            rgb(204, 227, 247),
            rgb(59, 128, 189),
            rgb(5, 96, 175),
            rgb(0, 26, 255)
        );
        background-size:300%;
        animation:rainbow 2s linear infinite;

        /* Standard */
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);

        /* WebKit */
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite:xor;
        mask-composite:exclude;
    }

    @keyframes rainbow{
        0%{
            background-position:0% 50%;
        }
        50%{
            background-position:100% 50%;
        }
        100%{
            background-position:300% 50%;
        }
    }