/* --- Cookie Banner --- */
        .cookie-banner {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(40px);
            background: #1e1e1e;
            color: #fff;
            padding: 20px 25px;
            border-radius: 12px;
            width: 90%;
            max-width: 420px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 9999;
        }

        .cookie-banner.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .cookie-content h3 {
            margin: 0 0 10px;
            font-size: 20px;
        }

        .cookie-content p {
            margin: 0 0 15px;
            font-size: 14px;
            line-height: 1.4;
        }

        .cookie-buttons {
            text-align: right;
        }

        .cookie-accept {
            background: #4CAF50;
            color: #fff;
            padding: 10px 18px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .cookie-accept:hover {
            background: #45a049;
        }