* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #0f172a;
    color: white;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breaking-label {
    background: #e94560;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.breaking-news marquee {
    width: 500px;
    color: #f1f5f9;
}

.header-date {
    font-size: 13px;
    color: #94a3b8;
}

/* Header */
header {
    background: #1e293b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo span {
    color: #e94560;
}

.tagline {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 5px;
}

/* Navigation */
.main-nav {
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 14px 20px;
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    background: #e94560;
    color: white;
}

.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    padding: 10px 0;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown li a:hover {
    background: #f1f5f9;
    color: #e94560;
    padding-left: 25px;
}

.mega-dropdown {
    width: 280px;
}

.search-icon a {
    display: block;
    padding: 14px 20px;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M10,50 L90,50 M50,10 L50,90"/><circle cx="50" cy="50" r="30"/></svg>') repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: #e94560;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #e94560;
    color: white;
}

.btn-primary:hover {
    background: #d63a54;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Featured Section */
.featured-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.featured-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.featured-card.large img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-card.small img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.featured-content .category {
    display: inline-block;
    background: #e94560;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-content h2 a,
.featured-content h3 a {
    color: white;
    text-decoration: none;
}

.featured-content h2 a:hover,
.featured-content h3 a:hover {
    text-decoration: underline;
}

.featured-content h3 {
    font-size: 18px;
}

.featured-content p {
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.section-title p {
    color: #64748b;
    font-size: 14px;
}

.view-all {
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.view-all:hover {
    color: #d63a54;
    transform: translateX(3px);
    display: inline-block;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e94560;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: #e94560;
}

.meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.read-more {
    display: inline-block;
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.2s;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Row 2 Col */
.row-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.points-table-widget,
.upcoming-matches {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.widget-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.widget-header a {
    color: #e94560;
    text-decoration: none;
    font-size: 13px;
}

.points-table {
    width: 100%;
}

.points-header {
    display: grid;
    grid-template-columns: 30px 1fr 35px 35px 35px 50px 40px;
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 10px;
}

.points-row {
    display: grid;
    grid-template-columns: 30px 1fr 35px 35px 35px 50px 40px;
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
}

.points-row .team-name {
    font-weight: 500;
}

.points-row .points {
    font-weight: 700;
    color: #e94560;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-item {
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s;
}

.match-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.match-date {
    font-size: 12px;
    color: #e94560;
    font-weight: 600;
    margin-bottom: 5px;
}

.match-teams {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.match-venue {
    font-size: 12px;
    color: #64748b;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.highlight-card:hover img {
    transform: scale(1.05);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.play-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e94560;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 10px;
}

.highlight-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.highlight-overlay p {
    font-size: 12px;
    opacity: 0.8;
}

/* Category Page */
.category-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.category-header h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.category-header p {
    font-size: 18px;
    color: #cbd5e1;
}

.category-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.category-content .content {
    flex: 2;
}

.list-article {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.list-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.article-image {
    flex-shrink: 0;
}

.article-image img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.article-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.article-details h2 a {
    color: #0f172a;
    text-decoration: none;
}

.article-details h2 a:hover {
    color: #e94560;
}

.article-details .meta {
    margin-bottom: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.2s;
}

.pagination a:hover,
.pagination a.active {
    background: #e94560;
    color: white;
    border-color: #e94560;
}

/* Single Article */
.single-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.breadcrumbs {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #e94560;
}

.single-article h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.meta-left {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-buttons a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.featured-image {
    margin: 30px 0;
}

.featured-image img {
    width: 100%;
    border-radius: 16px;
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.article-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #0f172a;
}

.article-content h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #0f172a;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f1f5f9;
    border-left: 4px solid #e94560;
    font-style: italic;
    color: #1e293b;
}

.article-tags {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.article-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    margin-right: 8px;
    transition: all 0.2s;
}

.article-tags a:hover {
    background: #e94560;
    color: white;
}

.related-articles {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.related-articles h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    font-size: 14px;
}

.related-card h4 a {
    color: #0f172a;
    text-decoration: none;
}

.related-card h4 a:hover {
    color: #e94560;
}

/* Sidebar */
.sidebar {
    flex: 1;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e94560;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trend-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 8px;
    font-weight: 700;
    color: #e94560;
}

.trending-item a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
}

.trending-item a:hover {
    color: #e94560;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    margin-top: 60px;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #e94560;
}

.footer-logo p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #e94560;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #e94560;
    padding-left: 3px;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #e94560;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #d63a54;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-section {
        grid-template-columns: 1fr;
    }
    
    .featured-card.large img {
        height: 350px;
    }
    
    .row-2-col {
        grid-template-columns: 1fr;
    }
    
    .category-content {
        flex-direction: column;
    }
    
    .list-article {
        flex-direction: column;
    }
    
    .article-image img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1e293b;
        display: none;
    }
    
    .has-dropdown:hover .dropdown {
        display: block;
    }
    
    .dropdown li a {
        color: #f1f5f9;
        padding-left: 35px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .single-article {
        padding: 20px;
    }
    
    .single-article h1 {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .meta-left {
        flex-wrap: wrap;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .points-header, .points-row {
        font-size: 11px;
        gap: 5px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .featured-content h2 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
}