* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Provided Colors */
  --background-color1: #040613;
  --text-color2: #00a8e8;
  --text-color: #f1f1f1;
  --secondary-color: black;
  --accent-color: white;
  --button-gradient: linear-gradient(to right, #1a7dd9, #00c5fe);
  --button-hover-gradient: linear-gradient(to right, #00c5fe, #1a7dd9);
}

body {
  line-height: 1.5;
  background-color: var(--background-color1);
}

/* Nav Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  background-color: var(--background-color1);
  border-bottom: 1px solid #1a1a1a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.tv-icon {
  color: var(--text-color2);
  margin-right: 0.5rem;
}

.accent {
  color: var(--text-color2);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-color2);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}

.dropdown-btn:hover {
  color: var(--text-color2);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--background-color1);
  border: 1px solid var(--background-color1);
  border-radius: 4px;
  width: 250px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
}

.dropdown-content a:hover {
  background-color: var(--text-color2);
  color: var(--text-color);
}

/* Trial Button */
.trial-btn {
  background: var(--button-gradient);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 1.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-size: 200% auto;
}

.trial-btn:hover {
  background: var(--button-hover-gradient);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 125, 217, 0.3);
}

.trial-btn:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: 0.3s;
}

/* Scrollbar Styling */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    max-height: 300px;
    margin-top: 0.5rem;
  }

  .trial-btn {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section Styling */
.hero-section {
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  align-items: center;
  background-color: var(--background-color1);
  background-image: url("https://png.pngtree.com/background/20230617/original/pngtree-cutting-edge-technology-concept-iptv-and-online-television-broadcasting-in-stunning-picture-image_3703043.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 100px;
  font-family: sans-serif;
  /* min-height: 100vh; */
  box-sizing: border-box;
  position: relative;
}

/* Add a semi-transparent overlay to improve text readability */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
  z-index: 1;
}

.hero-content {
  max-width: 50%;
  color: var(--text-color);
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
  text-align: left; /* Keep text left-aligned */
  padding-left: 40px; /* Shift content to the left with padding */
  margin-right: auto; /* Ensure it doesn't stretch too far to the right */
}

.hero-heading h3 {
  color: var(--text-color2);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-title h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.hero-description p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background: var(--button-gradient);
  border: none;
  color: var(--accent-color);
}

.primary-btn:hover {
  background: var(--button-hover-gradient);
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--text-color2);
  color: var(--text-color2);
}

.secondary-btn:hover {
  background: var(--text-color2);
  color: var(--accent-color);
}

/* Responsive Design */

/* For screens up to 1024px (Tablets and smaller laptops) */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 50px;
    background-position: center;
  }

  .hero-content {
    max-width: 70%;
    text-align: left; /* Keep text left-aligned */
    padding-left: 30px; /* Slightly reduce left shift */
  }

  .hero-heading h3 {
    font-size: 22px;
  }

  .hero-title h1 {
    font-size: 40px;
  }

  .hero-description p {
    font-size: 16px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* For screens up to 768px (Tablets and larger mobile devices) */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 30px;
    background-position: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: left; /* Keep text left-aligned */
    padding-left: 20px; /* Further reduce left shift for smaller screens */
  }

  .hero-heading h3 {
    font-size: 20px;
  }

  .hero-title h1 {
    font-size: 32px;
  }

  .hero-description p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: flex-start; /* Align buttons to the left */
    flex-wrap: wrap; /* Allow buttons to wrap if needed */
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* For screens up to 480px (Small mobile devices) */
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 20px;
    background-position: center;
    
  }

  .hero-content {
    text-align: left; /* Keep text left-aligned */
    padding-left: 15px; /* Minimal left shift for small screens */
  }

  .hero-heading h3 {
    font-size: 18px;
  }

  .hero-title h1 {
    font-size: 24px;
  }

  .hero-description p {
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start; /* Align buttons to the left when stacked */
  }

  .primary-btn,
  .secondary-btn {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%; /* Full-width buttons on small screens */
    max-width: 200px; /* Limit max width for better appearance */
  }
}

