* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #560303);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);

    border-radius: 20px;
}
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;

    margin-bottom: 1rem;

    border: 6px solid #000000;
    box-shadow: 0 0 20px rgba(223, 94, 30, 0.4);
}
.username {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}
.bio {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.2rem;
}
.description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.links a {
    background: linear-gradient(135deg, #7a0505, #3a0000);
    color: #ffffff;
    text-decoration: none;

    padding: 0.9rem;
    border-radius: 12px;

    font-weight: 600;
    letter-spacing: 0.3px;

    transition: all 0.25s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.links a:hover {
    background: linear-gradient(135deg, #7a0505, #b80303);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
}
.separator {
    margin: 1rem 0;
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 1px;
}
footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    opacity: 0.6;
}
.setup-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}
.setup-container h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.specs-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 15px;
    font-size: 0.9rem;
}
.specs-grid .label {
    font-weight: bold;
    color: #aaa;
    text-align: right;
}
.specs-grid .value {
    color: #fff;
    font-family: monospace;
}
@media (max-width: 400px) {
    .specs-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .specs-grid .label {
        text-align: center;
        color: #888;
        font-size: 0.8rem;
        margin-top: 5px;
    }
}