/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background: #0f0f18;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.cookie-consent p {
    margin: 0 0 10px;
    font-size: calc(0.9rem * 1.2);
    line-height: 1.6;
}

.cookie-consent a {
    color: #6b48ff;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #7c5aff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center; /* Changed from flex-end to center */
}

.cookie-btn {
    background-color: #6b48ff;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: calc(0.9rem * 1.2);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #7c5aff;
}

/* Media Queries for Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 5px;
        left: 5px;
        right: 5px;
        padding: 10px;
    }

    .cookie-consent p {
        font-size: calc(0.85rem * 1.2);
    }

    .cookie-btn {
        padding: 6px 12px;
        font-size: calc(0.85rem * 1.2);
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        max-width: 100%;
    }
}