/* Enhanced Game-style Slider */
.game-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.game-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffae00, transparent);
    z-index: 10;
}

.game-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffae00, transparent);
    z-index: 10;
}

.slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffae00;
    border: 2px solid #ffae00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 0 10px rgba(255, 174, 0, 0.5);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.game-slider:hover .slider-nav-btn {
    opacity: 1;
}

.slider-nav-btn:hover {
    background: rgba(255, 174, 0, 0.8);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.m_picFous {
    position: absolute;
    bottom: 15px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.m_picFous .hd ul {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 8px 15px;
    gap: 10px;
}

.m_picFous .hd ul li {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m_picFous .hd ul li.on {
    background: #ffae00;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 174, 0, 0.7);
}

.m_picFous .hd ul li:hover {
    background: rgba(255, 174, 0, 0.7);
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slider__item:hover .slider-caption {
    transform: translateY(0);
}

.slider-caption h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#sliderList {
    transition: all 0.5s ease !important;
}

.slider__item {
    position: relative;
    overflow: hidden;
}

.slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider__item:hover img {
    transform: scale(1.05);
}

/* Game Footer Download & Registration Links */
.game-footer-links {
    background-size: 100% auto;
    padding: 40px 0 100px;
    margin-top: 30px;
    position: relative;
}

.game-footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ffae00, transparent);
}

.game-download-section {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid #8b6d4f;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.game-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ffae00, transparent);
}

.game-download-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ffae00, transparent);
}

.game-download-header {
    margin-bottom: 25px;
}

.game-download-header h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 174, 0, 0.5);
}

.game-download-header h2 span {
    color: #ffae00;
    font-weight: bold;
}

.game-download-header p {
    color: #ccc;
    font-size: 16px;
}

.game-download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.game-download-btn {
    background: linear-gradient(to bottom, rgba(139, 109, 79, 0.8), rgba(90, 70, 50, 0.8));
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #8b6d4f;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.game-download-btn i {
    font-size: 20px;
}

.game-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    color: #ffae00;
    border-color: #ffae00;
}

.game-download-btn:active {
    transform: translateY(1px);
}

.game-download-register {
    background: linear-gradient(to bottom, rgba(255, 174, 0, 0.8), rgba(209, 140, 0, 0.8));
    border-color: #ffae00;
}

.game-download-register:hover {
    background: linear-gradient(to bottom, rgba(255, 186, 28, 0.9), rgba(224, 152, 0, 0.9));
    color: #fff;
}

.game-download-pc:hover {
    background: linear-gradient(to bottom, rgba(156, 124, 92, 0.9), rgba(106, 86, 66, 0.9));
}

.game-download-android {
    background: linear-gradient(to bottom, rgba(40, 167, 69, 0.8), rgba(30, 126, 52, 0.8));
    border-color: #28a745;
}

.game-download-android:hover {
    background: linear-gradient(to bottom, rgba(40, 167, 69, 0.9), rgba(30, 126, 52, 0.9));
    border-color: #28a745;
    color: #fff;
}

.game-download-ios {
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.8), rgba(10, 88, 202, 0.8));
    border-color: #0d6efd;
}

.game-download-ios:hover {
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.9), rgba(10, 88, 202, 0.9));
    border-color: #0d6efd;
    color: #fff;
}

@media (max-width: 768px) {
    .game-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-download-btn {
        width: 80%;
    }
}

