@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Inter",sans-serif;
}

body{
    background:#0b090b;
    color:#fff;
    overflow:hidden;
}

/* ==========================
   Background
========================== */

.background{
    position: fixed;
    inset: 0;
    z-index: 0;

    background: linear-gradient(
        180deg,
        #140b0d 0%,
        #0d090a 35%,
        #090909 100%
    );

    pointer-events: none;
}

/* ==========================
   Container
========================== */

.container{
    position:relative;
    z-index:2;

    width:100%;
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* ==========================
   Logo
========================== */

.logo{
    width:110px;
    margin-bottom:28px;

    filter:drop-shadow(0 0 14px rgba(255,70,70,.35));
}

/* ==========================
   Textes
========================== */

.subtitle{
    font-size:13px;
    letter-spacing:2px;
    color:#6f6669;

    margin-bottom:28px;
}

h3{
    width:400px;

    color:#7a6d71;

    font-size:13px;
    font-weight:600;
    letter-spacing:2px;

    margin-bottom:16px;
}

/* ==========================
   Cards
========================== */

.cards{
    width:400px;

    display:flex;
    flex-direction:column;
    gap:14px;
}

.card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    text-decoration:none;
    color:white;

    padding:16px 18px;

    background:rgba(24,18,21,.94);

    border:1px solid rgba(255,70,70,.08);

    border-radius:16px;

    transition:.25s ease;
}

.card:hover{
    transform:translateY(-2px);

    border-color:rgba(255,90,90,.18);

    box-shadow:
        0 0 18px rgba(255,70,70,.12);
}

.left{
    display:flex;
    align-items:center;
    gap:16px;
}

.icon{
    width:38px;
    height:38px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#34141b;

    border-radius:10px;

    font-size:18px;
}

.title{
    font-size:18px;
    font-weight:700;
}

.desc{
    margin-top:3px;

    font-size:13px;

    color:#807579;
}

.right{
    display:flex;
    align-items:center;
    gap:14px;
}

.badge{
    padding:5px 10px;

    border-radius:20px;

    background:#4a1821;

    color:#ff8896;

    font-size:10px;
    font-weight:700;
    letter-spacing:.4px;
}

.arrow{
    font-size:18px;
    color:#908488;
}

/* ==========================
   Footer
========================== */

.footer{
    margin-top:50px;
    text-align:center;
    color:#6b6265;
    font-size:13px;
}

.host{
    margin-top:10px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;

    color:#666;
    font-size:18px;
    font-weight:600;
}

.host img{
    width:280px;
    opacity:.95;
}