/* Footer Styles - Pinbet */

/* Footer */
.footer {
    background: #2a004a;
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo .logo-exclamation {
    color: #99ff00;
    font-size: 28px;
    font-weight: 700;
}

.footer-description p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-license img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #99ff00;
}

.payment-method img {
    max-width: 60px;
    height: auto;
    border-radius: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #99ff00;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsible Gaming Section */
.responsible-gaming {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gaming-warning {
    text-align: center;
    margin-bottom: 30px;
}

.gaming-warning p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gaming-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gaming-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #99ff00;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.gaming-icon span {
    font-size: 12px;
    color: #cccccc;
    max-width: 120px;
}

.therapy-seal img {
    max-width: 120px;
    height: auto;
    border-radius: 5px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    background: #99ff00;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(153, 255, 0, 0.3);
}

.floating-btn:hover {
    background: #7acc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 255, 0, 0.4);
}

.floating-btn.scroll-top {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gaming-icons {
        gap: 20px;
    }
    
    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-description p {
        font-size: 13px;
    }
    
    .gaming-icons {
        flex-direction: column;
        gap: 15px;
    }
    
    .gaming-icon {
        flex-direction: row;
        gap: 15px;
    }
    
    .gaming-icon span {
        max-width: none;
        text-align: left;
    }
    
    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    animation: fadeInUp 0.6s ease;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #99ff00;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #99ff00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7acc00;
}

/* Print styles */
@media print {
    .floating-buttons {
        display: none;
    }
    
    .footer {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .footer-logo .logo-text,
    .footer-logo .logo-exclamation {
        color: #000000 !important;
    }
    
    .footer-column h4 {
        color: #000000 !important;
    }
    
    .footer-column ul li a {
        color: #000000 !important;
    }
}
