.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 14px 24px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-consent.visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent p {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cookie-policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s ease;
}

.cookie-policy-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    opacity: 0.7;
}

.cookie-accept {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .cookie-consent {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
}
