body {
    background-color: #2B2B2B;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "Yu Gothic", sans-serif;
}

table {
    background-color: #FFF9D6;
    border-collapse: collapse;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 3px solid #ff0000;
}

h2 {
    text-align: center;
    color: #FFF9D6;
    font-size: 32px;
    margin-bottom: 20px;
}

th {
    background-color: #EEEEAA;
    padding: 12px 20px;
    border-bottom: 1px solid #595959;
    width: 120px;
}

td {
    padding: 12px 20px;
    border-bottom: 1px solid #595959;
}

img {
    border-radius: 50%;
    border: 4px solid #CCCC66;
    object-fit: cover;
    transition: 0.3s;
}

img:hover {
    transform: scale(1.08);
}

table:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
    transition: 0.3s;
}