@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    color: #ff3b3b;
    margin-bottom: 10px;
}

.subtitle {
    color: #ccc;
    margin-bottom: 30px;
}

.card {
    background: #222;
    border: 2px solid #ff3b3b;
    padding: 20px;
    margin-bottom: 25px;
}

.label {
    font-size: 12px;
    margin-bottom: 10px;
    color: #aaa;
}

.ip-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ip-box span {
    background: #000;
    padding: 10px;
    border: 1px solid #555;
}

.ip-box button {
    background: #ff3b3b;
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
}

.ip-box button:hover {
    background: #ff5f5f;
}

.desc {
    font-size: 11px;
    line-height: 1.6;
    color: #ddd;
}

footer {
    margin-top: 40px;
    font-size: 10px;
    color: #666;
}

/* Responsive para celulares */
@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding-top: 40px;
    }

    .container {
        width: 100%;
        padding: 16px;
    }

    h1 {
        font-size: 16px;
        line-height: 1.4;
    }

    .subtitle {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .card {
        padding: 16px;
    }

    .ip-box {
        flex-direction: column;
        gap: 8px;
    }

    .ip-box span {
        font-size: 10px;
        word-break: break-all;
    }

    .ip-box button {
        width: 100%;
        font-size: 10px;
    }

    .desc {
        font-size: 10px;
    }

    footer {
        font-size: 9px;
    }
}
