body {
    overflow: auto !important;
}

.main-container {
    max-width: 1200px !important;
    margin: 3rem auto 2rem auto !important;
    padding: 30px;
    background: #1a1a1a;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    text-align: left; 
    color: #eee; 
}

.game-section {
    margin-bottom: 40px;
    padding: 20px;
    border-bottom: 1px solid #333; 
}

.game-section:last-child {
    border-bottom: none; 
}

.game-section h2 {
    color: #f8f9fa; 
    margin-top: 0;
    margin-bottom: 15px; 
    text-align: center; 
}

.game-section p {
    line-height: 1.6; 
    margin-bottom: 15px;
}

.video-placeholder {
    background-color: #333;
    color: #ccc; 
    text-align: center;
    padding: 50px 0;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
}

.stats-table {
    margin-top: 20px;
}

.stats-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    position: relative;
}

.stats-table caption {
    caption-side: bottom; 
    text-align: center; 
    font-style: italic; 
    color: rgb(204,204,204); 
    padding-top: 10px; 
}

.stats-table details {
    padding: 10px; 
    border: 1px solid #444; 
    border-radius: 5px; 
    margin-bottom: 10px;
}

.stats-table th, .stats-table td {
    padding: 10px;
    border: 1px solid #444;
    text-align: center;
}

.stats-table th {
    background-color: #333;
    color: #fff;
}

.stats-table tr:nth-child(even) {
    background-color: #2c2c2c; 
}

.table-dark.table-striped tbody tr:nth-child(even) {
    background-color: #2c2c2c !important;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #444 !important;
}

.table-dark {
    --bs-table-bg: #222 !important;
    color: #eee !important;
}

.table-dark th {
    color: #fff !important;
}

.game-section ol {
    list-style: none; 
    padding-left: 0; 
    margin-bottom: 10px;
}

.game-section li {
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 5px;
    line-height: 1.4;
    padding-left: 15px; 
    position: relative; 
}

.game-section li::before {
    content: "\2022"; 
    color: #eee; 
    font-size: 1.2em; 
    position: absolute; 
    left: 0; 
    top: 0.2em;
}

.poker-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.poker-details ul {
    flex-grow: 1; 
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.poker-details li {
    display: flex;
    align-items: center; 
    margin-bottom: 5px;
    line-height: 1.4;
    padding-left: 15px;
    position: relative;
}

.poker-details li::before {
    content: "\2022";
    color: #eee;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 50%; 
    transform: translateY(-50%);
}

.poker-image-container {
    flex: 0 0 auto; 
    width: 200px; 
    margin-left: 20px; 
}

.poker-image-container img {
    display: block; 
    width: 100%; 
    height: auto; 
    border-radius: 5px; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}