:root {
  --bg: #121212; /* Page background */
  --surface: #1E1E1E; /* Cards and panels */
  --text: #E0E0E0; /* Primary text */
  --muted: #B0B0B0; /* Secondary text */
  --primary: #26A69A; /* Primary brand color (cyan) */
  --primary-dark: #00897B; /* Darker primary for gradients */
  --accent: #FFCA28; /* Accent color (gold) */
  --border: #2C2C2C; /* Borders */
  --ring: #4FC3F7; /* Focus ring */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --radius: 8px; /* Reduced radius for a sharper look */
}

/* Reset */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, Roboto, system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
a { text-decoration: none; color: var(--primary); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: Inter, Roboto, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ring);
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  z-index: 10000;
}
.skip-link:focus { top: 10px; outline: 2px solid var(--ring); }
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section__title span { color: var(--primary); }

/* Buttons */
.main__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
      max-width: 200px;
    width: 100%;
}
.main__btn:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  transform: scale(1.02);
  color: #fff;
}
.main__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.header__logo {
  display: block;
  margin: 10px auto;
  max-width: 70px;
}
.logo__img { width: 70px; height: 70px; object-fit: cover; }

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #1A1A1A, var(--bg));
}
.hero__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero__text {
  font-size: 1.125rem;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero__item {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s ease;
}
.hero__item:hover { transform: translateY(-4px); }
.hero__item svg { width: 2rem; height: 2rem; margin-bottom: 0.75rem; }
.hero__item-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.hero__item p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 768px) {
  .hero { padding: 80px 0 40px; }
  .hero__list { grid-template-columns: 1fr; }
}

/* Operators Section */
.operators { padding: 3rem 0; }
.operators__inner {
  display: grid;
  gap: 1.5rem;
}
.operator {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.operator:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.operator__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.operator__media-pic img { height: 40px; width: auto; object-fit: contain; }
.operator__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.operator__rating svg { width: 1rem; height: 1rem; }
.operator__rating-text { color: var(--muted); font-size: 0.9rem; margin-left: 0.5rem; }
.operator__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.operator__item {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}
.operator__item-text { color: var(--primary); font-weight: 600; }
.operator__item-text span { display: block; color: var(--muted); font-size: 0.9rem; }
.operator__feature li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.operator__feature svg { width: 1rem; height: 1rem; }

@media (max-width: 1200px) {
  .operators__inner { grid-template-columns: 1fr; }
}

/* Choose Section */
.choose { padding: 3rem 0; }
.choose__title { margin-bottom: 1.5rem; }
.choose__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.choose__card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.choose__media {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(38, 166, 154, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose__media svg { width: 1.25rem; height: 1.25rem; }
.choose__card-title { font-size: 1.1rem; margin-bottom: 0.25rem; }
.choose__card-text { color: var(--muted); }
@media (max-width: 768px) {
  .choose__inner { grid-template-columns: 1fr; }
}

/* Criteria Section */
.criteria { padding: 3rem 0; }
.criteria__title { margin-bottom: 1rem; }
.criteria__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}
.criteria__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.criteria__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.criteria__media {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(38, 166, 154, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.criteria__media svg { width: 1.25rem; height: 1.25rem; }
.criteria__item-title { font-size: 1.1rem; margin-bottom: 0.25rem; }
.criteria__item-text { color: var(--muted); }
@media (max-width: 768px) {
  .criteria__inner { grid-template-columns: 1fr; }
}

/* FAQ Section */
.faq { padding: 3rem 0; }
.faq__title { margin-bottom: 1rem; }
.faq__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: transform 0.2s ease;
}
.faq__item.active .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__answer p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--border);
}
.footer__list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}
.footer__link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.footer__description {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer__text {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.footer__text span {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.footer__copy {
  text-align: center;
  color: var(--muted);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 992px) {
  .footer__description { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer__description { grid-template-columns: 1fr; }
  .operator{
    flex-wrap: wrap;
    justify-content: center;
  }
  .operator__media-pic img{
    margin-left: auto;
    margin-right: auto;
  }
  .hero__title{
    font-size: 2rem;
  }
}


/* Legal Pages */
.legal-page { padding: 100px 0 60px; }
.legal-page__title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}
.legal-page__content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(5px);
}
.legal-page__content p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.legal-page__content h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}
.legal-page__content ul {
  margin: 0 0 1.25rem 1.5rem;
}
.legal-page__content li {
  list-style: disc;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.legal-page__content a {
  color: var(--primary);
  font-weight: 500;
}
.legal-page__content a:hover { color: var(--primary-darker); }
@media (max-width: 768px) {
  .legal-page { padding: 80px 0 40px; }
  .legal-page__title { font-size: 2.25rem; }
  .legal-page__content { padding: 1.5rem; }
}