.meta-table{

width:100%;
border-collapse:collapse;
margin-top:30px;

background:#0d1117;
border-radius:10px;
overflow:hidden;

}

.meta-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.meta-table th {
    text-align: left;
    padding: 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    text-transform: uppercase;
}

.meta-table td {
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    color: #334155;
}

.meta-table tr:hover {
    background: #f8fafc;
}

.meta-table a {
    color: #3b82f6;
    text-decoration: none;
}
.moves-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
}

/* HEADER */
.moves-table thead th {
    text-align: left;
    font-size: 13px;
    color: #888;
    font-weight: 600;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ROW */
.moves-table tbody tr {
    background: linear-gradient(145deg, #1a1a1a, #111);
    transition: 0.2s ease;
}

.moves-table tbody tr:hover {
    transform: translateY(-2px);
}

/* CELLS */
.moves-table td {
    padding: 14px 12px;
    color: #fff;
    vertical-align: middle;
}

/* FIRST + LAST */
.moves-table td:first-child {
    border-radius: 12px 0 0 12px;
}

.moves-table td:last-child {
    border-radius: 0 12px 12px 0;
}

/* MOVE LINK */
.moves-table td a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.moves-table td a:hover {
    color: #4dabf7;
}
.moves-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.moves-table th {
    text-align: left;
    font-size: 12px;
    color: #aaa;
    padding-bottom: 6px;
}

.moves-table td {
    padding: 6px 0;
    transition: 0.2s;
    color: #e5e7eb;
}
.moves-table td:nth-child(2) { /* nombre movimiento */
    color: #ffffff;
    font-weight: 500;
}

.moves-table td:nth-child(4),
.moves-table td:nth-child(5) { /* power / accuracy */
    color: #9ca3af;
    font-size: 13px;
}
.moves-table tbody tr {
    transition: background 0.2s ease, transform 0.1s ease;
    transition:opacity 0.25s ease, transform 0.25s ease;
}

.moves-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
    transform: scale(1.01);}
.moves-table tbody tr {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.25s ease;
}
.moves-table tbody tr.hide {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}
.moves-table tbody tr.hidden {
    opacity: 0;
    transform: translateY(6px);
}
.moves-table tbody tr.show {
    opacity: 1;
    transform: translateY(0);
}
.moves-table tbody tr:active {
    transform: scale(0.98);
}
.pokemon-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}