:root {
    --primary-color: #e74c3c;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --nav-news: #e20f11;
    --nav-show: #ff6b00;
    --nav-sport: #00b000;
    --nav-life: #0066ff;
    --nav-viral: #9c27b0;
    --nav-video: #607d8b;
    --nav-express: #795548;
    --nav-kupi: #ff9800;
    --nav-shop: #333333;
    --nav-plus-bg: #ff6b00;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fbfaf4;
}

nav.nav-scroll {
    position: relative;
    z-index: 2;
    height: 2rem;
    box-sizing: border-box;
    overflow-y: hidden;
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    line-height: 1em;
}

nav.nav-scroll > ul {
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

nav.nav-scroll > ul > li > a {
    font-weight: 500;
}

.uk-logo > img {
    height: 58px;
}

#header.uk-sticky-below {
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.07);
}

/* Header styling */
.uk-navbar-container:not(.uk-navbar-transparent) {
    background: #fbfaf4;
}

.uk-navbar-container.uk-sticky {
    background: #fbfaf4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.uk-navbar-container {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
}

.uk-logo {
    padding: 10px 0;
}

.uk-logo img {
    height: 40px;
    width: auto;
}

/* Navigation styling */
.uk-navbar-nav {
    gap: 5px;
}

.uk-navbar-nav > li > a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    color: #333;
    transition: all 0.2s ease;
    position: relative;
    padding: 0 10px;
    min-height: 60px;
    letter-spacing: 0.5px;
}

/* Navigation colors */
.uk-navbar-nav > li > a.nav-plus {
    background: var(--nav-plus-bg);
    color: white !important;
}

.uk-navbar-nav > li > a.nav-news { color: var(--nav-news); }
.uk-navbar-nav > li > a.nav-show { color: var(--nav-show); }
.uk-navbar-nav > li > a.nav-sport { color: var(--nav-sport); }
.uk-navbar-nav > li > a.nav-life { color: var(--nav-life); }
.uk-navbar-nav > li > a.nav-viral { color: var(--nav-viral); }
.uk-navbar-nav > li > a.nav-video { color: var(--nav-video); }
.uk-navbar-nav > li > a.nav-express { color: var(--nav-express); }
.uk-navbar-nav > li > a.nav-kupi { color: var(--nav-kupi); }
.uk-navbar-nav > li > a.nav-shop { color: var(--nav-shop); }

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.uk-navbar-nav > li:hover > a::after {
    transform: scaleX(1);
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
    gap: 15px;
}

