:root {
  --bg: #f6f9ff;
  --surface: #ffffff;
  --surface-2: #f3f7ff;
  --text: #0b1724;
  --muted: #6b7280;
  --brand: #4E7BE8;
  --brand-2: #4E7BE8;
  --brand-3: #ff6ea6;
  --accent: #06B6D4;
  --ring: #81A5F333;
  --radius: 18px;
  --base-100: #f3f7ff;
  --base-200: #e6f0ff;
  --base-300: #d1e7ff;
  --base-400: #b6d7ff;
  --base-500: #8fbff8;
  --base-600: #5f93e0;
  --base-700: #355fae;
  --base-800: #233b6f;
  --base-900: #0f1f36;
  --shadow: 0 8px 24px rgba(11, 17, 32, 0.06), 0 2px 6px rgba(11, 17, 32, 0.04);
  --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  --text-shadow-strong: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-button {
  width: 2px;
  height: 2px;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
  min-height: 100dvh;
}

@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
  }
}

html,
body,
#app {
  font-family: Ubuntu, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);

  scroll-behavior: smooth;
  scrollbar-color: var(--brand) var(--surface);
  scrollbar-width: thin;
  line-height: 1.6;
}

main {
  width: 100%;
}



/* CONTAINER */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-button {
  width: 2px;
  height: 2px;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
  }
}

section {
  box-sizing: border-box;
  place-content: center;
  direction: ltr;
}

.horizontal-scroll-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100dvh;
  height: 100vw;
  margin: 100dvh 0 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  transform: rotate(-90deg);
  transform-origin: left top;
  direction: rtl;
}

.horizontal-scroll-wrapper>section {
  display: block;
  transform: rotate(90deg);
  translate: 100%;
  transform-origin: left top;
  height: 100dvh;
  width: 100vw;
  margin-bottom: calc(50vw - 100dvh);
}

@media (max-width: 768px) {
  .horizontal-scroll-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    overflow-x: visible;
    overflow-y: visible;
    transform: none;
    transform-origin: unset;
    direction: ltr;
    padding-bottom: 0;
  }

  .horizontal-scroll-wrapper>section {
    display: block;
    transform: none;
    translate: 0;
    transform-origin: unset;
    height: auto;
    width: 100%;
    margin-bottom: 0;
    overflow-x: visible;
    min-height: auto;
  }
}

/* NAVIGATION */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 25, 54, 0.33);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

/* FOOTER STYLES */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--base-300);
  backdrop-filter: blur(10px);
  padding: 2px 12px;
  border-top-right-radius: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 1rem;
    text-align: center;
  }

  .footer-copyright p {
    font-size: 11px;
  }
}

/* HEADER */

.header {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.btn-header {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-header.redirection {
  background-color: rgba(255, 255, 255, 0.55);
  color: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-header.redirection:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-header.action {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-3) 100%);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(78, 123, 232, 0.4);
}

.btn-header.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 123, 232, 0.5);
}

.header-icon {
  padding: 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 48px;
}

.header-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.header-icon img {
  height: 20px;
  width: auto;
  max-height: 20px;
  object-fit: contain;
}

