/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* Game Preview Styles */
.game-preview-container {
    margin-bottom: 20px;
}

.game-preview-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.game-preview-image:hover .game-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.game-preview-image:hover .game-thumbnail {
    transform: scale(1.05);
}

.btn-start-game {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-start-game:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.7);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-start-game i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-preview-image {
        max-width: 100%;
        height: 300px;
    }
    
    .btn-start-game {
        padding: 12px 30px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .game-preview-image {
        height: 250px;
    }
    
    .btn-start-game {
        padding: 10px 25px;
        font-size: 16px;
    }
}