* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f2f2;
    color: #222;
}

.main-header {
    background-color: #0077c2;
    color: #ffe600;
    text-align: center;
    padding: 5px 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px #000;
    border-bottom: 5px solid #000;
}

.mural {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    padding: 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.character {
    background: #fff;
    border: 4px solid #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 0 #000;
    transition: all 0.2s ease-in-out;
}

.character:hover {
    transform: scale(1.03);
    box-shadow: 8px 8px 0 #000;
}

.character img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #ffe60000;
}

.push {
    padding: 15px;
    background: #0077c2;
    color: #ffe600;
    font-size: 15px;
    font-weight: 600;
    height: 120px;
    overflow-y: auto;
    text-align: center;
    border-top: 3px solid #000;
    scrollbar-width: thin;
    scrollbar-color: #ffe600 transparent;
}

.push::-webkit-scrollbar {
    width: 5px;
}

.push::-webkit-scrollbar-thumb {
    background-color: #ffe600;
    border-radius: 10px;
}

.push form button {
    width: 100%;
    background: #ffe600;
    color: #000;
    border: 2px solid #000;
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.push form button:hover {
    background: #f9d300;
    transform: scale(1.05);
}

.menu button {
    background: #ffe600;
    color: #000;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s;
}

.menu button:hover {
    background: #f9d300;
    transform: scale(1.05);
}

.info-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 50px 30px;
    margin: 60px auto;
    border: 4px solid #000;
    border-radius: 12px;
    box-shadow: 5px 5px 0 #000;
    max-width: 1200px;
}

.info-section.reverse {
    flex-direction: row-reverse;
}

.info-section img {
    width: 260px;
    height: auto;
    border-radius: 8px;
    background: #ffe60000;
}

.info-section div {
    flex: 1;
}

.info-section h2, .info-section h3 {
    color: #0077c2;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 26px;
}

.info-section p {
    font-size: 16px;
    margin-bottom: 10px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 2px solid #000;
}

th {
    background: #0077c2;
    color: #ffe600;
    font-weight: 700;
}

td {
    background: #fafafa;
}

footer {
    background: #0077c2;
    color: #ffe600;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.character, .info-section {
    animation: slideIn 0.5s ease forwards;
}

@media (max-width: 1200px) {
    .mural {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mural {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-section, .info-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    .info-section img {
        margin-bottom: 20px;
    }
}
