/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-cookie);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.3s ease-out;
    font-family: var(--mono-font);
}

.cookie-notice.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-notice__wrapper {
    background: rgba(35, 34, 37, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 212, 59, 0.2);
}

.cookie-notice__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem;
}

.cookie-notice__icon {
    flex-shrink: 0;
    color: #FFD43B;
    animation: cookieSpin 20s linear infinite;
}

.cookie-notice__text {
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
}

.cookie-notice__link {
    color: #FFD43B;
    text-decoration: none;
    border-bottom: 1px dotted #FFD43B;
    transition: border-color 0.2s ease;
}

.cookie-notice__link:hover {
    border-bottom-style: solid;
    color: #FFE873;
}

.cookie-notice__actions {
    flex-shrink: 0;
}

.cookie-notice__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD43B;
    color: #1a1a1a;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.cookie-notice__button:hover {
    background: #FFE873;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 211, 59, 0.2);
}

.button__text {
    position: relative;
    top: 1px;
}

.button__icon {
    fill: currentColor;
}

@keyframes cookieSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-notice__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-notice__text {
        text-align: center;
    }

    .cookie-notice__button {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for entrance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
