/* Footer Styles */
footer {
    background: rgba(13, 31, 46, 0.95);
    padding: 60px 20px 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 151, 57, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.footer-newsletter {
    max-width: 400px;
}

.footer-newsletter h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-newsletter p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: #009739;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form .btn-primary:hover {
    background: #00b344;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #009739;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0e0e0;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #009739;
}

.footer-column p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.responsible-gaming {
    list-style: disc;
    padding-left: 20px;
}

.responsible-gaming li {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 151, 57, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    color: #ffffff;
}

.social-icon:hover {
    background: #009739;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
