*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    background:
    linear-gradient(
    135deg,
    #08111f,
    #13253f,
    #0d1728);

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
}

.container{

    width:1200px;
    max-width:95%;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.topo{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:40px;
}

.logo-area{

    display:flex;
    align-items:center;
    gap:20px;
}

.logo{

    width:120px;
    height:120px;

    border:2px dashed rgba(255,255,255,.3);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    text-align:center;
}

.titulo h1{

    font-size:40px;
    font-weight:700;
}

.titulo p{

    opacity:.8;
}

.grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

.card{

    background:
    rgba(255,255,255,.06);

    border-radius:20px;

    padding:25px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.25);
}

.card h2{

    margin-bottom:20px;
}

.botao{

    display:block;

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    margin-bottom:10px;

    text-decoration:none;

    text-align:center;

    color:white;

    font-weight:600;

    transition:.3s;
}

.botao:hover{

    transform:scale(1.02);
}

.jogo{

    background:
    linear-gradient(
    45deg,
    #00c853,
    #00e676);
}

.op{

    background:
    linear-gradient(
    45deg,
    #1565c0,
    #42a5f5);
}

.sec{

    background:
    linear-gradient(
    45deg,
    #1b9a85,
    #08e8f0);
}

.info{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.status{

    padding:15px;

    border-radius:12px;

    background:
    rgba(255,255,255,.05);
}

.rodape{

    margin-top:30px;

    text-align:center;

    opacity:.6;
}