/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100vh;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
  font-family:
    "Inter",
    "Roboto",
    Arial,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
}
@media screen and (max-width: 768px) {
  html,
  body {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  html,
  body {
    height: auto !important;
    min-height: 100vh !important;
    max-height: none !important;
    overflow-y: auto !important;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --bg-primary: url(/bright-background.png);
  --bg-secondary: #f8f9fa;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --border-color: rgba(255, 255, 255, 0.2);
  --button-bg: rgba(255, 255, 255, 0.15);
  --button-hover-bg: rgba(255, 255, 255, 0.25);
  --button-hover-border: rgba(255, 255, 255, 0.4);
  --header-bg: rgba(255, 255, 255, 0.1);
  --btn-primary-bg: rgba(255, 255, 255, 0.2);
  --btn-primary-text: #ffffff;
  --btn-primary-border: rgba(255, 255, 255, 0.3);
  --btn-primary-hover-bg: rgba(255, 255, 255, 0.3);
  --btn-primary-hover-border: rgba(255, 255, 255, 0.5);
  --btn-primary-hover-text: #ffffff;
  --btn-outline-bg: transparent;
  --btn-outline-text: #ffffff;
  --btn-outline-border: rgba(255, 255, 255, 0.4);
  --btn-outline-hover-bg: rgba(255, 255, 255, 0.1);
  --btn-outline-hover-text: #ffffff;
  --btn-outline-hover-border: rgba(255, 255, 255, 0.6);
  --workspace-bg: url(/bright-background.png);
  --card-bg: rgba(255, 255, 255, 0.15);
}
:root.theme-dark {
  --bg-primary:
    linear-gradient(
      135deg,
      #2d1b69 0%,
      #11101d 40%);
  --bg-secondary: #1a1a2e;
  --text-primary: #e2e8f0;
  --text-secondary: #a0aec0;
  --border-color: rgba(255, 255, 255, 0.1);
  --button-bg: rgba(255, 255, 255, 0.1);
  --button-hover-bg: rgba(255, 255, 255, 0.2);
  --button-hover-border: rgba(255, 255, 255, 0.3);
  --header-bg: rgba(0, 0, 0, 0.2);
  --btn-primary-bg: rgba(102, 126, 234, 0.3);
  --btn-primary-text: #ffffff;
  --btn-primary-border: rgba(102, 126, 234, 0.5);
  --btn-primary-hover-bg: rgba(102, 126, 234, 0.5);
  --btn-primary-hover-border: rgba(102, 126, 234, 0.7);
  --btn-primary-hover-text: #ffffff;
  --btn-outline-bg: transparent;
  --btn-outline-text: #e2e8f0;
  --btn-outline-border: rgba(102, 126, 234, 0.4);
  --btn-outline-hover-bg: rgba(102, 126, 234, 0.2);
  --btn-outline-hover-text: #ffffff;
  --btn-outline-hover-border: rgba(102, 126, 234, 0.6);
  --workspace-bg:
    linear-gradient(
      135deg,
      #2d1b69 0%,
      #11101d 40%);
  --card-bg: rgba(0, 0, 0, 0.3);
}
.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  background: var(--button-bg);
  color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  touch-action: manipulation;
}
.btn:focus {
  outline: none;
}
.btn:active {
  animation: btn-tap-grow 2s ease-out;
}
@keyframes btn-tap-grow {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.btn-primary {
  background: var(--primary-color, #4a90e2);
  color: white;
  border: none;
}
.btn-primary:hover {
  background: var(--primary-color-dark, #3a7bc8);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}
.feature-card,
.card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-card:hover,
.card:hover {
  transform: translateY(-5px);
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
}
:root.theme-dark .glass-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
:root.theme-dark .glass-card:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.workspace-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.workspace-sidebar {
  position: relative;
  width: 48px;
  border-radius: 0 2px 2px 0;
  background: #2d2d2d;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 24px;
  gap: 16px;
  opacity: 1;
}
.workspace-sidebar button {
  background: none;
  border: none;
  color: #fff;
  margin-bottom: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
}
.workspace-sidebar button:hover {
  background: #444;
}
.bottom-sidebar-buttons {
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}
.center-sidebar-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.top-sidebar-buttons {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
  margin-top: 8px;
  margin-bottom: auto;
}
.workspace-main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--workspace-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow-y: hidden;
}
.workspace-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: white;
}
.central-pane,
.adds-pane {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.central-pane {
  padding: 28px 24px;
  height: calc(65.666vh - 56px);
  min-height: 0;
  flex: 1 1 auto;
}
.adds-pane {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0;
  height: auto;
  min-height: auto;
}
.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(94, 62, 170);
  height: 6px;
  min-height: 6px;
  max-height: 6px;
  margin-bottom: 0px;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(182, 148, 177);
  font-size: 10px;
  font-weight: 500;
  border-radius: 10px 10px 0px 0px;
  z-index: 99;
}
.footer-content {
  display: flex;
  justify-content: center;
  justify-self: center;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
.adsense-banner-placeholder {
  width: 100%;
  height: 90px;
  background:
    repeating-linear-gradient(
      45deg,
      #eee,
      #eee 10px,
      #ddd 10px,
      #ddd 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1em;
  border-radius: 8px;
}
.user-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-icons {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}
.custom-menu-icons {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  margin-right: 8px;
}
.menu-item-text {
  margin-left: 4px;
  font-size: 14px;
  color: #000000;
  align-self: center;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
