/* Game Automation — Frontend Styles */

/* ── Info Tables (Game Controls & Technical Specs) ── */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 32px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.game-info-table thead tr {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: left;
}

.game-info-table th {
    padding: 12px 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 13px;
}

.game-info-table td {
    padding: 11px 18px;
    border-bottom: 1px solid #e8ecf0;
    color: #333;
}

.game-info-table tbody tr:last-child td {
    border-bottom: none;
}

.game-info-table tbody tr:nth-child(even) {
    background-color: #f7f9fb;
}

.game-info-table tbody tr:hover {
    background-color: #eef2f7;
    transition: background-color 0.15s ease;
}

/* ── Pro Tips Container ── */
.pro-tips-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-left: 4px solid #4a6cf7;
    border-radius: 0 8px 8px 0;
    padding: 18px 24px;
    margin: 16px 0 28px;
}

.pro-tips-container ol {
    margin: 0;
    padding-left: 20px;
}

.pro-tips-container ol li {
    padding: 6px 0;
    line-height: 1.7;
    color: #2d3748;
}

.pro-tips-container ol li + li {
    margin-top: 6px;
}
