:root {
  --primary-color: #0d47a1; /* Deep Blue */
  --secondary-color: #ff6f00; /* Amber/Orange */
  --accent-color: #29b6f6; /* Light Blue */
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --footer-bg: #111;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  background-color: #f4f6f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: linear-gradient(to right, #0d47a1, #1565c0) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 40px;
  border-radius: 5px;
  background: white;
  padding: 2px;
}

.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/hero-bg.jpg'); /* You might need a hero bg or fallback color */
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border-bottom: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #0a357a;
  border-color: #0a357a;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  border-radius: 50px;
}

.btn-secondary:hover {
  background-color: #e65100;
  border-color: #e65100;
}

/* Stream Players */
.stream-wrapper {
  position: relative;
  background: black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: #aaa;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
}

/* Blog */
.blog-card-img {
  height: 200px;
  object-fit: cover;
}

/* Utility */
.section-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
