
/* Language Switcher */
.lang-switcher-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
}

.lang-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.lang-btn-circle:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #d4af37;
}

.lang-menu {
    position: absolute;
    top: 50px;
    right: 0;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    width: 160px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.lang-menu.show {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    font-weight: bold;
}

.lang-option:hover {
    background: #222;
}

.lang-option .flag {
    font-size: 20px;
    margin-right: 10px;
}

.lang-option.active {
    background: #333;
    color: #d4af37;
}

/* Footer Customization */
.footer-custom {
    background: linear-gradient(to right, #1e0329, #250034);
    color: #fff;
    padding: 40px 20px 20px; /* Increased bottom padding to accommodate disclaimer */
    font-size: 13px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-col-brand {
    flex: 0 0 250px; /* Fixed width for brand column */
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-heading {
    color: #d4af37;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94ffc1;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.social-icon-btn {
    display: inline-block;
    width: 38px;
    height: 38px;
    transition: transform 0.3s;
}

.social-icon-btn img {
    width: 100%;
    height: 100%;
}

.social-icon-btn:hover {
    transform: scale(1.1);
}

.support-img-footer {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 15px auto 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.support-img-footer:hover {
    transform: scale(1.05);
}

/* Footer 18+ Disclaimer (Removed) */
/* .footer-bottom-disclaimer {
    display: none;
} */

/* Copyright Center */
.copyright {
    text-align: center !important;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    color: #aaa;
}

/* Scroll To Top Button Customization */
body #scrollToTopBtn {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body #scrollToTopBtn.show {
    opacity: 1 !important;
    visibility: visible !important;
}

body #scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

body #scrollToTopBtn img {
    width: 100% !important;
    height: auto !important;
    filter: none !important;
}

/* Contact Box adjustments */
.contact-box.contact-sp {
    right: 15px !important;
    margin-top: 70px !important;
}

/* Policy Page Styles */
body.policy-page {
    background: #000;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 20px;
}

.policy-title {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.policy-content h3 {
    color: #d4af37;
    margin-top: 25px;
}

.policy-content p, .policy-content li {
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
}

.back-home {
    display: inline-block;
    margin-bottom: 20px;
    color: #aaa;
    text-decoration: none;
}

.back-home:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-col-brand {
        order: 1; /* Move brand to bottom or top as needed, user image has it left/top */
        margin-bottom: 40px;
        flex: auto;
    }
    
    .lang-switcher-container {
        top: 10px;
        right: 10px;
    }
    
    .policy-container {
        margin-top: 60px;
        padding: 15px;
    }
    
    body #scrollToTopBtn {
        bottom: 80px !important;
        right: 15px !important;
    }
}

/* iPad / Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-col {
        min-width: 140px; /* Reduce min-width to fit 768px */
        padding: 0 8px;
    }

    .footer-col-brand {
        flex: 0 0 200px; /* Reduce brand width slightly */
    }
    
    .footer-heading {
        font-size: 13px; /* Slightly smaller text */
    }
    
    .footer-links a {
        font-size: 13px;
    }
}
