/* ===== FOOTER STYLES (PlayNow Casino Design) ===== */
.game-footer {
    background: #2a2a2a;
    color: white;
    position: relative;
    padding: 0;
    margin-top: 60px;
}

/* Payment Methods Section */
.footer-payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
    border-bottom: 1px solid #444;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-logo {
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-text {
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
}

/* Main Footer Content */
.footer-main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Social Media Section */
.social-media {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ownership-text {
    color: #ccc;
    font-size: 0.85rem;
    text-align: center;
    margin: 0 0 15px 0;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 2px;
}

/* GameSense Tab */
.gamesense-tab {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #2d5a2d;
    color: white;
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 8px 8px 0;
}

/* Bottom Section */
.footer-bottom {
    padding: 30px 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: justify;
}

.read-more-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #54a0ff;
}



/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-payment-methods {
        gap: 20px;
        padding: 20px 15px;
    }
    
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .gamesense-tab {
        display: none;
    }
    

}

@media (max-width: 480px) {
    .footer-payment-methods {
        gap: 15px;
        padding: 15px 10px;
    }
    
    .payment-logo {
        font-size: 0.8rem;
    }
    
    .payment-text {
        font-size: 0.7rem;
    }
    
    .footer-main-content {
        padding: 25px 10px;
    }
    
    .footer-bottom {
        padding: 20px 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}
