    .su-embed-code .card {
            height: 100%; margin-bottom: 0;
        }
        .image-card .btn {
            background-color: #cad400;
            border-color: #cad400;
            color: #242f60;
        }
        
        .cookie-modal {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #242f60;
        color: white;
        padding: 0;
        border-radius: 8px;
        max-width: 800px;
        width: 90%;
        z-index: 10000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .cookie-modal-header {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #fff;
            padding: 10px 20px;
        }
        
        .cookie-logo {
            margin-right: 20px;
        }
        
        .cookie-tabs {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }
        
        .cookie-tabs li {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
            color: #cad400;
            font-weight: bold;
        }
        
        .cookie-tabs li.active {
            border-bottom: 2px solid #cad400;
            color: white;
        }
        
        .cookie-modal-content {
            padding: 20px;
        }
        
        .cookie-tab-content {
            display: none;
        }
        
        .cookie-tab-content.active {
            display: block;
        }
        
        .cookie-detail-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .cookie-detail-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .cookie-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #cad400;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .cookie-modal-footer {
            display: flex;
            justify-content: space-between;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .cookie-btn {
            background: #cad400;
            color: #242f60;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            flex: 1;
            margin: 0 5px;
        }
        
        .cookie-btn.highlight {
            background: #cad400;
        }
        
        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }
