/**
 * XGX Social Banner Styles
 * 
 * @author XGX Games
 * @version 1.0.0
 */

.xgx-social-banner-section {
    padding: 0 0 40px 0;
    margin: -60px auto 40px auto;
    border-radius: 12px;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);*/
    max-width: 1200px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
@media (max-width: 767px) {
    .xgx-social-banner-section{
        margin-bottom: 0;
    }
}
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

/* Buy It Now Button */
.buy-now-section {
    text-align: center;
}
@media (min-width: 768px) {
    .buy-now-section {
        display: none;
    }
}

.buy-now-btn {
    display: inline-block;
    background: linear-gradient(to right, #A785DC, #6D42E7);
    color: white;
    text-decoration: none;
    padding: 16px 60px;
    border-radius: 8px;
    font-family: 'Narnoor', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 66, 231, 0.3);
}

.buy-now-btn:hover {
    background: linear-gradient(to right, #BD87F7, #6231FD);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 66, 231, 0.4);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #141519;
    border: 1px solid #433D47;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    background: transparent;
    border-color: #433D47;
    /*background: #BD87F7;*/
    /*border-color: #BD87F7;*/
    /*color: white;*/
    /*text-decoration: none;*/
    /*transform: translateY(-2px);*/
    /*box-shadow: 0 4px 15px rgba(189, 135, 247, 0.3);*/
}

.social-icon i {
    font-size: 20px;
}

/* Social Media Icon Specific Styles */
.social-discord i::before {
    content: "🎮";
    font-style: normal;
}

.social-facebook i::before {
    content: "f";
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.social-twitter i::before {
    content: "𝕏";
    font-style: normal;
}

.social-telegram i::before {
    content: "✈";
    font-style: normal;
}

.social-tiktok i::before {
    content: "♪";
    font-style: normal;
}

/* 图片图标样式 */
.social-icon img,
.social-media-img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-icon:hover img,
.social-icon:hover .social-media-img {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .xgx-social-banner-section {
        padding: 30px 0;
    }
    
    .banner-content {
        gap: 17px;
    }
    
    .buy-now-btn {
        width: 180px;
        padding: 0;
        border-radius: 10px;
        font-size: 14px;
        height: 26px;
        line-height: 26px;
        background: linear-gradient(90deg, #BD87F7 0%, #BD87F7 35%, #6130FD 100%);
    }
    
    .social-icon {
        width: 29px;
        height: 29px;
        border-radius: 3px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    .social-icons {
        gap: 17px;
    }
    .social-icon img, .social-media-img{
        width: 18px;
        height: 18px;
    }
}
