:root {
    --primary-color: #e30a17;
    --dark-color: #1a1a1a;
    --light-bg: #f4f4f4;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.date-weather span {
    margin-right: 15px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.main-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.header-ad img {
    max-width: 100%;
    height: auto;
}

.main-nav {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    display: block;
    color: var(--white);
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: rgba(0,0,0,0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 15px;
}

.breaking-news {
    background-color: var(--dark-color);
    color: var(--white);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    padding: 0;
}

.bn-label {
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

marquee {
    padding: 10px 0;
    flex: 1;
}

.main-content {
    padding: 30px 15px;
}

.manset-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.manset-main {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.manset-image {
    position: relative;
    height: 400px;
}

.manset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.view-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.manset-content {
    padding: 25px;
}

.manset-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.manset-content h2 a:hover {
    color: var(--primary-color);
}

.manset-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
}

.manset-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-news-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.side-news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.side-news-item.featured {
    background: #fafafa;
    border-left: 3px solid var(--primary-color);
}

.side-news-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.side-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-badge {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.side-news-content h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 5px;
}

.mini-meta {
    font-size: 0.75rem;
    color: #999;
}

.highlight-section {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.section-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.highlight-number {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 30px;
}

.highlight-content h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.highlight-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-section {
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-3px);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(227, 10, 23, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
}

.video-card h4 {
    padding: 15px;
    font-size: 0.95rem;
}

.gallery-section {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.main-footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .manset-area {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-ad {
        display: none;
    }
    
    .highlight-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #c90813;
        position: absolute;
        top: 100%;
        left: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .manset-image {
        height: 250px;
    }
    
    .manset-content h2 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    
    .date-weather {
        font-size: 0.75rem;
    }
    
    .social-links a {
        margin: 0 8px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .manset-content {
        padding: 15px;
    }
    
    .manset-content h2 {
        font-size: 1.1rem;
    }
    
    .manset-content p {
        font-size: 0.9rem;
    }
}