/* =========================
   THÁNOS STORE - INDEX.CSS
   ========================= */

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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, #2b0a3d, #0b0b0f);
    padding: 20px;
    color: #fff;
}

/* CARD PRINCIPAL */
.painel {
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(142, 68, 173, 0.5);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 0 25px rgba(142, 68, 173, 0.35);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease;
}

/* LOGO / ICONE */
.logo {
    font-size: 55px;
    text-align: center;
    margin-bottom: 10px;
}

/* TITULO */
h1 {
    text-align: center;
    font-size: 26px;
    color: #c084fc;
    margin-bottom: 20px;
}

/* BLOCO DE INFO */
.item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.item:hover {
    transform: translateY(-2px);
    border-color: rgba(142, 68, 173, 0.6);
}

.item i {
    margin-right: 6px;
    color: #c084fc;
}

.item span {
    display: block;
    margin-top: 6px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    word-break: break-word;
}

/* BOTÃO COPIAR */
button {
    width: 100%;
    padding: 15px;
    margin-top: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #7b2cbf, #9d4edd);
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.6);
}

/* MENSAGEM DE SUCESSO */
#msg {
    display: none;
    margin-top: 15px;
    text-align: center;
    color: #4ade80;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

#msg.mostrar {
    display: block;
}

/* TEXTO INFERIOR */
.info {
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
    color: #bdbdbd;
    line-height: 20px;
}

/* ANIMAÇÃO DE ENTRADA */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 480px) {
    .painel {
        padding: 22px;
    }

    h1 {
        font-size: 22px;
    }

    button {
        font-size: 16px;
    }
}