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

body {
    font-family: 'Georgia', serif;
    background: #f5f5f5;
}

.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid #dc2626;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: #1e40af;
    color: white;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    font-weight: 500;
}

.social-links .social-icon {
    color: white !important;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links .social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-links .social-icon i {
    font-size: 16px;
    vertical-align: middle;
}

.main-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo .accent {
    color: #dc2626;
}

.tagline {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 15px;
    border: 2px solid #1e40af;
    border-radius: 25px;
    width: 200px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    width: 250px;
    border-color: #dc2626;
}

.btn-search {
    background: #dc2626;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.navigation {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: #dc2626;
    background: #f8f9fa;
}

.breaking-news {
    display: none;
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 36px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 12px;
    }

    .search-box input {
        width: 150px;
    }

    .search-box input:focus {
        width: 180px;
    }
}