.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.97);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}
.cookie-text { font-size: 14px; color: #ccc; flex: 1; min-width: 200px; }
.cookie-text a { color: #4ecdc4; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-accept { background: #4ecdc4; color: #1a1a2e; }
.cookie-decline { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.2); }
