/* Root Variables for Consistency */
:root {
  --primary-color: #007bff;
  --secondary-color: #dc3545;
  --bg-color: black;
  --gap-desktop: 20px;
  --gap-tablet: 15px;
  --gap-mobile: 10px;
}

/* Live streams container styles */
.live-streams-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap-desktop);
  margin: 0 auto;
  max-width: 1200px;
  padding: var(--gap-desktop);
  box-sizing: border-box;
}

/* Color styles */
.color-white {
  color: var(--secondary-color);
}

/* Footer icon styles */
footer .ti-email {
  color: yellow; /* Avoid !important by using specificity */
}

/* Widget title styles */
.widget-title.mb-10,
h5.widget-title.mb-10,
h5.widget-title.mt-5.mb-30.color-white {
  color: var(--primary-color);
}

/* Paragraph color styles */
p.color-white {
  color: var(--secondary-color);
}

/* Video wrapper styles */
.video-wrapper {
  text-align: center;
}

.video-wrapper h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.video-wrapper iframe {
  width: 100%;
  height: auto;
  max-width: 280px;
  aspect-ratio: 16 / 9;
  border: none;
  overflow: hidden;
}

/* Responsive design improvements */
@media only screen and (max-width: 1024px) {
  .live-streams-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--gap-tablet);
    padding: var(--gap-tablet);
  }
  .video-wrapper iframe {
    max-width: 230px;
  }
}

@media only screen and (max-width: 480px) {
  .live-streams-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--gap-mobile);
    padding: var(--gap-mobile);
  }
  .video-wrapper iframe {
    max-width: 200px;
  }
}
.footer-area .row.d-flex.justify-content-between > div.col-lg-3.col-md-6:nth-child(4) .panel-title h3 {
  /* ponašanje isto kao  */
  font-size: 1.25rem;  
  font-weight: bold;
  margin: 1rem 0;
  /* bela boja */
  color: #fff !important;
}