/* ===== CSS VARIABLES ===== */
:root { 
    --header-red: #FF0000;
    --breaking-gray: #44444E;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --card-shadow: rgba(0,0,0,0.08);
    --overlay-bg: rgba(0,0,0,0.85);
    --overlay-gradient: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
    --transition: 0.3s ease;
}

[data-theme="dark"] { 
    --accent-color: #e74c3c;
    --text-color: #ecf0f1;
    --text-light: #bdc3c7;
    --text-muted: #95a5a6;
    --bg-light: #1a1a2e;
    --bg-white: #16213e;
    --border-color: #2c3e50;
    --card-shadow: rgba(0,0,0,0.3);
    --overlay-bg: rgba(0,0,0,0.9);
    --overlay-gradient: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
}

/* ===== GLOBAL RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-light); color: var(--text-color); line-height: 1.6; transition: background 0.1s ease, color 0.1s ease; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== CONTAINER & GRID ===== */
.container { max-width: 1184px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 20px; border-radius: 12px; }
.grid-v1 { grid-template-columns: 1.2fr 1fr; }
.grid-v2 { grid-template-columns: 2fr 1fr; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-right-4 { grid-template-columns: 1fr 1fr 1fr 1.5fr; }
.feature-block .grid { background: var(--bg-white); box-shadow: 0 2px 8px var(--card-shadow); }
.cat-group .grid { background: var(--bg-white); box-shadow: 0 2px 8px var(--card-shadow); gap: 0; }
.shadow { background: var(--bg-white); box-shadow: 0 2px 8px var(--card-shadow); gap: 0; }
.content-row { display: flex; flex-direction: column; gap: 20px; }
.sticky { overflow: hidden; position: sticky; top: 90px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.p-20 { padding: 20px; }

/* ===== HEADER TOP ===== */
.header-top { background: var(--bg-white); color: var(--text-color); padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.header-top-inner { max-width: 1588px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.new-arrivals { display: flex; align-items: center; gap: 10px; }
.new-arrivals-label { background: var(--accent-color); padding: 4px 12px; font-size: 12px; font-weight: bold; border-radius: 3px; color: white; }
.new-arrivals-text { font-size: 13px; color: var(--text-color); }
.social-icons { display: flex; gap: 12px; }
.social-icons a { font-size: 14px; color: var(--text-color); transition: opacity var(--transition); }
.social-icons a:hover { opacity: 0.7; }

/* ===== HEADER MIDDLE ===== */
.header-middle { background: var(--header-red); border-bottom: 1px solid var(--header-red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px var(--card-shadow); }
.header-middle-inner { max-width: 1588px; height: 66px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 28px; font-weight: bold; color: #fff; transition: color var(--transition); }
.logo:hover { color: #ffcccc; }
.logo span { color: #fff; }
.main-menu { display: flex; gap: 25px; align-items: center; }
.main-menu > a, .nav-item-dropdown > a { position: relative; text-transform: uppercase; font-size: 15px; font-weight: 600; color: #fff; padding: 5px 0; display: inline-block; }
.main-menu > a::after, .nav-item-dropdown > a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #fff; transition: width var(--transition); }
.main-menu > a:hover, .nav-item-dropdown > a:hover { color: #ffcccc; }
.main-menu > a:hover::after, .nav-item-dropdown > a:hover::after { width: 100%; }
.nav-item-dropdown { position: relative; }
.dropdown-arrow { font-size: 12px; margin-left: 4px; transition: transform 0.3s ease; }
.nav-item-dropdown:hover .dropdown-arrow { transform: rotate(-180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 100; }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { display: block; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text-color); transition: all 0.2s ease; white-space: nowrap; text-transform: uppercase; }
.dropdown-item:hover { background: var(--bg-light); color: var(--accent-color); padding-left: 25px; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-btn { background: none; border: none; cursor: pointer; padding: 8px 12px; font-size: 16px; color: #fff; transition: color var(--transition); display: flex; align-items: center; justify-content: center; }
.header-btn:hover { color: #ffcccc; }

/* ===== HEADER BOTTOM ===== */
.header-bottom { background: var(--bg-white); padding: 6px 0; border-bottom: 1px solid var(--border-color); transition: background 0.1s ease; }
.header-bottom-inner { max-width: 1588px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.popular-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.popular-tags-label { font-size: 13px; font-weight: bold; color: var(--text-light); }
.popular-tags a { font-size: 13px; color: var(--text-light); padding: 3px 10px; background: var(--bg-light); border-radius: 20px; transition: all var(--transition); }
.popular-tags a:hover { background: var(--accent-color); color: white; }
.breaking-news { display: flex; align-items: center; gap: 0; flex: 1; min-width: 0; background: var(--bg-light); border-radius: 6px; padding: 4px; }
.breaking-label { background: var(--breaking-gray); color: white; padding: 6px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; border-radius: 4px; margin-right: 12px; }
.breaking-nav { background: transparent; border: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-color); transition: all 0.3s ease; flex-shrink: 0; }
.breaking-nav:hover { background: var(--accent-color); color: white; }
.breaking-nav i { font-size: 12px; }
.breaking-prev { margin-right: 8px; }
.breaking-next { margin-left: 8px; }
.breaking-slider { position: relative; flex: 1; height: 24px; overflow: hidden; padding: 0 8px; }
.breaking-slide { position: absolute; top: 0; left: 8px; right: 8px; font-size: 14px; color: var(--text-color); font-weight: 500; white-space: nowrap; opacity: 0; transform: translateY(100%); transition: all 0.5s ease; }
.breaking-slide.active { opacity: 1; transform: translateY(0); }
.breaking-slide.exit { opacity: 0; transform: translateY(-100%); }

.breaking-slide a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breaking-slide a:hover {
    opacity: 0.8;
}
.header-utilities { display: flex; align-items: center; gap: 20px; }
.utility-link { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-color); transition: color var(--transition); white-space: nowrap; }
.utility-link:hover { color: var(--accent-color); }
.utility-link i { font-size: 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg-white); padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.breadcrumb-inner { max-width: 1184px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-color); }

@media (max-width: 768px) {
    .breadcrumb { padding: 12px 0; }
    .breadcrumb-inner { font-size: 12px; gap: 6px; padding: 0 15px; }
}

@media (max-width: 480px) {
    .breadcrumb { padding: 10px 0; }
    .breadcrumb-inner { font-size: 11px; gap: 5px; padding: 0 12px; }
}

/* ===== FOOTER ===== */
.main-footer { background: var(--bg-white); border-top: 1px solid var(--border-color); padding: 50px 0 20px; margin-top: 40px; width: 100%; }
.main-footer-inner { max-width: 1588px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 20px; }
.footer-brand .logo { font-size: 24px; font-weight: bold; color: var(--text-color); display: inline-block; margin-bottom: 15px; }
.footer-brand .logo span { color: var(--accent-color); }
.footer-brand p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 15px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-color); transition: all 0.3s ease; }
.footer-social a:hover { background: var(--accent-color); color: white; }
.footer-links h4 { font-size: 1rem; font-weight: 700; color: var(--text-color); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--text-light); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-color); }
.footer-newsletter h4 { font-size: 1rem; font-weight: 600; color: var(--text-color); margin-bottom: 20px; }
.footer-newsletter p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 10px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 0.9rem; background: var(--bg-light); color: var(--text-color); }
.newsletter-form button { padding: 10px 20px; background: var(--accent-color); color: white; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease; }
.newsletter-form button:hover { background: #c0392b; }
.footer-bottom { max-width: 1588px; margin: 0 auto; padding: 20px; text-align: center; border-top: 1px solid var(--border-color); margin-top: 30px; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== SEARCH INPUT ===== */
.search-container { position: relative; }
.search-input { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 0; padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 20px; font-family: inherit; font-size: 14px; background: var(--bg-white); color: var(--text-color); opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.search-input.active { width: 200px; opacity: 1; visibility: visible; }

/* ===== HAMBURGER MENU ===== */
.hamburger-menu { position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: var(--bg-white); box-shadow: -5px 0 20px rgba(0,0,0,0.2); z-index: 2000; transition: right 0.3s ease; display: flex; flex-direction: column; }
.hamburger-menu.active { right: 0; }
.hamburger-menu-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.hamburger-menu-header h3 { font-size: 18px; color: var(--text-color); }
.close-menu { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-color); }
.hamburger-menu-content { padding: 20px; flex: 1; overflow-y: auto; }
.hamburger-menu-content a { display: block; padding: 12px 0; font-size: 16px; color: var(--text-color); border-bottom: 1px solid var(--border-color); }
.hamburger-menu-content a:hover { color: var(--accent-color); }
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.menu-overlay.active { opacity: 1; visibility: visible; }
.ham-dropdown { position: relative; }
.ham-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.ham-arrow { font-size: 12px; transition: transform 0.3s ease; }
.ham-dropdown.active .ham-arrow { transform: rotate(180deg); }
.ham-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--bg-light); border-radius: 8px; margin: 8px 0; }
.ham-dropdown.active .ham-dropdown-menu { max-height: 500px; }
.ham-dropdown-menu a { padding: 12px 20px 12px 35px; font-size: 14px; opacity: 0.9; }
.ham-dropdown-menu a:hover { opacity: 1; padding-left: 40px; }

/* ===== AUTHORS SLIDER ===== */
.authors-slider-section { margin: 30px 0; position: relative; z-index: 2; background: var(--bg-light); }
.authors-slider { position: relative; overflow: hidden; background: var(--bg-white); border-radius: 12px; padding: 20px 50px; box-shadow: 0 2px 8px var(--card-shadow); }
.authors-slider-inner { will-change: transform; display: flex; transition: transform 0.5s ease; gap: 20px; }
.author-card { flex: 0 0 200px; background: var(--bg-white); border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 2px 8px var(--card-shadow); transition: transform 0.3s ease; }
.author-card:hover { transform: translateY(-5px); }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 3px solid var(--accent-color); }
.author-title { font-size: 16px; font-weight: 700; color: var(--text-color); margin-bottom: 4px; }
.author-title a { color: inherit; transition: color 0.3s ease; }
.author-title a:hover { color: var(--accent-color); }
.author-name { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--bg-white); border: none; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-color); transition: all 0.3s ease; z-index: 10; }
.slider-nav:hover { background: var(--accent-color); color: white; }
.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }

/* ===== FEATURE BLOCK ===== */
.feature-block .news-main { position: relative; background: var(--bg-white); overflow: hidden; }
.feature-block .news-main-link { display: block; height: 100%; }
.feature-block .news-main img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; transition: transform 0.5s ease; }
.feature-block .news-main-link:hover img { transform: scale(1.05); }
.feature-block .news-main-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: var(--overlay-gradient); padding: 40px 50px 30px; color: white; }
.feature-block .news-main-overlay h3 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 12px; color: white; }
.feature-block .news-main-overlay p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.9); }
.feature-block .news-list { display: flex; flex-direction: column; background: var(--bg-white); }
.feature-block .news-item { flex: 1; border-bottom: 1px solid var(--border-color); }
.feature-block .news-item:last-child { border-bottom: none; }
.feature-block .news-item a { display: grid; grid-template-columns: 1fr 140px; gap: 15px; padding: 20px; height: 100%; align-items: center; transition: background 0.3s ease; }
.feature-block .news-item a:hover { background: var(--bg-light); }
.feature-block .news-item img { width: 140px; height: 100px; object-fit: cover; border-radius: 8px; flex-shrink: 0; order: 2; }
.feature-block .news-content { flex: 1; order: 1; }
.feature-block .news-content h4 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: var(--text-color); }
.feature-block .news-content p { font-size: 0.85rem; line-height: 1.5; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== NEWS BLOCK ===== */
.news-block article { background: var(--bg-white); border-radius: 12px; padding: 15px; box-shadow: 0 2px 8px var(--card-shadow); transition: transform 0.3s ease; }
.news-block article:hover { transform: translateY(-3px); }
.news-block article img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.news-block article h4 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; color: var(--text-color); margin-bottom: 8px; }
.news-block article h4 a:hover { color: var(--accent-color); }
.news-block article p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== SIDEBAR WIDGETS ===== */
.most-popular { background: var(--bg-white); border-radius: 12px; box-shadow: 0 2px 8px var(--card-shadow); z-index: 100; }
.most-popular::-webkit-scrollbar { width: 6px; }
.most-popular::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
.most-popular h3 { font-size: 1.1rem; font-weight: 700; color: var(--accent-color); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--accent-color); position: sticky; top: 0; background: var(--bg-white); }
.most-popular .item-list { display: flex; flex-direction: column; gap: 12px; }
.most-popular .item { display: flex; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.most-popular .item:last-child { border-bottom: none; padding-bottom: 0; }
.most-popular .item-number { font-size: 1.5rem; font-weight: 700; color: var(--accent-color); min-width: 30px; }
.most-popular .item-content h4 { font-size: 0.9rem; font-weight: 500; line-height: 1.4; color: var(--text-color); }
.most-popular .item-content a:hover { color: var(--accent-color); }
.most-popular .item-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.editors-choice { background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px var(--card-shadow); }
.editors-choice-card { position: relative; height: 100%; min-height: 300px; }
.editors-choice-link { display: block; height: 100%; }
.editors-choice-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.editors-choice-link:hover img { transform: scale(1.05); }
.editors-choice-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: var(--overlay-gradient); padding: 30px 20px 20px; color: white; }
.editors-choice-badge { display: inline-block; background: var(--accent-color); padding: 4px 12px; font-size: 0.75rem; font-weight: 700; border-radius: 4px; margin-bottom: 10px; }
.editors-choice-overlay h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.editors-choice-overlay p { font-size: 0.9rem; opacity: 0.9; }
.promo-widget { background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px var(--card-shadow); z-index: 100; }
.promo-widget img { width: 100%; height: auto; display: block; }
.promo-widget-label { display: block; padding: 6px 12px; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; text-align: center; background: var(--bg-light); }
.banner-label { display: block; padding: 6px; text-align: center; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; background: var(--bg-light); }

