/* Root Variables for Global Styles */
:root {
  --primary: #111184; /* Primary color */
  --secondary: #ffffff; /* Secondary color */
  --accent-color: #3498db; /* Accent color for buttons and links */

     }


/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #111184;
  color: #red;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Header Styles */
.site-header {
  background-color: var(--primary);
  padding: 20px 0;
  color: var(--secondary);
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 50px;
  margin-right: 10px;
}

.site-logo span {
  font-size: 24px;
  font-weight: bold;
}

.mobile-sports {
  display: none; /* Hide on desktop */
}

/* Main Content Styles */
.pageWrapper {
  padding: 20px;
}

.master-sports,
.main-page {
  margin-bottom: 40px;
}

/* Teams Section */
.teams {
  margin-top: 40px;
}

.teams h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.teams-slider {
  display: flex;
  overflow-x: scroll;
  gap: 10px;
}

.team-cards {
  display: flex;
}

.single-team {
  text-align: center;
  width: 150px;
}

.single-team img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.single-team p {
  font-size: 16px;
  color: #333;
}

/* Live Matches Section */
.matches {
  margin-top: 40px;
}
.match-loader a span {
    font-weight: bold;
    color: white;
    
}


.loader.big {
  border: 8px solid #f3f3f3;
  border-top: 8px solid var(--accent-color);
  border-radius: 100%;
  width: 100px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.match-loader span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

/* Live Channels Section */
.live-channels h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.live-channels-main {
  display: flex;
  gap: 15px;
}

.channel-card img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.live-channels-overflow {
  overflow-x: scroll;
  margin-bottom: 30px;
}

/* Footer Styles */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.site-footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Privacy and Analytics Scripts */
script {
  display: none;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .site-header {
    padding: 15px;
  }

  .site-logo img {
    height: 40px;
  }

  .teams-slider {
    flex-direction: column;
    align-items: center;
  }

  .live-channels-main {
    flex-direction: column;
    align-items: center;
  }

  .match-loader span {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .site-logo span {
    font-size: 20px;
  }

  .loader.big {
    width: 40px;
    height: 40px;
  }
}


/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #333;
    margin: 0;
    padding: 0;
}

/* Entry Content Container */
.entry-content {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #000;
    box-shadow: 0 2px 8px #000(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header Styles */
h2, h3, h4,h4, h5 {
    color: #fff;
    font-weight: normal;
    margin-bottom: 15px;
}

/* Center-aligned headings */
h2, h3, h4 {
    text-align: center;
}


/* Horizontal rule styles */
hr {
    border: 0;
    height: 1px;
    background-color: #000;
    margin: 20px 0;
}

/* Paragraph Styling */
p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* External link image styling */
.externallinkimage {
    vertical-align: middle;
    margin-left: 5px;
    width: 12px;
    height: 12px;
}

/* Section for Enjoy Free NHL Streams */
h2 + p {
    font-size: 18px;
    color: #fff;
}



/* Specific Styles for the Game Schedule */
h2:first-of-type {
    margin-top: 0;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
    .entry-content {
        padding: 15px;
        margin: 10px;
    }

    h2, h3, {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}


.