/* Footer Update */
footer {
    border-top: 1px solid #222;
    margin-top: 4rem;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #666;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

footer p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none; /* Hidden by default */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cookie-text p {
    color: #a3a3a3;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    max-width: 700px;
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--accent-blue-hover);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie-accept:hover {
    background-color: #e5e5e5;
}

.btn-cookie-decline {
    background-color: transparent;
    color: #a3a3a3;
    border: 1px solid #333;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-decline:hover {
    border-color: #666;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

