.mtm_table {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mtm_table .table_line {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 2px;
    padding: 3px 0;
    border-radius: 5px;
    background: #333;
    text-align: center;
}

.mtm_table .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.mtm_table .image img,
.mtm_table .image amp-img {
    width: 96px;
    max-width: 96px;
    height: 35px;
    border: 1px solid #8224e3;
    border-radius: 5px;
    object-fit: contain;
}

.mtm_table .bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
}

.mtm_table .bonus a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 5px 0;
    border-radius: 5px;
    background: #8224e3;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    animation: mtm-lightning 1s infinite alternate;
}

.mtm-empty {
    padding: 10px 12px;
    border-left: 4px solid #dba617;
    background: #fff8e5;
}

@keyframes mtm-lightning {
    from { box-shadow: inset 0 0 2.5px #000; }
    to { box-shadow: inset 0 0 10px #6f00ba; }
}

@media (prefers-reduced-motion: reduce) {
    .mtm_table .bonus a { animation: none; }
}

@media (max-width: 640px) {
    .mtm_table .table_line {
        flex-wrap: nowrap;
        column-gap: 10px;
    }

    .mtm_table .bonus a { font-size: 12px; }
    .mtm_table .image img,
    .mtm_table .image amp-img {
        width: 80px;
        max-width: 80px;
        height: 30px;
    }
}
