/* Top Games Section */
.top-games-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(13, 41, 56, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 151, 57, 0.2);
}

.game-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: all 0.3s;
}

.game-provider {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.game-stat i {
    color: #009739;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.feature {
    font-size: 0.75rem;
    background: rgba(0, 151, 57, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    color: #e0e0e0;
    border: 1px solid rgba(0, 151, 57, 0.2);
}

.btn-play {
    display: block;
    text-align: center;
    background: #009739;
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-play:hover {
    background: #00b344;
    transform: translateY(-2px);
}

/* Player Ratings Section */
.player-ratings-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ratings-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.rating-card {
    background: rgba(13, 41, 56, 0.8);
    border-radius: 15px;
    overflow: hidden;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 151, 57, 0.2);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.rating-logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.rating-score {
    text-align: center;
}

.rating-score .score {
    font-size: 2rem;
    font-weight: 700;
    color: #009739;
    margin-bottom: 5px;
}

.rating-score .stars {
    color: gold;
    font-size: 1.2rem;
}

.rating-body {
    margin-bottom: 25px;
}

.rating-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rating-category span {
    font-size: 0.9rem;
    color: #e0e0e0;
    width: 25%;
}

.rating-category span:last-child {
    text-align: right;
    color: #009739;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 45%;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #009739;
    border-radius: 4px;
}

.rating-footer {
    display: flex;
    gap: 10px;
}

.btn-read-reviews {
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    flex: 1;
}

.btn-read-reviews:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-claim-rating {
    padding: 10px 15px;
    border-radius: 10px;
    background: #009739;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    flex: 1;
}

.btn-claim-rating:hover {
    background: #00b344;
    transform: translateY(-2px);
}

/* Deposit Methods Section */
.deposit-methods-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.method-card {
    background: rgba(13, 41, 56, 0.8);
    border-radius: 15px;
    overflow: hidden;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 151, 57, 0.2);
}

.method-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.method-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.method-detail {
    text-align: center;
    flex: 1;
}

.detail-label {
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-bottom: 5px;
    display: block;
}

.detail-value {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.method-casinos {
    font-size: 0.8rem;
    color: #009739;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.5s forwards;
}

.pulse {
    animation: pulse 2s infinite;
}




/* Ajout au fichier css/components.css */

/* Nouveau style pour le bouton d'obtention de bonus */
.btn-claim-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #009739;
    color: white;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-claim-bonus:hover {
    background: #00b344;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-claim-bonus i {
    font-size: 1.2rem;
}

/* Mise à jour de la section rating-footer */
.rating-footer {
    width: 100%;
}
