:root {
  /* Light Theme */
  --primary-color: #E10600;
  /* Cricket Red */
  --secondary-color: #1e1e24;
  --text-main: #212529;
  --text-light: #6c757d;
  --bg-body: #f8f9fa;
  --bg-card: #ffffff;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --header-height: 70px;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  /* Dark Theme - Adjusted for accessibility */
  --primary-color: #ff4d4d;
  --secondary-color: #f8f9fa;
  --text-main: #e9ecef;
  --text-light: #adb5bd;
  --bg-body: #121212;
  --bg-card: #1e1e1e;
  --border-color: #2d2d2d;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 24px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: #fff;
}

.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header */
header {
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-main);
  padding: 5px;
  margin-left: 20px;
}

/* Hero Section */
.hero {
  padding: 30px 0;
}

.hero-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  /* Removing gap to make image touch content properly if needed, but usually gap is better. Let's stick to no gap for a seamless look or gap for clean separation. */
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.hero-image {
  background-color: #ddd;
  /* Placeholder color */
  position: relative;
  min-height: 300px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 2.5rem;
  margin: 15px 0;
  line-height: 1.2;
}

.hero-excerpt {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(225, 6, 0, 0.3);
}

.btn-primary:hover {
  background-color: #c40500;
  transform: translateY(-2px);
}

/* Live Score Placeholder */
.live-score-section {
  margin-bottom: 40px;
}

.live-scores-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  /* Firefox */
}

.live-scores-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.live-score-card {
  min-width: 300px;
  background-color: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-style: italic;
}

/* Main Layout: Content + Sidebar */
.main-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-bottom: 60px;
}

/* Trending Grid */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  height: 180px;
  background-color: #eee;
  position: relative;
}

.news-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-title {
  font-size: 1.1rem;
  margin: 10px 0;
  font-weight: 700;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Latest News List */
.latest-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Professional Portal Updates --- */
/* Tools Section */
.tools-section {
  background-color: #f8f9fa;
  /* Light grey background */
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tool-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  display: block;
  color: var(--text-color);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.tool-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.tool-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* About Section */
.about-portal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1e24 0%, #2a2a35 100%);
  /* Corporate Dark */
  color: white;
  margin-top: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Refined Hero - More Portal-like */
.hero-card {
  /* Using the existing structure but refining specific children if needed */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Deeper shadow */
}

/* Section Header Styles - Professional Touch */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

/* Mobile Tweaks for new sections */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 on mobile */
  }

  .about-portal-section {
    padding: 50px 0;
  }
}

.latest-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-list-item {
  display: flex;
  gap: 20px;
  background-color: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.news-list-item:hover {
  box-shadow: var(--shadow-md);
}

.news-list-image {
  width: 200px;
  height: 120px;
  border-radius: var(--radius-sm);
  background-color: #eee;
  flex-shrink: 0;
}

.news-list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* --- UI/UX Enhancements (Article & Footer) --- */

/* Article Page Improvements */
.article-body {
  margin-top: 80px;
  /* 80px top margin */
  max-width: 750px;
  /* Max width 750px */
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  /* Increased padding */
  background-color: #fafafa;
  /* Light background */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  font-size: 18px;
  /* Improved typography */
  line-height: 1.8;
  color: #333;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
  /* 40px spacing */
}

.article-header h1 {
  font-size: 2.5rem;
  /* Bigger H1 */
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #111;
}

.article-meta {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  /* Subtle border */
  color: #222;
}

.article-body p {
  margin-bottom: 25px;
  /* 30px spacing approx */
}

/* Footer Redesign */
footer {
  background-color: #1a1a1a;
  /* Dark background */
  color: #ccc;
  /* Light text */
  padding: 60px 0;
  /* Increased padding */
  margin-top: 80px;
  border-top: 4px solid var(--primary-color);
  /* Top border separator */
}

.footer-content {
  display: grid;
  /* 3-column grid */
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  /* Hover effect */
  padding-left: 5px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #aaa;
}

/* Social Icons Placeholder */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
    /* Reset text align */
  }

  .article-body {
    padding: 20px;
    margin-top: 40px;
  }

  .article-header h1 {
    font-size: 1.8rem;
  }
}

.ipl-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #fff;
}

.ipl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.ipl-header h2 {
  color: #fff;
  font-size: 2rem;
}

.ipl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ipl-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.ipl-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.ipl-card-content {
  padding: 20px;
}

.ipl-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.widget {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.ad-placeholder {
  width: 100%;
  height: 250px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.category-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.category-list li a span {
  background-color: var(--border-color);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Footer */
footer {
  background-color: var(--bg-card);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-text {
  color: var(--text-light);
  margin-top: 15px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-main);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 250px;
  }

  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
    /* Hide sidebar on tablet */
  }

  .trending-grid,
  .ipl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .trending-grid,
  .ipl-grid {
    grid-template-columns: 1fr;
  }

  .news-list-item {
    flex-direction: column;
  }

  .news-list-image {
    width: 100%;
    height: 200px;
  }

  .hero-title {
    font-size: 1.8rem;
  }


  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* --- PREMIUM SPORTS PORTAL STYLES --- */

/* 1. Top Header & Nav */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 0;
}

/* 2. Breaking News Strip */
.breaking-news-strip {
  background-color: #111;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--primary-color);
}

.breaking-badge {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 2;
}

.news-ticker {
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
  font-size: 0.9rem;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-item {
  display: inline-block;
  padding: 0 20px;
}

/* 3. Hero Section (70/30 Split) */
.hero-section-premium {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  /* approx 70/30 */
  gap: 3px;
  /* Tight gap for media look */
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.hero-main {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 40px 30px;
  color: #fff;
}

.hero-category {
  background-color: var(--primary-color);
  padding: 4px 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-title-large {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 500px;
}

.hero-sub-card {
  flex: 1;
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  gap: 15px;
  align-items: center;
  transition: background 0.2s;
}

.hero-sub-card:hover {
  background: #f9f9f9;
}

.hero-sub-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-sub-content h4 {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0;
}

/* 4. Live Match Center (Glass Scroll) */
.live-match-center {
  background: #1e1e24;
  /* Dark bg context */
  padding: 20px 0;
  margin: 30px 0;
  overflow: hidden;
}

.match-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}

.match-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.match-card-glass {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  color: #fff;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  position: relative;
}

.match-card-glass:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.live-badge {
  background-color: red;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.match-teams-glass {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-weight: 600;
  font-size: 1.1rem;
}

/* 5. Main Layout (Content + Sidebar) */
.layout-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  /* approx 75/25 */
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.sidebar-section {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.sidebar-title {
  font-size: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 700;
}

.trending-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  font-weight: 500;
}

.trending-list li:last-child {
  border: none;
}

.ad-placeholder {
  background: #eee;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* 6. IPL Slider (Dark) */
.ipl-premium-section {
  background: #000;
  padding: 50px 0;
  color: #fff;
}

.ipl-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
}

/* Responsive Fixes */
@media (max-width: 900px) {
  .hero-section-premium {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-main {
    height: 350px;
  }

  .hero-side {
    height: auto;
    flex-direction: row;
    overflow-x: auto;
  }

  .layout-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-section {
    display: none;
    /* Hide sidebar on tablet/mobile for now */
  }
}