* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            padding: 20px;
        }

        /* Стили для уведомления о куки */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: -webkit-linear-gradient(90deg, #002196,#1a5fb4,#3584e4);/* Chrome 10-25, Safari 5.1-6 */
            background: linear-gradient(90deg, #002196,#1a5fb4,#3584e4);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
            color: white;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .cookie-content {
            flex: 1;
        }

        .cookie-content h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .cookie-content p {
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .cookie-links {
            margin-top: 10px;
        }

        .cookie-links a {
            color: #ddbb12;
            text-decoration: none;
            margin-right: 15px;
            font-size: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cookie-links a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 24px;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-accept {
            background: #960101;
            color: white;
        }

        .btn-accept:hover {
            background: #45a049;
            transform: translateY(-2px);
        }

        .btn-decline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .btn-decline:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        .btn-settings {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .btn-settings:hover {
            background: rgba(255,255,255,0.1);
        }

        /* Модальное окно настроек */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            color: #333;
        }

        .modal-content h2 {
            margin-bottom: 20px;
            color: #667eea;
        }

        .cookie-option {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }

        .cookie-option label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }

        .cookie-option input {
            width: 20px;
            height: 20px;
        }

        .cookie-option p {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #666;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .btn-save {
            background: #667eea;
            color: white;
            flex: 1;
        }

        .btn-save:hover {
            background: #5a67d8;
        }

        .btn-close {
            background: #f44336;
            color: white;
            flex: 1;
        }

        .btn-close:hover {
            background: #da190b;
        }

        @media (max-width: 768px) {
            .cookie-consent {
                flex-direction: column;
                text-align: center;
                bottom: 10px;
                padding: 20px;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
        }