/* For screens up to 360px (Very small mobile devices) */
@media (max-width: 360px) {
  .hero-section {
    padding: 30px 15px;
  }
 

  .hero-content {
    text-align: left; /* Keep text left-aligned */
    padding-left: 10px; /* Minimal left shift for very small screens */
  }

  .hero-heading h3 {
    font-size: 16px;
  }

  .hero-title h1 {
    font-size: 20px;
  }

  .hero-description p {
    font-size: 11px;
  }

  .hero-buttons {
    align-items: flex-start; /* Align buttons to the left */
  }

  .primary-btn,
  .secondary-btn {
    padding: 8px 15px;
    font-size: 11px;
    max-width: 180px;
  }
}

/* available-section*/

/* Available Section Styling */
.available-section {
  background-color: var(--background-color1);
  padding: 40px 100px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.available-container {
  max-width: 1200px; /* Limit the width for larger screens */
  margin: 0 auto; /* Center the container */
}

.available-heading {
  text-align: left;
  margin-bottom: 20px;
}

.available {
  color: var(--text-color2);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.carousel-wrapper {
  overflow: hidden; /* Hide the overflow to create the carousel effect */
  width: 100%;
}

.six-img {
  display: flex;
  gap: 20px; /* Space between images */
  animation: slide 20s linear infinite; /* Animation for continuous sliding */
  white-space: nowrap; /* Prevent wrapping */
}

.six-img img {
  width: 100px; /* Fixed width for consistency */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease; /* Hover effect */
  filter: brightness(90%); /* Slightly dim the images */
}

.six-img img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  filter: brightness(100%); /* Brighten on hover */
}

/* Keyframes for sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -50%
    ); /* Move to the left by half the total width (since we duplicated the images) */
  }
}

/* Responsive Design */

/* For screens up to 1024px (Tablets and smaller laptops) */
@media (max-width: 1024px) {
  .available-section {
    padding: 30px 50px;
  }

  .available {
    font-size: 22px;
  }

  .six-img img {
    width: 90px; /* Slightly smaller images */
  }
}

/* For screens up to 768px (Tablets and larger mobile devices) */
@media (max-width: 768px) {
  .available-section {
    padding: 20px 30px;
  }

  .available {
    font-size: 20px;
  }

  .six-img {
    gap: 15px;
  }

  .six-img img {
    width: 80px;
  }
}

/* For screens up to 480px (Small mobile devices) */
@media (max-width: 480px) {
  .available-section {
    padding: 15px 20px;
  }

  .available {
    font-size: 18px;
  }

  .carousel-wrapper {
    overflow: hidden;
  }

  .six-img {
    gap: 10px;
  }

  .six-img img {
    width: 60px; /* Smaller images for small screens */
  }
}

/* For screens up to 360px (Very small mobile devices) */
@media (max-width: 360px) {
  .available-section {
    padding: 10px 15px;
  }

  .available {
    font-size: 16px;
  }

  .six-img {
    gap: 8px;
  }

  .six-img img {
    width: 50px; /* Even smaller images for very small screens */
  }
}

/* Update Section Styling */
.update-section {
  background-color: var(--background-color1);
  padding: 40px 100px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.update-container {
  max-width: 1200px; /* Limit the width for larger screens */
  margin: 0 auto; /* Center the container */
}

.update-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  gap: 20px; /* Add spacing between stat items */
}

.stat-item {
  border: 3px solid var(--text-color2); /* Use theme color for the border */
  height: 200px; /* Adjusted height to accommodate icon and text */
  width: 200px;
  border-radius: 50%; /* Circular shape */
  padding: 20px;
  display: flex;
  flex-direction: column; /* Stack icon and text vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease; /* Smooth hover effect */
  background-color: rgba(255, 255, 255, 0.05); /* Subtle background for depth */
}

.stat-item:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  border-color: var(--accent-color); /* Change border color on hover */
  background-color: rgba(255, 255, 255, 0.1); /* Lighten background on hover */
}

.stat-icon {
  margin-bottom: 15px; /* Space between icon and text */
}

.stat-icon img {
  width: 60px; /* Fixed width for icons */
  height: 60px; /* Fixed height for icons */
  filter: brightness(90%); /* Slightly dim the icons */
  transition: filter 0.3s ease; /* Smooth transition for hover */
}

.stat-item:hover .stat-icon img {
  filter: brightness(100%); /* Brighten icon on hover */
}

