* {
  box-sizing: border-box;
}

html {
  background: #09090b;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(254, 40, 74, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(255, 192, 68, 0.12), transparent 24rem),
    #09090b;
  color: #f8f8fb;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: #ffffff;
  color: #101014;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

main {
  display: block;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

header .top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

header .top-menu > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

header a[aria-label="Vavada"] {
  display: inline-flex;
  width: 170px;
  min-width: 145px;
}

header a[aria-label="Vavada"] svg {
  display: block;
  width: 170px;
  height: auto;
}

header .top-menu > div:first-child a[aria-label="Vavada"] + a[aria-label="Vavada"] {
  width: 62px;
  min-width: 62px;
}

header .top-menu > div:first-child a[aria-label="Vavada"] + a[aria-label="Vavada"] svg {
  width: 62px;
}

header .top-menu > div:nth-child(2) button {
  display: none;
}

header nav {
  width: 100%;
  background: rgba(18, 18, 22, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

header nav nav,
header .w-navigation-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.15rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0.7rem 0;
}

header nav ul,
header nav ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

header nav li {
  display: inline-flex;
  align-items: center;
}

header nav a,
header nav button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: #d7d7df;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}

header nav svg,
header button svg {
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.35rem;
}

header nav a:hover,
header nav button:hover {
  color: #ffffff;
}

header a[href="/signin/"],
header a[href="/signup/"],
footer a[href="/signup/"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.05rem;
  border-radius: 8px;
  font-weight: 800;
}

header a[href="/signin/"] {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f0f0f4;
}

header a[href="/signup/"],
footer a[href="/signup/"] {
  background: #fe284a;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(254, 40, 74, 0.28);
}

header .top-menu a[href="/signup/"] {
  flex-direction: row;
  gap: 0.45rem;
  width: auto;
  max-width: 150px;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
}

header .top-menu a[href="/signup/"] svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

header .top-menu a[href="/signup/"] span,
header .top-menu a[href="/signup/"] div {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
}

header nav [role="menu"],
header nav [data-radix-popper-content-wrapper],
header nav .w-menu-viewport,
header nav .w-navigation-menu-viewport {
  display: none;
}

section,
footer > section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0;
}

.slider-section {
  width: min(1120px, calc(100% - 32px));
  margin: 2rem auto 0;
  padding: 0;
}

.slider-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  min-width: 0;
}

.slide {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 168px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(254, 40, 74, 0.2), rgba(255, 196, 68, 0.08)),
    #17181d;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.slide a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #fe284a;
  color: #ffffff;
  font-weight: 800;
}

.slide div {
  display: block;
  width: 100%;
  color: #f4f4f7;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.slide div:first-child {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

header + section,
header + div section:first-of-type {
  padding-top: 4rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  line-height: 1.16;
}

h1 {
  max-width: 980px;
  font-size: 4.2rem;
  letter-spacing: 0;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0 0 1rem;
  color: #d5d5dd;
}

.main-content,
article,
[class*="main-content"] {
  max-width: 920px;
  color: #d7d7df;
  font-size: 1.05rem;
}

.main-content a {
  color: #ffcc55;
}

.w-tab-list,
[role="tablist"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.w-tab-trigger,
[role="tab"] {
  min-height: 38px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #191a1f;
  color: #f4f4f7;
}

section a[href="/signup/"]:not(header a):not(footer a) {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(254, 40, 74, 0.18), rgba(255, 196, 68, 0.08)),
    #17181d;
  color: #ffffff;
}

section:has(> div a[href="/signup/"]) > div,
section:has(a[href="/signup/"]) {
  gap: 1rem;
}

section > div:has(a[href="/signup/"]) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.w-item,
details,
.w-accordion-item,
.w-item-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.w-item-trigger,
.w-item-header button {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

img[src*="provider_logos"] {
  display: block;
  width: min(100%, 1120px);
  height: 36px;
  object-fit: cover;
  opacity: 0.8;
  border-radius: 8px;
}

footer {
  margin-top: 2rem;
  background: #111216;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer section {
  display: grid;
  gap: 1rem;
}

footer a {
  color: #d8d8df;
}

footer a:hover {
  color: #ffffff;
}

@media (max-width: 760px) {
  header .top-menu {
    min-height: auto;
    padding: 0.8rem 0;
    align-items: flex-start;
  }

  header .top-menu,
  header .top-menu > div,
  header nav nav,
  header .w-navigation-menu {
    flex-wrap: wrap;
  }

  header nav nav,
  header .w-navigation-menu {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.85rem;
  }

  header nav ul,
  header nav ol {
    justify-content: flex-start;
  }

  header a[aria-label="Vavada"],
  header a[aria-label="Vavada"] svg {
    width: 140px;
  }

  header .top-menu > div:first-child a[aria-label="Vavada"] + a[aria-label="Vavada"],
  header .top-menu > div:first-child a[aria-label="Vavada"] + a[aria-label="Vavada"] svg {
    width: 48px;
    min-width: 48px;
  }

  header .top-menu > div:nth-child(2) button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #3a3a3f;
    color: #ffffff;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  section,
  footer > section {
    width: min(100% - 24px, 1120px);
    padding: 2rem 0;
  }

  .slider-section {
    width: min(100% - 24px, 1120px);
  }

  html body main .slider-section {
    display: block !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
  }

  html body main .slider-section,
  html body main .slider-section * {
    box-sizing: border-box;
  }

  html body main .slider-section .slider-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  html body main .slider-section .slider-container > .slide,
  html body main .slider-section .slide {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body main .slider-section .slide a[href="/signup/"],
  html body main section .slide a[href="/signup/"]:not(header a):not(footer a) {
    width: auto !important;
    max-width: 100% !important;
    min-height: 42px !important;
    white-space: normal !important;
  }

  html body main .slider-section .slide .w-text,
  html body main .slider-section .slide div,
  html body main .slider-section .slide span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}
