
/* MCTrader Dark Theme - From your actual theme.js */
body.v-theme--dark {
  --v-theme-background: 40, 36, 61; /* #28243D */
  --v-theme-surface: 49, 45, 75; /* #312d4b */
  --v-theme-primary: 140, 87, 255; /* #8C57FF */
  --v-theme-secondary: 138, 141, 147; /* #8A8D93*/
  --v-theme-on-surface: 231, 227, 252; /* #E7E3FC */
  --v-theme-on-background: 231, 227, 252; /* #E7E3FC */
  --v-theme-success: 86, 202, 0; /* #56CA00 */
  --v-theme-info: 22, 177, 255; /* #16B1FF */
  --v-theme-warning: 255, 180, 0; /* #FFB400 */
  --v-theme-error: 255, 76, 81; /* #FF4C51 */
  --v-border-color: 231, 227, 252; /* #E7E3FC */
  --v-border-opacity: 0.12;
  --v-high-emphasis-opacity: 0.9;
  --v-medium-emphasis-opacity: 0.7;
  --v-disabled-opacity: 0.4;
}

/* MCTrader Light Theme - From your actual theme.js */
body:not(.v-theme--dark) {
  --v-theme-background: 244, 245, 250; /* #f4f5fa */
  --v-theme-surface: 255, 255, 255; /* #fff */
  --v-theme-primary: 140, 87, 255; /* #8C57FF */
  --v-theme-secondary: 138, 141, 147; /* #8A8D93 */
  --v-theme-on-surface: 46, 38, 61; /* #2E263D */
  --v-theme-on-background: 46, 38, 61; /* #2E263D */
  --v-theme-success: 86, 202, 0; /* #56CA00 */
  --v-theme-info: 22, 177, 255; /* #16B1FF */
  --v-theme-warning: 255, 180, 0; /* #FFB400 */
  --v-theme-error: 255, 76, 81; /* #FF4C51 */
  --v-border-color: 46, 38, 61; /* #2E263D */
  --v-border-opacity: 0.12;
  --v-high-emphasis-opacity: 0.9;
  --v-medium-emphasis-opacity: 0.7;
  --v-disabled-opacity: 0.4;
}

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

body {
  font-family: "Inter", sans-serif, -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
    "Helvetica Neue", arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: rgb(var(--v-theme-background));
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
  line-height: 1.375;
  font-size: 0.9375rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.content {
  text-align: center;
  max-width: 32rem;
  width: 100%;
  background-color: rgb(var(--v-theme-surface));
  padding: 3rem 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.logo {
  margin-bottom: 2rem;
}

.logo-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Dark theme: Set color for SVG so st0 elements (currentColor) become primary color */
body.v-theme--dark .logo-image {
  color: rgb(var(--v-theme-primary));
}

.coming-soon {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 3.5rem;
  letter-spacing: normal;
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
  margin-bottom: 1rem;
}

.description {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
  margin: 0;
}

@media (max-width: 768px) {
  .content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .coming-soon {
    font-size: 1.75rem;
    line-height: 2.625rem;
    margin-bottom: 0.75rem;
  }
  
  .logo-image {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1.5rem 1rem;
  }
  
  .coming-soon {
    font-size: 1.5rem;
    line-height: 2.375rem;
  }
  
  .description {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}