.nav-buttons a {
    color: #666;
    transition: all 0.2s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-buttons a:hover {
    color: #333;
}

.nav-buttons .nav-user {
    font-size: 24px;
}

/* Mobile menu button */
.uk-navbar-toggle {
    color: #333;
    padding: 0 15px;
}

/* Container */
.uk-container-expand {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Search overlay */
.nav-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-search-overlay .uk-search {
    max-width: 600px;
    margin: 0 auto;
}

.nav-search-overlay .uk-search-input {
    height: 50px;
    font-size: 1.2rem;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    padding: 0 50px;
}

.nav-search-close {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    color: #666;
}

/* Mega Menu Styling */
.uk-navbar-dropdown {
    padding: 30px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 0;
    border: none;
}

.uk-navbar-dropdown-grid {
    margin-left: -30px;
}

.uk-navbar-dropdown-grid > * {
    padding-left: 30px;
}

.uk-navbar-dropdown-grid > .uk-first-column {
    border-right: 1px solid rgba(0,0,0,0.08);
}

.mega-menu-section {
    margin-bottom: 20px;
}

.mega-menu-section:last-child {
    margin-bottom: 0;
}

.mega-menu-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.mega-menu-featured {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mega-menu-featured img {
    border-radius: 4px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list li:last-child {
    margin-bottom: 0;
}

.mega-menu-list a {
    color: var(--dark-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mega-menu-list i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.mega-menu-newsletter {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.mega-menu-newsletter h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.mega-menu-newsletter .uk-search {
    width: 100%;
}

.mega-menu-newsletter .uk-search-input {
    background: white;
    border-radius: 4px;
    padding-right: 100px;
}

.mega-menu-newsletter .uk-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    padding: 0 15px;
}

/* Search styling */
.uk-navbar-item .uk-search {
    margin-left: 30px;
}

.uk-search-navbar {
    width: 250px;
}

.uk-search-navbar .uk-search-input {
    height: 40px;
    font-size: 15px;
    border-radius: 20px;
    background: var(--light-bg);
    padding-left: 40px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.uk-search-navbar .uk-search-input:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.uk-search-icon {
    color: #999;
}

/* Dropbar styling */
.uk-dropbar {
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.uk-dropbar-top {
    transform-origin: 0 0;
}

/* Top bar styling */
.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    margin-right: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.top-bar a:hover {
    color: white;
    text-decoration: none;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar .uk-divider-vertical {
    height: 15px;
    margin: 0 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-left: 8px;
    color: white;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

/* News card styling */
.uk-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.uk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-category.sport {
    background-color: #2ecc71;
}

.card-category.biznis {
    background-color: #f39c12;
}

.card-category.kultura {
    background-color: #9b59b6;
}

.card-category.tech {
    background-color: #3498db;
}

.card-meta {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 10px;
}

.card-meta > * {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.card-meta i {
    margin-right: 5px;
}

.uk-overlay-primary {
    background: rgba(0,0,0,0.6);
    padding: 20px;
}

/* Featured sections */
.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--dark-text);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.featured-slider .uk-slidenav {
    background: rgba(255,255,255,0.9);
    color: var(--dark-text);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar styling */
.sidebar-heading {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    position: relative;
}

.sidebar-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.popular-post {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post:first-child {
    padding-top: 0;
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post .uk-width-auto img {
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-post:hover .uk-width-auto img {
    transform: scale(1.05);
}

.popular-post h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-post h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.popular-post h4 a:hover {
    color: var(--primary-color);
}

.popular-post .uk-text-small {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.popular-post .uk-text-small i {
    color: var(--primary-color);
    margin-right: 5px;
}

.tag-cloud a {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 0 5px 10px 0;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Video section styling */
.video-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: white;
}

.video-section .section-title {
    color: white;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-card img {
    transition: all 0.5s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.video-card .uk-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 20px;
}

.video-card .uk-h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Footer styling */
.uk-section-secondary {
    background-color: #1a2530;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    display: flex;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.uk-section-secondary.uk-padding-small {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #131c25;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Newsletter form */
.newsletter-form .uk-input {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 10px 15px;
    height: auto;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .uk-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .uk-button {
    background: var(--primary-color);
    color: white;
    border-radius: 0 4px 4px 0;
    text-transform: none;
    font-weight: 500;
}

/* Breaking news ticker */
.breaking-news {
    background-color: #19bb97;
    color: white;
    padding: 10px 0;
}

.breaking-label {
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0,0,0,0.2);
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 15px;
}

.ticker-content {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .hero-main .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-main {
        height: 400px;
    }
    
    .hero-secondary {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .hero-main .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-main {
        height: 350px;
    }
    
    .hero-secondary {
        height: 180px;
    }
    
    .hero-overlay {
        padding: 20px;
    }
    
    .breaking-label {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
}

.hero-grid {
    margin-top: 30px;
}

.hero-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-item:hover {
    transform: translateY(-5px);
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-item:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.hero-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: #e20f11;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 15px;
}

.hero-category.sport {
    background-color: #2196F3;
}

.hero-category.tech {
    background-color: #4CAF50;
}

.hero-title {
    color: #fff;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-secondary .hero-title {
    font-size: 1.25rem;
}

.hero-meta {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-meta span {
    margin-right: 20px;
}

.hero-meta i {
    margin-right: 5px;
}

.hero-main {
    height: 500px;
}

.hero-secondary {
    height: 240px;
    margin-bottom: 20px;
}

.hero-secondary:last-child {
    margin-bottom: 0;
}

@media (max-width: 959px) {
    .hero-main {
        height: 400px;
    }
    
    .hero-secondary {
        height: 200px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-secondary .hero-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 639px) {
    .hero-main {
        height: 300px;
    }
    
    .hero-overlay {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-meta span {
        margin-right: 10px;
        font-size: 0.75rem;
    }
}

/* Responsive adjustments for popular posts */
@media (max-width: 959px) {
    .popular-post h4 {
        font-size: 14px;
    }
    
    .popular-post .uk-width-auto img {
        width: 70px;
        height: 50px;
    }
}

@media (max-width: 639px) {
    .popular-post h4 {
        font-size: 13px;
    }
    
    .popular-post .uk-width-auto img {
        width: 60px;
        height: 45px;
    }
    
    .sidebar-heading {
        font-size: 18px;
    }
}

/* Article Page Styles */
.article-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.uk-article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.uk-article-meta {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 30px;
}

.author-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin: 40px 0 20px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content .uk-text-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

.article-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 15px 30px;
    background: #f8f8f8;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.article-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin: 0;
}

.article-content blockquote footer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.article-content blockquote cite {
    color: var(--primary-color);
}

.article-tags h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.author-box {
    background: #f8f8f8;
    border-radius: 8px;
    border: none;
}

.author-box h4 {
    font-size: 1.2rem;
    color: #333;
}

.author-box p {
    color: #666;
    margin: 10px 0;
}

.author-box .uk-icon-button {
    background: #fff;
    color: #666;
    transition: all 0.3s ease;
}

.author-box .uk-icon-button:hover {
    background: var(--primary-color);
    color: white;
}

/* Comments Styling */
.uk-comment {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.uk-comment:hover {
    background: #f1f1f1;
}

.uk-comment-title {
    font-size: 1.1rem;
    color: #333;
}

.uk-comment-meta {
    font-size: 0.85rem;
}

.uk-comment-body {
    padding-top: 15px;
}

.uk-comment.uk-margin-left {
    margin-left: 50px;
    border-left: 2px solid var(--primary-color);
}

/* Related Articles */
.uk-card-title {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 959px) {
    .uk-article-title {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content .uk-text-lead {
        font-size: 1.2rem;
    }
    
    .article-content blockquote {
        padding: 15px 20px;
    }
}

@media (max-width: 639px) {
    .uk-article-title {
        font-size: 1.5rem;
    }
    
    .uk-article-meta {
        padding: 15px;
        flex-direction: column;
    }
    
    .uk-article-meta .uk-margin-auto-left {
        margin: 15px 0 0 0;
    }
    
    .article-content .uk-text-lead {
        font-size: 1.1rem;
    }
    
    .uk-comment.uk-margin-left {
        margin-left: 20px;
    }
}

/* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #2c3e50;
            color: #ffffff;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 10000;
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.6;
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

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

        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .cookie-btn-accept {
            background: #27ae60;
            color: white;
        }

        .cookie-btn-accept:hover {
            background: #219a52;
        }

        .cookie-btn-settings {
            background: #34495e;
            color: white;
        }

        .cookie-btn-settings:hover {
            background: #2c3e50;
        }

        .cookie-btn-reject {
            background: #e74c3c;
            color: white;
        }

        .cookie-btn-reject:hover {
            background: #c0392b;
        }

        .cookie-link {
            color: #3498db;
            text-decoration: underline;
        }

        .cookie-link:hover {
            color: #2980b9;
        }

        /* Cookie Settings Modal */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10001;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .cookie-modal.show {
            display: flex;
        }

        .cookie-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            margin: 20px;
        }

        .cookie-modal h2 {
            margin-top: 0;
            color: #2c3e50;
        }

        .cookie-category {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .cookie-category h3 {
            margin: 0 0 10px 0;
            color: #34495e;
        }

        .cookie-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
        }

        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .cookie-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .cookie-slider {
            background-color: #27ae60;
        }

        input:checked + .cookie-slider:before {
            transform: translateX(26px);
        }

        .cookie-modal-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
            
            .cookie-modal-content {
                margin: 10px;
                padding: 20px;
            }
        }
