.toto80-rtp-container {
    background: linear-gradient(135deg, #38040b 0%, #1a0205 100%);
    border: 2px solid #d4af37;
    border-radius: 18px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.3);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.toto80-rtp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #800020;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.toto80-rtp-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffcc00;
    text-transform: uppercase;
}
.toto80-rtp-meta {
    font-size: 13px;
    color: #f0a5a5;
    background: #520c17;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #800020;
}
.toto80-rtp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.toto80-rtp-card {
    background: linear-gradient(145deg, #520c17, #2e050c);
    border: 1px solid #800020;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease;
}
.toto80-rtp-card:hover {
    transform: scale(1.03);
    border-color: #ffcc00;
}
.toto80-game-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.toto80-progress-bar {
    background: #1a0205;
    border-radius: 10px;
    height: 12px;
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid #800020;
}
.toto80-progress-fill {
    background: linear-gradient(90deg, #ff334b, #ffcc00);
    height: 100%;
    border-radius: 10px;
}
.toto80-rtp-value {
    font-size: 16px;
    font-weight: 800;
    color: #ffcc00;
}
@media (max-width: 768px) {
    .toto80-rtp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}