/* ======= ОСНОВА СТРАНИЦЫ ======= */
body {
    font-family: "Trebuchet MS", Arial, sans-serif;
    background: #0e0e0e;
    color: #e5e5e5;
    margin: 0;
    padding: 30px;
}

/* ======= ЗАГОЛОВОК ======= */
h1 {
    text-align: center;
    color: #9cff4f;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(156, 255, 79, 0.4);
}

/* ======= ТАБЛИЦА ======= */
.tank-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    background: #121212;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.15);
}

/* ======= ШАПКА ТАБЛИЦЫ ======= */
.tank-table thead th {
    background: linear-gradient(90deg, #1f1f1f, #2a2a2a);
    padding: 16px;
    color: #9cff4f;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 2px solid #2f2f2f;
    position: relative;
}

/* Светлый неоновый эффект */
.tank-table thead th::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40%;
    height: 2px;
    background: #9cff4f;
    transform: translateX(-50%);
}

/* ======= ЯЧЕЙКИ ======= */
.tank-table td {
    padding: 18px;
    font-size: 16px;
    line-height: 1.4;
    border-bottom: 1px solid #1f1f1f;
}

/* ======= КАРТИНКИ ======= */
.tank-table img {
    width: 160px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #1f1f1f;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
    transition: 0.3s;
}

/* Увеличение фото при наведении */
.tank-table img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(156, 255, 79, 0.5);
    border-color: #9cff4f;
}

/* ======= ЭФФЕКТ СТРОК ======= */
.tank-table tbody tr {
    transition: 0.25s;
}

.tank-table tbody tr:hover {
    background: #1a1a1a;
    box-shadow: inset 0 0 10px rgba(156, 255, 79, 0.2);
}

/* ======= МОБИЛЬНАЯ АДАПТАЦИЯ ======= */
@media (max-width: 768px) {

    .tank-table img {
        width: 120px;
    }

    td, th {
        font-size: 14px;
        padding: 10px;
    }
}
