/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* Game Ads Layout - Desktop Side Ads */
.game-ads-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.game-container-center {
    flex: 1;
    max-width: 100%;
}

.game-ad-left,
.game-ad-right {
    width: 160px;
    min-height: 600px;
    display: none;
    position: sticky;
    top: 20px;
}

.game-ad-below {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

/* Show side ads only on large desktop screens */
@media (min-width: 1400px) {
    .game-ad-left,
    .game-ad-right {
        display: block;
    }
}

/* Medium desktop - show only one side */
@media (min-width: 1200px) and (max-width: 1399px) {
    .game-ad-right {
        display: block;
    }
}

/* Social Share Buttons Styling */
.btn-share {
    transition: all 0.3s ease;
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-share i {
    font-size: 18px;
}

/* Social platform colors */
.btn-share .bi-facebook:hover {
    color: #1877f2;
}

.btn-share .bi-twitter:hover {
    color: #1da1f2;
}

.btn-share .bi-whatsapp:hover {
    color: #25d366;
}

.btn-share .bi-telegram:hover {
    color: #0088cc;
}

.btn-share .bi-pinterest:hover {
    color: #e60023;
}

.btn-share .bi-discord:hover {
    color: #5865f2;
}

.btn-share .bi-link-45deg:hover {
    color: #6c757d;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .game-ads-wrapper {
        flex-direction: column;
    }
    
    .game-ad-left,
    .game-ad-right {
        display: none !important;
    }
    
    .b-action {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-capsule,
    .btn-share {
        margin: 5px 3px;
        font-size: 14px;
    }
}