* {
  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);
  --text-color2-rgb: 0, 168, 232;
  --accent-color-rgb: 255, 255, 255;
}

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;
  }
}

/*  */

.policy-color {
  background-color: var(--background-color1);
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.policy-header h1 {
  color: var(--text-color2);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content {
  background: rgba(var(--accent-color-rgb), 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.policy-content h2 {
  color: var(--text-color2);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.policy-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .policy-header h1 {
    font-size: 1.5rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }

  .policy-content p {
    font-size: 0.9rem;
  }
}

.terms-bgcolor {
  background-color: var(--background-color1);
}

.terms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.terms-header {
  text-align: center;
  margin-bottom: 2rem;
}

.terms-header h1 {
  color: var(--text-color2);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.terms-content {
  background: rgba(var(--accent-color-rgb), 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.terms-content h2 {
  color: var(--text-color2);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.terms-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 2rem;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .terms-header h1 {
    font-size: 1.5rem;
  }

  .terms-content h2 {
    font-size: 1.3rem;
  }

  .terms-content p {
    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;
}

.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;
  }
}


/* Refund Policy page CSS */
.refund-bgcolor{
  background-color: var(--background-color1);
}

.refund-classname {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.refund-header {
  text-align: center;
  margin-bottom: 2rem;
}

.refund-header h1 {
  color: var(--text-color2);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.refund-content {
  background: rgba(var(--accent-color-rgb), 0.05);
  padding: 2rem;
  border-radius: 10px;
}

.refund-content h2 {
  color: var(--text-color2);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.refund-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .refund-header h1 {
      font-size: 2rem;
  }

  .refund-content h2 {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .refund-header h1 {
      font-size: 1.5rem;
  }

  .refund-content h2 {
      font-size: 1.3rem;
  }

  .refund-content p {
      font-size: 0.9rem;
  }
}