.cookie-container {
    position: fixed; bottom: -100px; left: 0; width: 100%; background-color: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--color-accent); z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
    transition: bottom 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-container.show { bottom: 0; }
.cookie-content { width: 50%; margin: 0 auto; padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cookie-content p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--color-text-muted); }
.cookie-btn { white-space: nowrap; }