body {
    margin: 0;
    font-family: Verdana;
    background: #0b1a2a;
    color: white;
}

/* LAYOUT */
.layout {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 200px;
    background: #1d3b5f;
    padding: 15px;
    height: 100vh;
    box-shadow: inset -3px 0 0 #0a2238;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar button {
    display: block;
    width: 100%;
    margin: 6px 0;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #2b5c8a;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.sidebar button:hover {
    background: #3b7bbf;
}

/* MAIN */
.main {
    flex: 1;
}

/* HEADER */
header {
    padding: 15px;
    background: #12263a;
    border-bottom: 3px solid #0a2238;
}

input {
    padding: 10px;
    width: 280px;
    border-radius: 10px;
    border: none;
}

/* GRID */
#grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 95px);
    gap: 12px;
    padding: 20px;
    justify-content: center;
}

/* CARD (ESTILO HABBO 🔥) */
.card {
    background: linear-gradient(180deg, #2b5c8a, #1e3a5f);
    border: 2px solid #0a2238;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
    box-shadow: 0 3px 0 #0a2238;
}

.card:hover {
    transform: translateY(-3px);
    background: #3b7bbf;
}

/* IMAGEN */
.card img {
    width: 60px;
    height: 60px;
    image-rendering: pixelated;
}

/* TEXTO */
.code {
    font-size: 11px;
    font-weight: bold;
    margin-top: 4px;
}

.desc {
    font-size: 9px;
    opacity: 0.7;
}

/* TOAST */
#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #22c55e;
    padding: 10px;
    display: none;
    border-radius: 8px;
}