.stat-item p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */

/* For screens up to 1024px (Tablets and smaller laptops) */
@media (max-width: 1024px) {
  .update-section {
    padding: 30px 50px;
  }

  .stat-item {
    height: 180px;
    width: 180px;
    padding: 15px;
  }

  .stat-icon img {
    width: 55px;
    height: 55px;
  }

  .stat-item p {
    font-size: 15px;
  }
}

/* For screens up to 768px (Tablets and larger mobile devices) */
@media (max-width: 768px) {
  .update-section {
    padding: 20px 30px;
  }

  .update-stats {
    justify-content: center; /* Center items when they wrap */
    gap: 15px;
  }

  .stat-item {
    height: 160px;
    width: 160px;
    padding: 10px;
  }

  .stat-icon img {
    width: 50px;
    height: 50px;
  }

  .stat-item p {
    font-size: 14px;
  }
}

/* For screens up to 480px (Small mobile devices) */
@media (max-width: 480px) {
  .update-section {
    padding: 15px 20px;
  }

  .update-stats {
    gap: 10px;
  }

  .stat-item {
    height: 140px;
    width: 140px;
    padding: 8px;
  }

  .stat-icon img {
    width: 45px;
    height: 45px;
  }

  .stat-item p {
    font-size: 12px;
  }
}

/* For screens up to 360px (Very small mobile devices) */
@media (max-width: 360px) {
  .update-section {
    padding: 10px 15px;
  }

  .update-stats {
    gap: 8px;
  }

  .stat-item {
    height: 120px;
    width: 120px;
    padding: 5px;
  }

  .stat-icon img {
    width: 40px;
    height: 40px;
  }

  .stat-item p {
    font-size: 11px;
  }
}

