.cookie-modal {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(10px);
            color: #f9fafb;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 1000;
            opacity: 0;
            transition: all 0.4s ease;
            max-width: 90%;
            box-sizing: border-box;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

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

        .cookie-text a {
            color: #60a5fa;
            text-decoration: underline;
        }

        .cookie-btn {
            background: none;
            color: white;
            border: 1px white solid;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cookie-btn:hover {
            background: white;
            color: black;
        }

        @media (max-width: 600px) {
            .cookie-modal {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
                left: 10px;
                right: 10px;
                transform: translateY(100px);
                max-width: none;
            }
            .cookie-modal.active {
                transform: translateY(0);
            }
            .cookie-btn {
                width: 100%;
                text-align: center;
            }
        }