@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-primary: #06091a;
  --bg-secondary: #0a1028;
  --bg-card: #0c1530;
  --bg-card-hover: #111d3a;
  
  /* Accent — less saturated, more elegant */
  --accent-cyan: #00c8e8;
  --accent-cyan-dim: rgba(0, 200, 232, 0.4);
  --accent-blue: #1a5cff;
  --accent-gold: #e8a020;
  
  /* Glow — much more subtle */
  --accent-glow: rgba(0, 200, 232, 0.08);
  --accent-glow-strong: rgba(0, 200, 232, 0.18);
  
  /* Text */
  --text-primary: #f0f4ff;
  --text-secondary: #7a8799;
  --text-muted: #485060;
  
  /* Borders — barely visible, premium */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(0, 200, 232, 0.25);
  
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(0, 200, 232, 0.12);
  
  /* Spacing System */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(10, 30, 80, 0.5) 0%, transparent 70%);
  background-attachment: fixed;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 200, 232, 0.25);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 200, 232, 0.45);
}

/* Selection */
::selection {
  background: rgba(0, 200, 232, 0.2);
  color: #fff;
}

/* Slick overrides — minimal */
.slick-prev:before,
.slick-next:before {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
}

.slick-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 8px !important;
}

.slick-dots li.slick-active button:before {
  color: #fff !important;
}

.custom-inidcator ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.custom-inidcator li {
  margin-top: 7em;
  margin-left: 5em;
  margin-right: 5em;
  padding: 0;
  height: fit-content;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .custom-inidcator li {
    margin-top: 0em;
    margin-left: 4em;
    margin-right: 4em;
    padding: 0;
    height: fit-content;
  }
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
  body {
    color: var(--text-primary);
    background: var(--bg-primary);
  }
}
