.promo-card {
    background: #1e3a8a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.promo-header {
    background: #172554;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.promo-header h3 { 
    margin: 0; 
    font-weight: 700; 
    font-size: 20px; 
    color: #fff;
}

.promo-header span { 
    font-size: 14px; 
    opacity: 0.9; 
}

.promo-table-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.promo-table thead th {
    background: #facc15;
    color: #1e3a8a;
    padding: 15px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    width: 50%;
}

/* ✅ FIX: Center ALL table cells */
.promo-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-weight: 600;
    white-space: normal !important;
    word-wrap: break-word;
    vertical-align: middle;
    text-align: center; /* ✅ Center everything */
    transition: all 0.2s ease;
}

.promo-table tbody tr {
    transition: background-color 0.2s ease;
}

/* ✅ FIX: High contrast hover color */
.promo-table tbody tr:hover {
    background-color: #dbeafe !important;
}

.promo-table tbody tr:hover td {
    color: #1e3a8a;
}

/* ✅ FIX: Min deposit row centered */
.promo-table .min-deposit-row td {
    background: #1e3a8a;
    color: #facc15;
    font-size: 12px;
    padding: 10px 20px;
    border-bottom: none;
    text-align: center;
}

.promo-table .min-deposit-row:hover td {
    background: #172554 !important;
    color: #facc15 !important;
}