:root {
  --background: #f0f2f5;
  --surface: #ffffff;
  --surface-variant: #f5f8fc;
  --text-primary: #2c3e50;
  --text-secondary: #5c7089;
  --border-color: rgba(0, 0, 0, 0.08);
  --divider: rgba(0, 0, 0, 0.04);
  --hover: rgba(50, 115, 220, 0.04);
  --selected: rgba(50, 115, 220, 0.08);
  --appbar-bg: #ffffff;
  --drawer-bg: #ffffff;
  --drawer-border: rgba(0, 0, 0, 0.04);
  --card-bg: #ffffff;
  --color-primary: #3273dc;
  --color-primary-light: #4a89dc;
  --color-primary-dark: #2661c7;
  --color-primary-rgb: 50, 115, 220;
  --color-secondary: #00d1b2;
  --color-secondary-light: #00f3d1;
  --color-secondary-dark: #00a693;
  --color-secondary-rgb: 0, 209, 178;
  --color-success: #2661c7;
  --color-success-light: #3273dc;
  --color-success-dark: #1e4b94;
  --color-success-rgb: 38, 97, 199;
  --color-warning: #ffdd57;
  --color-warning-light: #ffe97d;
  --color-warning-dark: #e6c64c;
  --color-warning-rgb: 255, 221, 87;
  --color-error: #ff3860;
  --color-error-light: #ff5b7f;
  --color-error-dark: #e6324d;
  --color-error-rgb: 255, 56, 96;
  --color-info: #3498db;
  --color-info-light: #5dade2;
  --color-info-dark: #2980b9;
  --color-info-rgb: 52, 152, 219;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  --spacing-5xl: 12rem;
  --border-radius-xs: 2px;
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 12px;
  --border-radius-2xl: 16px;
  --border-radius-3xl: 24px;
  --border-radius-4xl: 32px;
  --border-radius-5xl: 48px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-3xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-4xl: 0 20px 56px rgba(0, 0, 0, 0.18);
  --shadow-5xl: 0 24px 64px rgba(0, 0, 0, 0.2);
}
:root .dark-theme {
  --background: #121212;
  --surface: #1e1e1e;
  --surface-variant: #2c2c2c;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --border-color: rgba(255, 255, 255, 0.12);
  --divider: rgba(255, 255, 255, 0.08);
  --hover: rgba(50, 115, 220, 0.08);
  --selected: rgba(50, 115, 220, 0.12);
  --appbar-bg: #1e1e1e;
  --drawer-bg: #1e1e1e;
  --drawer-border: rgba(255, 255, 255, 0.08);
  --card-bg: #1e1e1e;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  background-color: #f7f9fc;
  /* height: 100%; */ /* Removed - causes AOS issues */
  width: 100%;
  overflow-x: hidden;
}

#app, .blazor-app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

a {
  color: #3273dc;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #4a89dc;
  text-decoration: underline;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 960px) {
  h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}
h1:focus {
  outline: none;
}