.promo-masthead { max-width: 1144px; margin: 0 auto; background: var(--bg-white); border-radius: 12px; box-shadow: 0 2px 8px var(--card-shadow); overflow: hidden; }
.promo-masthead-image { max-height: 200px; overflow: hidden; }
.promo-masthead img { width: 100%; height: auto; display: block; object-fit: contain; }
.promo-masthead-label { display: block; padding: 6px 12px; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; text-align: center; background: var(--bg-light); }


.right-grid { display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.right-grid img { max-height: 80px; }
.news-card-side { display: flex; padding: 12px 0; gap: 12px; align-items: center; }
.news-card-side:not(:last-child) { border-bottom: 1px solid var(--border-color); }
.news-card-side img { width: 80px; height: 60px; object-fit: cover; flex-shrink: 0; border-radius: 6px; margin-bottom: 0; }
.news-card-side h3 { font-size: 13px; font-weight: 500; margin-bottom: 0; }
.news-card-side a { display: block; }

				.sticky-banner { position: sticky; top: 100px; background: var(--bg-white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px var(--card-shadow); }
				.sticky-banner img { width: 100%; height: auto; display: block; }

@media (max-width: 1270px) { 
    .main-menu > a:nth-last-child(-n+4),
    .main-menu > .nav-item-dropdown:nth-last-child(-n+4) {
        display: none;
    }
}

@media (max-width: 1024px) { 
    .main-footer-inner { grid-template-columns: repeat(2, 1fr); }
    .editors-choice-overlay p { display: none; }
    .grid-v1 { grid-template-columns: 1fr; }
    .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .header-bottom-inner { grid-template-columns: 1fr; gap: 12px; }
    .breaking-news { justify-content: center; }
    .popular-tags { justify-content: center; }
    .header-utilities { justify-content: center; }
	.sticky-banner { position: static; }
}

@media (max-width: 900px) { 
    .grid.cols-right-4 { grid-template-columns: repeat(3, 1fr); }
    .grid.cols-right-4 > *:nth-child(4) { grid-column: 1 / -1; margin-top: 20px; }
}

@media (max-width: 768px) { 
    .main-menu { display: none; }
    .new-arrivals-text { display: none; }
    .main-footer-inner { grid-template-columns: 1fr; gap: 25px; }
    .popular-main { grid-template-columns: repeat(2, 1fr); }
    .hamburger-menu { width: 100%; right: -100%; }
    .breaking-label { font-size: 10px; padding: 4px 10px; }
    .breaking-slide { font-size: 12px; }
    .breaking-news { padding: 6px 10px; }
    .breaking-nav { width: 24px; height: 24px; }
    .breaking-nav i { font-size: 10px; }
}

@media (max-width: 600px) { 
    .most-popular .item-number { display: none; }
    .grid.cols-3 { grid-template-columns: 1fr; }
    .cat-group .grid.cols-right-4 { grid-template-columns: 1fr; }
    .grid-v2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) { 
    .popular-main { grid-template-columns: 1fr; }
    .header-utilities {display:none;}
    .logo {font-size:20px;}
}