/* Estilo base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1e1e1e;
    color: #cfd8dc;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
      word-break: normal; /* evita quebrar tudo */
}

.container {
          /* largura adaptável */
    width: 95%;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin: 0 auto;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.3);
    box-sizing: border-box;
}

h1 {
    color: #00ff80;
    text-align: center;
    font-size: 2em;
    word-wrap: break-word;
}

h2 {
    color: #66ff99;
    margin-top: 20px;
    font-size: 1.5em;
    word-wrap: break-word;
}

p {
    margin: 10px 0;
    word-wrap: break-word;
}

.highlight {
    color: #00ff80;
    font-weight: bold;
}

ul li {
    margin: 5px 0;
}

/* Logo centralizado e responsivo */
header img {
    width: 180px;
    max-width: 80%;  /* se ajusta em telas pequenas */
    height: auto;
    margin: 20px auto;
    display: block;
}

/* Login centralizado */
.crypto-adz-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.crypto-adz-login img {
    width: 150px;
    max-width: 90%;
    margin-bottom: 10px;
    height: auto;
}

/* Status em linha responsivo */
.status-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.status-row p {
    flex: 1 1 45%;
    margin: 5px 0;
}

/* Botões */
button {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    transition: background 0.3s;
    box-sizing: border-box;
}



/* Media Queries para telas pequenas */
@media (max-width: 500px) {
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.2em;
    }
    .status-row p {
        flex: 1 1 100%; /* ocupa linha inteira */
    }
    button {
        width: 100%;
        padding: 12px 0;
    }
    .container {
        padding: 15px;
    }
}

/* Ajustes finos para responsividade */

/* Telas muito pequenas */
@media (max-width: 400px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 1.3em;
    }
    p, li, a {
        font-size: 0.95em;
    }
}

.promo {
    text-align: center;
    font-size: clamp(1em, 2vw, 1.3em);
    margin: 14px auto;
    padding: 12px 20px;

    color: #eaffff;
    font-weight: 800;

    background: linear-gradient(135deg, rgba(0, 255, 204, 0.25), rgba(0, 140, 255, 0.28));
    border: 1px solid rgba(0, 255, 204, 0.45);
    border-radius: 14px;

    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(0, 255, 204, 0.35);

    display: inline-block;
    animation: pulse 1.4s infinite ease-in-out;

    /* deixa responsivo em largura menor */
    max-width: 90%;
}

/* efeito leve de pulsação */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 16px rgba(0, 255, 204, 0.35); }
    50% { transform: scale(1.03); box-shadow: 0 0 28px rgba(0, 255, 204, 0.55); }
    100% { transform: scale(1); box-shadow: 0 0 16px rgba(0, 255, 204, 0.35); }
}