/* Pricing Section Styling */
.pricing-section {
  background-color: var(--background-color1);
  padding: 40px 100px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.pricing-container {
  max-width: 1200px; /* Limit the width for larger screens */
  margin: 0 auto; /* Center the container */
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title h2 {
  color: var(--accent-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pricing-description p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Tabs Styling */
.pricing-tabs .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  gap: 10px;
  flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
}

.pricing-tabs .nav-item {
  margin: 0;
}

.pricing-tabs .nav-link {
  background: transparent;
  border: 2px solid var(--text-color2);
  color: var(--text-color2);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pricing-tabs .nav-link:hover,
.pricing-tabs .nav-link.active {
  background: var(--text-color2);
  color: var(--accent-color);
  border-color: var(--text-color2);
}

/* Pricing Plans Styling */
.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
  margin-top: 30px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05); /* Subtle background for depth */
  border: 2px solid var(--text-color2);
  border-radius: 10px;
  width: 250px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.plan-price {
  color: var(--text-color2);
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-connections {
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-card ul li {
  color: var(--text-color);
  font-size: 14px;
  margin: 8px 0;
}

.subscribe-btn {
  background: var(--button-gradient);
  border: none;
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: var(--button-hover-gradient);
}

/* Responsive Design */

/* For screens up to 1024px (Tablets and smaller laptops) */
@media (max-width: 1024px) {
  .pricing-section {
    padding: 30px 50px;
  }

  .pricing-title h2 {
    font-size: 32px;
  }

  .pricing-description p {
    font-size: 16px;
  }

  .pricing-tabs .nav-link {
    padding: 8px 25px;
    font-size: 15px;
  }

  .plan-card {
    width: 220px;
    padding: 15px;
  }

  .plan-price {
    font-size: 26px;
  }

  .plan-connections {
    font-size: 15px;
  }

  .plan-card ul li {
    font-size: 13px;
  }

  .subscribe-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* For screens up to 768px (Tablets and larger mobile devices) */
@media (max-width: 768px) {
  .pricing-section {
    padding: 20px 30px;
  }

  .pricing-title h2 {
    font-size: 28px;
  }

  .pricing-description p {
    font-size: 14px;
  }

  .pricing-tabs .nav-link {
    padding: 8px 20px;
    font-size: 14px;
  }

  .plan-card {
    width: 200px;
    padding: 10px;
  }

  .plan-price {
    font-size: 24px;
  }

  .plan-connections {
    font-size: 14px;
  }

  .plan-card ul li {
    font-size: 12px;
    margin: 6px 0;
  }

  .subscribe-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* For screens up to 480px (Small mobile devices) */
@media (max-width: 480px) {
  .pricing-section {
    padding: 15px 20px;
  }

  .pricing-title h2 {
    font-size: 24px;
  }

  .pricing-description p {
    font-size: 12px;
  }

  .pricing-tabs .nav-link {
    padding: 6px 15px;
    font-size: 12px;
  }

  .plan-card {
    width: 100%; /* Full width on small screens */
    max-width: 300px; /* Limit max width */
    padding: 15px;
  }

  .plan-price {
    font-size: 22px;
  }

  .plan-connections {
    font-size: 13px;
  }

  .plan-card ul li {
    font-size: 11px;
    margin: 5px 0;
  }

  .subscribe-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* For screens up to 360px (Very small mobile devices) */
@media (max-width: 360px) {
  .pricing-section {
    padding: 10px 15px;
  }

  .pricing-title h2 {
    font-size: 20px;
  }

  .pricing-description p {
    font-size: 11px;
  }

  .pricing-tabs .nav-link {
    padding: 5px 12px;
    font-size: 11px;
  }

  .plan-card {
    padding: 10px;
  }

  .plan-price {
    font-size: 20px;
  }

  .plan-connections {
    font-size: 12px;
  }

  .plan-card ul li {
    font-size: 10px;
    margin: 4px 0;
  }

  .subscribe-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* Sport Section Styling */

.sport-section {
  background-color: var(--background-color1);
  padding: 40px 100px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.sport-container {
  max-width: 1200px; /* Limit the width for larger screens */
  margin: 0 auto; /* Center the container */
}

.sport-header {
  text-align: center;
  margin-bottom: 40px;
}

.sport-heading h2 {
  color: var(--accent-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sport-description p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Features Styling */
.sport-features {
  display: flex;
  justify-content: center;
  gap: 40px; /* Space between feature items */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.feature-item {
  text-align: center;
  max-width: 300px; /* Limit the width of each feature item */
}

.feature-icon img {
  width: 100px; /* Fixed width for consistency */
  height: auto; /* Maintain aspect ratio */
  filter: brightness(90%); /* Slightly dim the images */
  transition: all 0.3s ease; /* Smooth hover effect */
}

.feature-item:hover .feature-icon img {
  transform: scale(1.1); /* Slight zoom on hover */
  filter: brightness(100%); /* Brighten on hover */
}

.feature-item h4 {
  color: var(--text-color2); /* Match the blue accent from your theme */
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 10px;
}

.feature-item p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */

/* For screens up to 1024px (Tablets and smaller laptops) */
@media (max-width: 1024px) {
  .sport-section {
    padding: 30px 50px;
  }

  .sport-heading h2 {
    font-size: 32px;
  }

  .sport-description p {
    font-size: 16px;
  }

  .sport-features {
    gap: 30px;
  }

  .feature-icon img {
    width: 90px;
  }

  .feature-item h4 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 14px;
  }
}

/* For screens up to 768px (Tablets and larger mobile devices) */
@media (max-width: 768px) {
  .sport-section {
    padding: 20px 30px;
  }

  .sport-heading h2 {
    font-size: 28px;
  }

  .sport-description p {
    font-size: 14px;
  }

  .sport-features {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    gap: 20px;
  }

  .feature-icon img {
    width: 80px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }
}

/* For screens up to 480px (Small mobile devices) */
@media (max-width: 480px) {
  .sport-section {
    padding: 15px 20px;
  }

  .sport-heading h2 {
    font-size: 24px;
  }

  .sport-description p {
    font-size: 12px;
  }

  .sport-features {
    gap: 15px;
  }

  .feature-icon img {
    width: 70px;
  }

  .feature-item h4 {
    font-size: 14px;
  }

  .feature-item p {
    font-size: 12px;
  }
}

/* For screens up to 360px (Very small mobile devices) */
@media (max-width: 360px) {
  .sport-section {
    padding: 10px 15px;
  }

  .sport-heading h2 {
    font-size: 20px;
  }

  .sport-description p {
    font-size: 11px;
  }

  .sport-features {
    gap: 10px;
  }

  .feature-icon img {
    width: 60px;
  }

  .feature-item h4 {
    font-size: 13px;
  }

  .feature-item p {
    font-size: 11px;
  }
}

/* Features section */
.features-section {
  padding: 40px 20px;
  background-color: var(--background-color1); /* #040613 from your theme */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh; /* Optional: ensures it takes full viewport height */
}

.feature-box {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  background-color: rgba(
    255,
    255,
    255,
    0.05
  ); /* Slightly lighter than background for contrast */
  color: var(--text-color);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: var(--button-gradient);
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 168, 232, 0.3);
  color: var(--accent-color);
}

.feature-box h2 {
  color: var(--text-color2);
  margin: 15px 0;
  font-size: 1.5rem;
}

.feature-box:hover h2 {
  color: var(--accent-color);
}

.feature-box p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-box img {
  max-width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.Get h1 {
  color: var(--text-color2);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.line {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  font-size: 1.1rem;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .feature-box {
    max-width: 100%;
    margin: 10px 0;
  }

  .Get h1 {
    font-size: 1.8rem;
  }

  .line {
    font-size: 1rem;
    padding: 0 15px;
  }

  .feature-box img {
    max-width: 60px;
  }

  .feature-box h2 {
    font-size: 1.3rem;
  }

  .feature-box p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .features-section {
    padding: 20px 10px;
  }

  .Get h1 {
    font-size: 1.5rem;
  }

  .line {
    font-size: 0.9rem;
  }

  .feature-box {
    padding: 15px;
  }

  .feature-box img {
    max-width: 50px;
  }

  .feature-box h2 {
    font-size: 1.2rem;
  }

  .feature-box p {
    font-size: 0.85rem;
  }
}

/* experience Section */

.experience {
  background-color: var(--background-color1);
  padding: 40px 20px;
}

.nfl {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.experience-content {
  flex: 1;
  min-width: 300px;
  color: var(--text-color);
}

.experience-content h1 {
  font-size: 2.5rem;
  color: var(--text-color2);
  margin-bottom: 15px;
  line-height: 1.2;
}

.experience-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.experience-content button {
  background: var(--button-gradient);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.experience-content button:hover {
  background: var(--button-hover-gradient);
}

.experience-image {
  flex: 1;
  min-width: 300px;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nfl {
    flex-direction: column;
    text-align: center;
  }

  .experience-content h1 {
    font-size: 2rem;
  }

  .experience-content p {
    font-size: 1rem;
  }

  .experience-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .experience-content h1 {
    font-size: 1.5rem;
  }

  .experience-content p {
    font-size: 0.9rem;
  }

  .experience-content button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.deals {
  background-color: var(--background-color1);
  padding: 40px 20px;
}

.hero-banner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.deals-content {
  flex: 1;
  min-width: 300px;
  color: var(--text-color);
}

.deals-content h1 {
  font-size: 2.5rem;
  color: var(--text-color2);
  margin-bottom: 15px;
  line-height: 1.2;
}

.deals-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.deals-content button {
  background: var(--button-gradient);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.deals-content button:hover {
  background: var(--button-hover-gradient);
}

.deals-image {
  flex: 1;
  min-width: 300px;
}

.deals-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
  }

  .deals-content h1 {
    font-size: 2rem;
  }

  .deals-content p {
    font-size: 1rem;
  }

  .deals-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .deals-content h1 {
    font-size: 1.5rem;
  }

  .deals-content p {
    font-size: 0.9rem;
  }

  .deals-content button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Review Section  */

.reviews {
  background-color: var(--background-color1);
  padding: 40px 20px;
}

.reviews-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.reviews-header h2 {
  font-size: 2.5rem;
  color: var(--text-color2);
  margin-bottom: 15px;
  line-height: 1.2;
}

.reviews-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 1.25rem;
  color: var(--text-color2);
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-header h2 {
    font-size: 2rem;
  }

  .reviews-header p {
    font-size: 1rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .reviews-header h2 {
    font-size: 1.5rem;
  }

  .reviews-header p {
    font-size: 0.9rem;
  }

  .review-card {
    padding: 15px;
  }

  .review-card img {
    width: 60px;
    height: 60px;
  }

  .review-card h3 {
    font-size: 1.1rem;
  }

  .review-card p {
    font-size: 0.9rem;
  }
}

/* FAQ Section */

.faq {
  background-color: var(--background-color1);
  padding: 40px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container h1 {
  font-size: 2.5rem;
  color: var(--text-color2);
  text-align: center;
  margin-bottom: 30px;
}

.faq-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.faq-accordion {
  flex: 2;
  min-width: 300px;
}

.accordion-item {
  background-color: var(--secondary-color);
  border: none;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--button-gradient);
  color: var(--accent-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 15px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--secondary-color);
}

.faq-image {
  flex: 1;
  min-width: 300px;
}

.faq-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-container h1 {
    font-size: 2rem;
  }

  .faq-content {
    flex-direction: column;
    align-items: center;
  }

  .faq-image {
    margin-top: 20px;
  }

  .accordion-button {
    font-size: 1rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-container h1 {
    font-size: 1.5rem;
  }

  .accordion-button {
    padding: 12px;
    font-size: 0.9rem;
  }

  .accordion-body {
    padding: 12px;
    font-size: 0.85rem;
  }
}

/* newslatter section */
.newsletter {
  background-color: var(--background-color1);
  padding: 40px 20px;
}

.newsletter-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.newsletter-header h2 {
  font-size: 2.5rem;
  color: var(--text-color2);
  margin-bottom: 15px;
  line-height: 1.2;
}

.newsletter-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-card {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.news-card .news-date {
  font-size: 0.9rem;
  color: var(--text-color2);
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 1.25rem;
  color: var(--text-color2);
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.5;
}

.news-card button {
  background: var(--button-gradient);
  color: var(--accent-color);
  border: none;
  margin-left: 30%;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.news-card button:hover {
  background: var(--button-hover-gradient);
}

.telegram-card {
  background: var(--button-gradient);
  color: var(--accent-color);
}

.telegram-card h3,
.telegram-card p {
  color: var(--accent-color);
}

.telegram-card .subscribers {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.telegram-card button {
  background: var(--accent-color);
  color: var(--text-color2);
}

.telegram-card button:hover {
  background: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-header h2 {
    font-size: 2rem;
  }

  .newsletter-header p {
    font-size: 1rem;
  }

  .newsletter-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .news-card h3 {
    font-size: 1.1rem;
  }

  .news-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .newsletter-header h2 {
    font-size: 1.5rem;
  }

  .newsletter-header p {
    font-size: 0.9rem;
  }

  .news-card {
    padding: 15px;
  }

  .news-card .news-date {
    font-size: 0.8rem;
  }

  .news-card h3 {
    font-size: 1rem;
  }

  .news-card p {
    font-size: 0.85rem;
  }

  .news-card button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Footer section */
.footer {
  background-color: var(--background-color1);
  color: var(--text-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-brand,
.footer-contact,
.footer-links,
.footer-payment {
  text-align: left;
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-brand .logo svg {
  flex-shrink: 0;
}

.brand-text {
  font-weight: bold;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-contact h5,
.footer-links h5,
.footer-payment h5 {
  font-size: 1.25rem;
  color: var(--text-color2);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-contact ul,
.footer-links ul,
.footer-payment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li,
.footer-payment li {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  color: var(--text-color2);
  margin-right: 8px;
}

.footer-contact a,
.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--text-color2);
}

.footer-payment img {
  margin-right: 10px;
  vertical-align: middle;
}

.footer-payment li:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  background-color: var(--secondary-color);
  padding: 20px 10px;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-bottom li {
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--text-color2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-payment {
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-payment li:last-child {
    justify-content: center;
  }

  .footer-bottom ul {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer-brand p,
  .footer-contact li,
  .footer-links li,
  .footer-payment li {
    font-size: 0.9rem;
  }

  .footer-bottom p,
  .footer-bottom li {
    font-size: 0.8rem;
  }

  .footer-payment img {
    width: 30px;
  }
}

/* About Hero */

.about-hero {
  background-color: var(--background-color1);
  padding: 60px 20px;
  text-align: center;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  color: var(--text-color2);
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    padding: 40px 20px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero-content h2 {
    font-size: 2rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero-content h2 {
    font-size: 1.5rem;
  }

  .about-hero-content p {
    font-size: 0.9rem;
  }
}
