* {
  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: 0;
}

.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 */
.pricing-section {
  background-color: #040613;
  padding: 60px 20px;

  color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-title h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pricing-description p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.6;
}

/* Tabs */
.pricing-tabs .nav-tabs {
  justify-content: center;
  border: none;
  margin-bottom: 20px;
}

.pricing-tabs .nav-link {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.pricing-tabs .nav-link.active,
.pricing-tabs .nav-link:hover {
  background: #00d4ff;
  color: #fff;
}

/* Pricing Cards */
.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.plan-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 420px;
  padding: 25px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
}

/* Recommended Badge */
.plan-card.recommended::before {
  content: "★ Most Popular";
  position: absolute;
  top: 15px;
  right: -40px;
  background: #ffb400;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 50px;
  transform: rotate(45deg);
}

/* Pricing */
.plan-price {
  text-align: center;
  color: #00d4ff;
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.plan-Category {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Features */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card ul li {
  color: #ccc;
  font-size: 14px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card ul li i {
  color: #00d4ff;
  font-size: 16px;
}

/* CTA Button */
.subscribe-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #00d4ff, #0077ff);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background: linear-gradient(90deg, #0077ff, #00d4ff);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .plan-card {
    width: 100%;
    max-width: 400px;
  }
}


/* 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: var(--background-color1);
}

/* Section Header */
.reviews-header h2 {
  font-size: 2.4rem;
  color: var(--text-color2);
  font-weight: 700;
}

.reviews-header p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.review-card {
  background: var(--secondary-color);
  border-radius: 16px;
  padding: 22px;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* Top Profile */
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color2);
}

.review-top span {
  font-size: 0.85rem;
  color: var(--text-color);
}

/* Stars */
.review-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* Title */
.review-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color2);
  margin-bottom: 6px;
}

/* Description */
.review-desc {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Image */
.review-image img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

/* Carousel Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #a0bee67e;
  border-radius: 50%;

}

@media (max-width: 768px) {
  .review-image img {
    height: 160px;
  }
}

/* View More Button */
.reviews-action {
  display: flex;
  justify-content: flex-end;
}

.btn-view-more {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #5a8dee, #3b6edc);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(90, 141, 238, 0.35);
}

.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 141, 238, 0.45);
  color: #fff;
}


/* Desktop: multiple cards per slide */
.carousel-item .row > div {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

/* Tablet */
@media (max-width: 991px) {
  .carousel-item .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: ONE card per slide */
@media (max-width: 575px) {
  .carousel-item .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .reviews-header h2 {
    font-size: 1.8rem;
  }

  .reviews-action {
    justify-content: center;
  }
}


/* 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;
  }
}

.card-body li {
  text-align: start;
}

.card-body li i {
  color: #00a8e8;
  margin-right: 10px;
}

.carousel-item img {
  width: 19%;
  height: 17vh;
  /* object-fit: cover; */
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 7vh;
  }
}



/* Modal */

.modal-content {
  border: none;
  position: relative;
}

.background {
  background-color: #040613;
}

.btn-warning {
  border-radius: 30px;
  transition: 0.3s;
}

.btn-warning:hover {
  background-color: #ff9900;
  transform: scale(1.05);
}



.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  /* White color */
  opacity: 0.9;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  transition: 0.3s;
}


/* Header Marquee */
.header-marquee {
  background-color: #111636;
  /* your custom gradient */
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee span {
  display: inline-block;
  color: white;
  padding-left: 100%;
  animation: marquee 35s linear infinite;
  font-weight: 600;
  font-size: 14px;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}


/* referral-section */
.referral-section {
  background-color: #040613;
  color: #333;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  /* highlight color */
}

.section-desc {
  font-size: 1.1rem;
  color: white;
}

.steps-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 400px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: var(--button-gradient);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}


.most-popular-badge {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00aeff, #00fff2, #006eff);
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-transform: uppercase;
}


.hero-content-video {
  max-width: 50%;
  color: var(--text-color);
  position: relative;
  z-index: 2;
  border-radius: 14px;
  box-shadow: 0px 0px 100px rgb(43, 122, 226);
  text-align: left;
  margin-right: auto;

}

.hero-content-video video {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.hero-content-video video:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}



/* Balloons container */
#balloon-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* so clicks go through */
  z-index: 999;
  /* above modal */
}

.balloon {
  position: absolute;
  bottom: -150px;
  /* start below screen */
  width: 80px;
}

#balloon1 {
  left: 20%;
}

#balloon2 {
  left: 60%;
}


.avatar-fallback {
  width: 50px;
  height: 48px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}


.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

/* star base */
.star-box {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

/* empty stars */
.star-box.empty {
  background-color: #e5e7eb;
  color: #9ca3af;
}

/* filled stars inherit rating color */
.review-stars .star-box.filled {
  color: #ffffff;
}

/* rating-based backgrounds */
.rating-5 .star-box.filled {
  background-color: #00B980;
}

.rating-4 .star-box.filled {
  background-color: #45D130;
}

.rating-3 .star-box.filled {
  background-color: #FFCC00;
}

.rating-2 .star-box.filled {
  background-color: #FF7F00;
}

.rating-1 .star-box.filled {
  background-color: #FF0B00;
}

/* Wrapper (no background) */
.trustpilot-wrapper {
  background: var(--background-color1);
}

.trust-header {
  width: 100%;
}

.trust-logo {
  width: 32px;
  height: auto;
}

.trust-text {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  /* keep white if background is dark */
  line-height: 1;
  letter-spacing: -0.5px;
}

.stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 5px;
    border-radius: 4px;
}

.stars img {
    height: 25px;
    width: auto;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .trust-logo {
    width: 26px;
  }

  .trust-text {
    font-size: 26px;
  }
  .trustpilot-wrapper{
    padding: 20px;
  }
}