@font-face {
    font-family: 'ka1';
    src: url('../ka1.ttf') format('truetype');
}

@font-face {
    font-family: 'BoldPixels';
    src: url('../BoldPixels.ttf') format('truetype');
}

.pokemon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
    color: #555B6E;
    font-family: 'ka1';
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.pokemon-title img {
    height: 60px;
    width: auto;
    image-rendering: pixelated;
}

.columns {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.column {
    flex: 1;
    min-width: 0;
    border: 2px solid #89B0AE;
    border-radius: 15px;
    padding: 20px;
    background-color: #BEE3DB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trainer-name {
    font-size: 24px;
    font-weight: bold;
    margin: -20px -20px 0 -20px;
    padding: 12px 20px;
    text-align: left;
    color: #FAF9F9;
    font-family: 'BoldPixels', monospace;
    background-color: #89B0AE;
    border-radius: 13px 13px 0 0;
}

.pokemon-list {
    list-style: none;
    margin: 0 -20px -20px -20px;
    padding: 0;
}

.pokemon-list li {
    display: flex;
    align-items: end;
    padding: 4px 8px;
    font-size: 18px;
    font-family: 'BoldPixels', monospace;
    color: #555B6E;
}

.pokemon-list li:nth-child(odd) {
    background-color: rgba(137, 176, 174, 0.2);
}

.pokemon-icon {
    margin-right: 5px;
    height: 32px;
    width: auto;
}

@media (max-width: 768px) {
    .columns {
        flex-wrap: wrap;
    }

    .column {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .pokemon-title {
        flex-direction: column;
        font-size: 24px;
        margin-bottom: 20px;
        gap: 5px;
    }

    .pokemon-title img {
        height: 40px;
    }

    .columns {
        flex-direction: column;
        gap: 10px;
    }

    .column {
        min-width: 0;
    }

    .trainer-name {
        font-size: 18px;
    }

    .pokemon-list li {
        font-size: 14px;
    }

    .pokemon-icon {
        height: 24px;
    }
}