h2 {
  font-size: 2.4rem;
}
@media (max-width: 960px) {
  h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.8rem;
}
@media (max-width: 960px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 960px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3273dc, #4a89dc);
  margin: 1.5rem auto;
  border-radius: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: z("header");
  transition: all 0.3s ease;
  padding: 1rem 0;
}
.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  height: 40px;
  width: auto;
}
.site-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .site-header .nav-menu {
    display: none;
  }
}
.site-header .nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.site-header .nav-link:hover {
  color: var(--color-primary);
}
.site-header .nav-link.active {
  color: var(--color-primary);
}
.site-header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 960px) {
  .site-header .mobile-menu-toggle {
    display: block;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 960px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-primary {
  color: #3273dc !important;
}

.text-secondary {
  color: #00d1b2 !important;
}

.text-success {
  color: #2661c7 !important;
}

.text-light {
  color: #ffffff !important;
}

.text-muted {
  color: #5c7089 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.bg-primary {
  background-color: #3273dc !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-light {
  background-color: #f7f9fc !important;
}

.rounded {
  border-radius: 6px !important;
}

.rounded-pill {
  border-radius: 50px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

@media (max-width: 960px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
}
@media (max-width: 1280px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(50, 115, 220, 0.7);
  border: 3px solid white;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(50, 115, 220, 0.9);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(50, 115, 220, 0.7) rgba(0, 0, 0, 0.05);
}

.scroll-fade-up {
  transform: translateY(30px);
  transition: all 0.3s ease;
}
.scroll-fade-up.animate {
  transform: translateY(0);
}

.scroll-fade-right {
  transform: translateX(-30px);
  transition: all 0.3s ease;
}
.scroll-fade-right.animate {
  transform: translateX(0);
}

.scroll-fade-left {
  transform: translateX(30px);
  transition: all 0.3s ease;
}
.scroll-fade-left.animate {
  transform: translateX(0);
}

.scroll-zoom {
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.scroll-zoom.animate {
  transform: scale(1);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stagger-item:nth-child(1) {
  transition-delay: 100ms;
}
.stagger-item:nth-child(2) {
  transition-delay: 200ms;
}
.stagger-item:nth-child(3) {
  transition-delay: 300ms;
}
.stagger-item:nth-child(4) {
  transition-delay: 400ms;
}
.stagger-item:nth-child(5) {
  transition-delay: 500ms;
}

.stagger-group.animate .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.logo-container {
  position: relative;
  display: inline-block;
  padding: 4px 8px;
}
.logo-container .logo-wrapper {
  display: inline-block;
  white-space: nowrap;
  position: relative;
}
.logo-container.light-theme .logo-text {
  color: #333333;
  text-shadow: none;
}
.logo-container.light-theme .logo-dot {
  color: #ff7070;
}
.logo-container.dark-theme .logo-text {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.logo-container.dark-theme .logo-dot {
  color: #ff7070;
}
.logo-container.dark-theme .logo-highlight {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  text-shadow: none;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
  opacity: 1;
}
.logo-container .logo-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}
.logo-container .logo-link:hover {
  transform: translateY(-2px);
}
.logo-container .logo-link:hover .logo-accent {
  opacity: 1;
}
.logo-container .logo-link:hover .logo-text::after {
  width: 100%;
}
.logo-container .logo-text {
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.logo-container .logo-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffcc33, #ff6b6b);
  transition: width 0.3s ease;
}
.logo-container .logo-highlight {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  position: relative;
}
.logo-container .logo-dot {
  font-weight: 800;
  position: relative;
  display: inline-block;
  transform: scale(1);
  margin: 0 1px;
}
.logo-container .logo-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 204, 51, 0), #ffee00 50%, rgba(255, 204, 51, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.logo-container.small .logo-text {
  font-size: 1.1rem;
}
@media (max-width: 576px) {
  .logo-container.small .logo-text {
    font-size: 1rem;
    letter-spacing: -0.3px;
  }
}
.logo-container.medium .logo-text {
  font-size: 1.4rem;
}
@media (max-width: 576px) {
  .logo-container.medium .logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.3px;
  }
}
.logo-container.large .logo-text {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .logo-container.large .logo-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  .logo-container.large .logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.4px;
  }
}
.logo-container.extra-large .logo-text {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .logo-container.extra-large .logo-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .logo-container.extra-large .logo-text {
    font-size: 1.6rem;
    letter-spacing: -0.4px;
  }
}

.footer-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf2fc 100%);
  padding: 4rem 0 2rem;
  position: relative;
  width: 100%;
}
.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-content .footer-brand {
  flex: 1 1 300px;
}
.footer-content .footer-brand .logo-container {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-content .footer-brand .footer-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-content .footer-brand .footer-contact {
  margin-bottom: 1.5rem;
}
.footer-content .footer-brand .footer-contact p {
  margin-bottom: 0.5rem;
  color: #555;
}
.footer-content .footer-brand .footer-contact .support-link {
  color: #3273dc;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.footer-content .footer-brand .footer-contact .support-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
  transition: width 0.3s ease;
}
.footer-content .footer-brand .footer-contact .support-link:hover {
  color: #00d1b2;
}
.footer-content .footer-brand .footer-contact .support-link:hover::after {
  width: 100%;
}
.footer-content .footer-brand .social-links {
  display: flex;
  gap: 1rem;
}
.footer-content .footer-brand .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #555;
  transition: all 0.3s ease;
}
.footer-content .footer-brand .social-links .social-link i {
  font-size: 1rem;
}
.footer-content .footer-brand .social-links .social-link:hover {
  background: linear-gradient(135deg, #3273dc 0%, #00d1b2 100%);
  color: #fff;
  transform: translateY(-2px);
}
.footer-content .footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-content .footer-links .footer-column {
  flex: 1 1 140px;
}
.footer-content .footer-links .footer-column .footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}
.footer-content .footer-links .footer-column .footer-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3273dc, #00d1b2);
}
.footer-content .footer-links .footer-column .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-content .footer-links .footer-column .footer-menu li {
  margin-bottom: 0.75rem;
}
.footer-content .footer-links .footer-column .footer-menu .footer-link {
  color: #555;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  cursor: pointer;
}
.footer-content .footer-links .footer-column .footer-menu .footer-link:hover {
  color: #3273dc;
  transform: translateX(3px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(50, 115, 220, 0.1), rgba(0, 209, 178, 0.1), rgba(50, 115, 220, 0.1));
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom .copyright {
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

@media (max-width: 992px) {
  .footer-content {
    gap: 2rem;
  }
  .footer-content .footer-brand {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }
  .footer-content .footer-links {
    flex: 1 1 100%;
  }
  .footer-content .footer-links .footer-column {
    flex: 1 1 120px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 1.5rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-content .footer-links {
    gap: 1.5rem;
  }
  .footer-content .footer-links .footer-column {
    flex: 1 1 100%;
  }
}
@media (max-width: 576px) {
  .footer-section {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-content .footer-brand {
    text-align: center;
  }
  .footer-content .footer-brand .logo-container {
    display: flex;
    justify-content: center;
  }
  .footer-content .footer-links .footer-column .footer-title {
    margin-bottom: 1rem;
  }
  .footer-content .footer-links .footer-column .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  max-width: 360px;
  animation: slideInRight 0.4s ease-out;
}
.cookie-consent__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.cookie-consent__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2), 0 6px 20px rgba(0, 0, 0, 0.12);
}
.cookie-consent__content {
  padding: 0.875rem;
  padding-bottom: 0.625rem;
  margin-bottom: -1.5rem;
}
.cookie-consent__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
  font-weight: 500;
}
.cookie-consent__text br {
  display: block;
  margin: 0.25rem 0;
}
.cookie-consent__link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.cookie-consent__link:hover {
  color: #764ba2;
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  padding: 0 0.875rem 0.875rem;
  justify-content: flex-end;
  margin-top: -0.25rem;
}
.cookie-consent__button {
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 70px;
}
.cookie-consent__button--accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}
.cookie-consent__button--accept:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transform: translateY(-1px);
}
.cookie-consent__button--accept:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}
@media (max-width: 960px) {
  .cookie-consent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  .cookie-consent__card {
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cookie-consent__content {
    padding: 0.75rem;
    padding-right: 0;
    margin-bottom: 0;
    flex: 1;
  }
  .cookie-consent__text {
    font-size: 0.8rem;
    text-align: left;
  }
  .cookie-consent__actions {
    padding: 0.75rem;
    padding-left: 0;
    margin-top: 0;
    flex-shrink: 0;
  }
  .cookie-consent__button {
    min-width: 80px;
    padding: 0.6rem 0.875rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .cookie-consent {
    bottom: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
  }
  .cookie-consent__card {
    gap: 0.5rem;
  }
  .cookie-consent__content {
    padding: 0.75rem;
    padding-right: 0;
  }
  .cookie-consent__text {
    font-size: 0.75rem;
  }
  .cookie-consent__actions {
    padding: 0.75rem;
    padding-left: 0;
  }
  .cookie-consent__button {
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
    min-width: 70px;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.prompt-suggestions {
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.prompt-suggestions--visible {
  opacity: 1;
  transform: translateY(-22px);
}
.prompt-suggestions__header {
  margin-bottom: 0.75rem;
}
@media (max-width: 600px) {
  .prompt-suggestions__header {
    margin-bottom: 0.5rem;
  }
}
.prompt-suggestions__title {
  color: var(--hero-text-color-dim, var(--text-secondary));
  font-weight: 600;
  font-size: var(--hero-font-size, 0.875rem);
  display: flex;
  align-items: center;
  text-align: var(--hero-text-align, left);
  margin-bottom: var(--hero-title-margin, 0.75rem);
}
@media (max-width: 600px) {
  .prompt-suggestions__title {
    font-size: var(--hero-font-size-mobile, 0.8rem);
  }
}
.prompt-suggestions__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hero-gap, 0.5rem);
  justify-content: var(--hero-justify, flex-start);
  max-width: var(--hero-max-width, none);
  margin: var(--hero-list-margin, 0);
}
@media (max-width: 600px) {
  .prompt-suggestions__list {
    flex-direction: column;
    gap: var(--hero-gap-mobile, 0.25rem);
  }
}
@media (max-width: 960px) and (min-width: 600px) {
  .prompt-suggestions__list {
    gap: var(--hero-gap-tablet, 0.375rem);
  }
}
.prompt-suggestions__item {
  background: var(--hero-bg-color, linear-gradient(135deg, rgba(50, 115, 220, 0.08), rgba(0, 209, 178, 0.05)));
  border: 1px solid var(--hero-border-color, rgba(50, 115, 220, 0.15));
  border-radius: var(--hero-border-radius, 20px);
  padding: var(--hero-padding, 0.4rem 0.75rem);
  cursor: pointer;
  transition: all var(--hero-transition-speed, 0.4s) cubic-bezier(0.4, 0, 0.2, 1);
  font-size: var(--hero-font-size, 0.8rem);
  font-weight: 500;
  color: var(--hero-text-color, var(--text-primary));
  white-space: var(--hero-whitespace, nowrap);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  max-width: var(--hero-item-max-width, 280px);
  min-width: var(--hero-item-min-width, 120px);
  position: relative;
  transform-origin: center;
  backdrop-filter: var(--hero-backdrop-blur, none);
  -webkit-backdrop-filter: var(--hero-backdrop-blur, none);
  box-shadow: var(--hero-box-shadow, none);
  overflow: var(--hero-overflow, visible);
  opacity: 0;
  transform: translateY(20px);
}
.prompt-suggestions--visible .prompt-suggestions__item {
  opacity: 1;
  transform: translateY(0);
  transition: all var(--hero-transition-speed, 0.4s) cubic-bezier(0.4, 0, 0.2, 1);
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(1) {
  transition-delay: 0.08s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(2) {
  transition-delay: 0.16s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(3) {
  transition-delay: 0.24s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(4) {
  transition-delay: 0.32s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(5) {
  transition-delay: 0.4s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(6) {
  transition-delay: 0.48s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(7) {
  transition-delay: 0.56s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(8) {
  transition-delay: 0.64s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(9) {
  transition-delay: 0.72s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(10) {
  transition-delay: 0.8s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(11) {
  transition-delay: 0.88s;
}
.prompt-suggestions--visible .prompt-suggestions__item:nth-child(12) {
  transition-delay: 0.96s;
}
.prompt-suggestions__item::before {
  content: var(--hero-before-content, "");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: var(--hero-border-radius, 20px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prompt-suggestions__item::after {
  content: var(--hero-after-content, "");
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 1px;
  opacity: 0.7;
}
.prompt-suggestions__item:hover {
  background: var(--hero-bg-color-hover, linear-gradient(135deg, rgba(50, 115, 220, 0.12), rgba(0, 209, 178, 0.08)));
  border-color: var(--hero-border-color-hover, rgba(50, 115, 220, 0.25));
  transform: var(--hero-hover-transform, translateY(0) scale(1.02));
  box-shadow: var(--hero-hover-box-shadow, 0 4px 12px rgba(50, 115, 220, 0.15));
  z-index: 2;
}
.prompt-suggestions__item:hover::before {
  opacity: var(--hero-before-opacity, 0);
}
.prompt-suggestions__item:hover .prompt-suggestions__icon {
  opacity: 1;
  transform: var(--hero-icon-hover-transform, none);
  filter: var(--hero-icon-hover-filter, none);
}
.prompt-suggestions__item:hover .prompt-suggestions__text {
  color: var(--hero-text-color-bright, inherit);
  text-shadow: var(--hero-text-shadow, none);
}
.prompt-suggestions__item:active {
  transform: var(--hero-active-transform, translateY(0) scale(0.98));
  transition-duration: var(--hero-active-duration, 0.2s);
}
@media (max-width: 600px) {
  .prompt-suggestions__item {
    width: 100%;
    max-width: none;
    min-width: auto;
    padding: 0.375rem 0.5rem;
    white-space: normal;
    min-height: 32px;
    border-radius: 8px;
    font-size: 0.75rem;
  }
  .prompt-suggestions__item:hover {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(50, 115, 220, 0.12);
  }
  .prompt-suggestions__item:active {
    transform: translateY(0) scale(0.98);
    background: linear-gradient(135deg, rgba(50, 115, 220, 0.15), rgba(0, 209, 178, 0.1));
  }
}
@media (max-width: 960px) and (min-width: 600px) {
  .prompt-suggestions__item {
    padding: 0.5rem 0.75rem;
    max-width: 240px;
  }
  .prompt-suggestions__item:hover {
    transform: translateY(0) scale(1.01);
  }
}
.prompt-suggestions__icon {
  font-size: var(--hero-icon-size, 0.95rem);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: var(--hero-icon-opacity, 0.8);
}
.prompt-suggestions__text {
  color: var(--hero-text-color, inherit);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.theme-transition {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-theme {
  --background: #121212;
  --surface: #1e1e1e;
  --surface-variant: #2c2c2c;
  --text-primary: #f5f5f5;
  --text-secondary: #aaaaaa;
  --divider: rgba(255, 255, 255, 0.08);
  --hover: rgba(50, 115, 220, 0.08);
  --selected: rgba(50, 115, 220, 0.12);
  --appbar-bg: #1e1e1e;
  --drawer-bg: #1e1e1e;
  --drawer-border: rgba(255, 255, 255, 0.08);
  --card-bg: #1e1e1e;
}

.app-page-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background-color: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
@media (max-width: 1280px) {
  .app-page-container {
    max-width: 100%;
    border-radius: 6px;
  }
}
@media (max-width: 960px) {
  .app-page-container {
    border-radius: 4px;
    margin: 0 1rem;
  }
}
@media (max-width: 600px) {
  .app-page-container {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }
}
.app-page-container .custom-card {
  background-color: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (max-width: 600px) {
  .app-page-container .custom-card {
    margin-bottom: 1rem;
    border-radius: 4px;
  }
}
.app-page-container .custom-card .card-header {
  padding: 1.5rem;
  background-color: var(--surface-variant);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 600px) {
  .app-page-container .custom-card .card-header {
    padding: 1rem;
  }
}
.app-page-container .custom-card .card-content {
  padding: 1.5rem;
}
@media (max-width: 960px) {
  .app-page-container .custom-card .card-content {
    padding: 1.25rem;
  }
}
@media (max-width: 600px) {
  .app-page-container .custom-card .card-content {
    padding: 1rem;
  }
}
.app-page-container .form-field {
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .app-page-container .form-field {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 600px) {
  .app-page-container .form-field .form-input {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .app-page-container .btn {
    min-height: 44px;
  }
  .app-page-container .btn.btn-large {
    min-height: 48px;
    font-size: 1rem;
  }
  .app-page-container .btn.btn-small {
    min-height: 36px;
    font-size: 0.85rem;
  }
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 960px) {
  .two-column {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) and (max-height: 500px) {
  .keyboard-adaptive .app-page-container {
    min-height: auto;
  }
  .keyboard-adaptive .modal-dialog {
    max-height: 50vh;
  }
  .keyboard-adaptive .presentation-preview__prompt-panel--active {
    max-height: 60vh;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9) translateX(15px);
  }
  100% {
    opacity: 1;
    transform: scale(1.15) translateX(0);
  }
}
@media (max-width: 600px) {
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: translateX(50%) scale(0.9);
    }
    100% {
      opacity: 1;
      transform: translateX(50%) scale(1);
    }
  }
}
@media (max-width: 960px) {
  .app-page-container .card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .app-page-container .card-header .header-content {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .app-page-container .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-page-container .card-header .header-actions {
    margin-top: 1rem;
    width: 100%;
  }
  .snackbar .snackbar-content {
    font-size: 0.9rem;
  }
  .tooltip {
    font-size: 0.85rem;
    max-width: 90vw;
  }
  .ios-viewport-fix {
    min-height: -webkit-fill-available;
  }
}
#components-reconnect-modal,
#components-reconnect-modal *,
[id*=components-reconnect],
[class*=components-reconnect],
[id*=blazor-error],
[class*=blazor-error] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
}

div:contains("Rejoining the server"),
div:contains("Attempting to reconnect"),
div:contains("Connection lost"),
div:contains("Failed to reconnect"),
span:contains("Rejoining"),
span:contains("reconnect") {
  display: none !important;
}

.blazor-reconnecting {
  position: relative;
}
.blazor-reconnecting::before {
  content: "Server is updating...";
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  z-index: 99999 !important;
  backdrop-filter: blur(10px) !important;
  animation: reconnectPulse 2s infinite ease-in-out !important;
  pointer-events: none !important;
}

@keyframes reconnectPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/*# sourceMappingURL=shared.css.map */
