.cookierus-banner {
    position: fixed;
    z-index: 999999;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    box-sizing: border-box;
}

.cookierus-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.cookierus-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookierus-policy-link {
    display: inline-block;
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
    margin-top: 8px;
}

.cookierus-policy-link:hover {
    text-decoration: none;
}

/* Animations */
.cookierus-animate-fade { animation: cookierusFadeIn 0.5s; }
.cookierus-animate-slide { animation: cookierusSlideIn 0.5s; }
.cookierus-animate-bounce { animation: cookierusBounceIn 0.5s; }

@keyframes cookierusFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes cookierusSlideIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes cookierusBounceIn { 
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Positions & Desktop Responsiveness */
.cookierus-banner.pos-bottom { bottom: 0; left: 0; right: 0; width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }
.cookierus-banner.pos-top { top: 0; left: 0; right: 0; width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }

.cookierus-banner.pos-bottom-left { 
    bottom: 24px; 
    left: 24px; 
    right: auto; 
    width: calc(100% - 48px); 
    max-width: 455px; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start; 
}
.cookierus-banner.pos-bottom-right { 
    bottom: 24px; 
    right: 24px; 
    left: auto; 
    width: calc(100% - 48px); 
    max-width: 455px; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start; 
}
.cookierus-banner.pos-top-left { 
    top: 24px; 
    left: 24px; 
    right: auto; 
    width: calc(100% - 48px); 
    max-width: 455px; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start; 
}
.cookierus-banner.pos-top-right { 
    top: 24px; 
    right: 24px; 
    left: auto; 
    width: calc(100% - 48px); 
    max-width: 455px; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: flex-start; 
}

.cookierus-content-wrapper { flex: 1; }

.cookierus-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pos-bottom .cookierus-buttons, .pos-top .cookierus-buttons {
    justify-content: flex-end;
    margin-left: 24px;
    flex-shrink: 0;
}

.cookierus-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookierus-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .cookierus-banner.pos-bottom, .cookierus-banner.pos-top {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .cookierus-banner.pos-bottom, .cookierus-banner.pos-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .pos-bottom .cookierus-buttons, .pos-top .cookierus-buttons {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        justify-content: flex-start;
    }
    .cookierus-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .cookierus-banner {
        padding: 16px;
        gap: 12px;
    }
    .cookierus-title { font-size: 16px; }
    .cookierus-text { font-size: 13px; }
    .cookierus-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookierus-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Modal Styles */
.cookierus-modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.cookierus-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    max-width: 500px;
    width: calc(100% - 40px);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cookierus-category {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #f0f0f1;
    border-radius: 10px;
}
.cookierus-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
}
