
.dark-mode-control[data-v-4d053d7a] {
  position: relative;
}
.theme-toggle-btn[data-v-4d053d7a] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg, white);
  border: 2px solid var(--border-color, #ddd);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow, rgba(0,0,0,0.1));
}
.theme-toggle-btn[data-v-4d053d7a]:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-hover, rgba(0,0,0,0.15));
}
.theme-toggle-btn.rotating .theme-icon[data-v-4d053d7a] {
  animation: rotate360-4d053d7a 0.5s ease;
}
@keyframes rotate360-4d053d7a {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}
.theme-options[data-v-4d053d7a] {
  position: absolute;
  top: 60px;
  right: 0;
  background: var(--card-bg, white);
  border: 2px solid var(--border-color, #ddd);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 4px 20px var(--shadow, rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
  z-index: 1000;
}
.theme-option[data-v-4d053d7a] {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  color: var(--text-primary, #333);
}
.theme-option[data-v-4d053d7a]:hover {
  background: var(--bg-secondary, #f5f5f5);
}
.theme-option.active[data-v-4d053d7a] {
  background: var(--accent-primary, #667eea);
  color: white;
}
.option-icon[data-v-4d053d7a] {
  font-size: 1.2rem;
}
.option-label[data-v-4d053d7a] {
  font-weight: 500;
}
@media (max-width: 768px) {
.theme-toggle-btn[data-v-4d053d7a] {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
}
.theme-options[data-v-4d053d7a] {
    top: 55px;
}
}

.language-switcher[data-v-fd7005ca] {
  position: relative;
  font-family: system-ui, -apple-system, sans-serif;
}
.language-btn[data-v-fd7005ca] {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s;
}
.language-btn[data-v-fd7005ca]:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}
.language-btn .flag[data-v-fd7005ca] {
  font-size: 18px;
  line-height: 1;
}
.language-btn .code[data-v-fd7005ca] {
  font-size: 12px;
  letter-spacing: 0.5px;
}
.language-btn .arrow[data-v-fd7005ca] {
  font-size: 10px;
  color: #9ca3af;
  transition: transform 0.2s;
}
.language-switcher.expanded .language-btn .arrow[data-v-fd7005ca] {
  transform: rotate(180deg);
}
.language-list[data-v-fd7005ca] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1000;
}
.language-switcher:not(.expanded) .language-list[data-v-fd7005ca] {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  animation: slideDown-fd7005ca 0.2s ease-out;
}
@keyframes slideDown-fd7005ca {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.language-option[data-v-fd7005ca] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  transition: all 0.2s;
  text-align: left;
}
.language-option[data-v-fd7005ca]:hover {
  background: #f3f4f6;
}
.language-option.active[data-v-fd7005ca] {
  background: #eff6ff;
  color: #3b82f6;
  font-weight: 600;
}
.language-option .flag[data-v-fd7005ca] {
  font-size: 20px;
  line-height: 1;
}
.language-option .name[data-v-fd7005ca] {
  flex: 1;
}
.language-option .check[data-v-fd7005ca] {
  color: #3b82f6;
  font-weight: bold;
}
.overlay[data-v-fd7005ca] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

/* Dark mode support */
.dark,.dark {
  background: #1f2937;
  border-color: #374151;
  color: #f3f4f6;
}
.dark {
  background: #374151;
  border-color: #3b82f6;
}
.dark {
  background: #1f2937;
  color: #f3f4f6;
}
.dark {
  background: #374151;
}
.dark {
  background: #1e3a8a;
  color: #60a5fa;
}

/* Expanded mode (horizontal layout) */
.language-switcher[data-layout="horizontal"] .language-list[data-v-fd7005ca] {
  flex-direction: row;
  width: fit-content;
}
.language-switcher[data-layout="horizontal"] .language-option[data-v-fd7005ca] {
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  min-width: 60px;
  text-align: center;
}
.language-switcher[data-layout="horizontal"] .language-option .flag[data-v-fd7005ca] {
  font-size: 24px;
}
.language-switcher[data-layout="horizontal"] .language-option .name[data-v-fd7005ca] {
  font-size: 11px;
}

.app-switcher[data-v-394e7789] {
  position: relative;
  display: inline-block;
}
.switcher-btn[data-v-394e7789] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 217, 61, 0.08));
  border: 1.5px solid rgba(255, 107, 107, 0.25);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.15);
  height: 36px;
}
.switcher-btn[data-v-394e7789]:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 217, 61, 0.12));
  border-color: rgba(255, 107, 107, 0.35);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
  transform: translateY(-1px);
}
.switcher-btn.active[data-v-394e7789] {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.18), rgba(255, 217, 61, 0.15));
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.25);
}
.btn-icon[data-v-394e7789] {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}
.btn-content[data-v-394e7789] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.logo[data-v-394e7789] {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e63946;
  text-shadow: 0 1px 2px rgba(230, 57, 70, 0.2);
}
.subtitle[data-v-394e7789] {
  font-size: 0.625rem;
  font-weight: 600;
  color: #e63946;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.arrow[data-v-394e7789] {
  font-size: 0.75rem;
  color: #ff6b6b;
  transition: transform 0.2s ease;
  margin-left: 0.125rem;
}
.switcher-btn.active .arrow[data-v-394e7789] {
  transform: rotate(180deg);
}
.dropdown[data-v-394e7789] {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1000;
}
.dropdown-enter-active[data-v-394e7789],
.dropdown-leave-active[data-v-394e7789] {
  transition: all 0.2s ease;
}
.dropdown-enter-from[data-v-394e7789],
.dropdown-leave-to[data-v-394e7789] {
  opacity: 0;
  transform: translateY(-10px);
}
.dropdown-header[data-v-394e7789] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-icon[data-v-394e7789] {
  font-size: 1.25rem;
}
.header-text[data-v-394e7789] {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(11, 18, 33, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.apps-list[data-v-394e7789] {
  padding: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
}
.app-item[data-v-394e7789] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.app-item[data-v-394e7789]:hover {
  background: rgba(74, 61, 241, 0.06);
}
.app-item.active[data-v-394e7789] {
  background: linear-gradient(135deg, rgba(112, 81, 255, 0.1), rgba(255, 122, 193, 0.1));
}
.app-icon[data-v-394e7789] {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.app-info[data-v-394e7789] {
  flex: 1;
  min-width: 0;
}
.app-name[data-v-394e7789] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1221;
  margin-bottom: 0.125rem;
}
.app-desc[data-v-394e7789] {
  font-size: 0.8rem;
  color: rgba(11, 18, 33, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status-badge[data-v-394e7789] {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.status-badge.live[data-v-394e7789] {
  background: rgba(63, 196, 128, 0.15);
  color: #168048;
}
.status-badge.soon[data-v-394e7789] {
  background: rgba(147, 112, 255, 0.15);
  color: #5a32d1;
}
.current-indicator[data-v-394e7789] {
  font-size: 1rem;
  color: #4a3df1;
  font-weight: 700;
}
.dropdown-footer[data-v-394e7789] {
  padding: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(248, 249, 255, 0.5);
}
.home-link[data-v-394e7789] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a3df1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.home-link[data-v-394e7789]:hover {
  background: rgba(74, 61, 241, 0.08);
}
.home-icon[data-v-394e7789] {
  font-size: 1.1rem;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
.switcher-btn[data-v-394e7789] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 217, 61, 0.15));
    border-color: rgba(255, 107, 107, 0.35);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.25);
}
.switcher-btn[data-v-394e7789]:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(255, 217, 61, 0.2));
    border-color: rgba(255, 107, 107, 0.45);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.switcher-btn.active[data-v-394e7789] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 217, 61, 0.25));
    border-color: rgba(255, 107, 107, 0.55);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.35);
}
.logo[data-v-394e7789] {
    color: #ff8a8a;
    text-shadow: 0 1px 2px rgba(255, 138, 138, 0.3);
}
.subtitle[data-v-394e7789] {
    color: #ff8a8a;
    opacity: 0.85;
}
.arrow[data-v-394e7789] {
    color: #ffb3b3;
}
.dropdown[data-v-394e7789] {
    background: #1a1d2e;
    border-color: rgba(255, 255, 255, 0.1);
}
.dropdown-header[data-v-394e7789] {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header-text[data-v-394e7789] {
    color: rgba(255, 255, 255, 0.6);
}
.app-item[data-v-394e7789]:hover {
    background: rgba(112, 81, 255, 0.15);
}
.app-name[data-v-394e7789] {
    color: #ffffff;
}
.app-desc[data-v-394e7789] {
    color: rgba(255, 255, 255, 0.6);
}
.dropdown-footer[data-v-394e7789] {
    border-top-color: rgba(255, 255, 255, 0.1);
    background: rgba(30, 34, 50, 0.5);
}
}

/* Mobile responsive */
@media (max-width: 640px) {
.dropdown[data-v-394e7789] {
    min-width: 280px;
    left: 50%;
    transform: translateX(-50%);
}
}

.app-container[data-v-ee8b2340] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #0f0c29;
  color: #1f1553;
}
.app-background[data-v-ee8b2340] {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #6b5bff 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #ff99e6 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, #5de0e6 0%, transparent 40%),
    linear-gradient(135deg, #1a1441 0%, #23195a 60%, #2e1d6f 100%);
  opacity: 0.95;
  z-index: 0;
}
.app-header[data-v-ee8b2340] {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 1rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 0.875rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(10, 8, 40, 0.12),
    0 0 0 1px rgba(107, 91, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(107, 91, 255, 0.2);
}
.brand[data-v-ee8b2340] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.brand[data-v-ee8b2340]:hover {
  transform: scale(1.02);
}
.brand-icon[data-v-ee8b2340] {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffdea6, #ff9ec7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(255, 158, 199, 0.3);
}
.brand-title[data-v-ee8b2340] {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b5bff 0%, #ff9ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand span[data-v-ee8b2340] {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
}
.dark-mode {
  color: #94a3b8;
}
.nav-menu[data-v-ee8b2340] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-links[data-v-ee8b2340] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link[data-v-ee8b2340] {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-link[data-v-ee8b2340]:hover {
  background: rgba(107, 91, 255, 0.1);
  color: #6b5bff;
}
.dark-mode {
  color: #cbd5e1;
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
  color: #c4b5fd;
}
.nav-actions[data-v-ee8b2340] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.primary-chip[data-v-ee8b2340] {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #6b5bff, #a055ff);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(107, 91, 255, 0.3);
  white-space: nowrap;
}
.primary-chip[data-v-ee8b2340]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 91, 255, 0.4);
}

/* 3-Column Layout */
.app-main[data-v-ee8b2340] {
  flex: 1;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 1.5rem;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Sidebars */
.sidebar[data-v-ee8b2340] {
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(107, 91, 255, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
}
.sidebar-header[data-v-ee8b2340] {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(107, 91, 255, 0.2);
}
.sidebar-header h3[data-v-ee8b2340] {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}
.dark-mode {
  color: white;
}

/* Games Navigation */
.games-nav[data-v-ee8b2340] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.game-nav-item[data-v-ee8b2340] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.game-nav-item[data-v-ee8b2340]:hover {
  background: rgba(107, 91, 255, 0.1);
  color: #6b5bff;
}
.game-nav-item.active[data-v-ee8b2340] {
  background: linear-gradient(135deg, #6b5bff 0%, #ff9ec7 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 91, 255, 0.3);
}
.dark-mode {
  color: #cbd5e1;
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
  color: #c4b5fd;
}
.dark-mode {
  color: white;
}
.game-icon[data-v-ee8b2340] {
  font-size: 1.25rem;
  width: 28px;
  text-align: center;
}
.game-name[data-v-ee8b2340] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main Content */
.main-content[data-v-ee8b2340] {
  min-height: 500px;
}

/* Right Sidebar Sections */
.sidebar-section[data-v-ee8b2340] {
  margin-bottom: 1.5rem;
}
.sidebar-section[data-v-ee8b2340]:last-child {
  margin-bottom: 0;
}
.sidebar-section h4[data-v-ee8b2340] {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.news-card[data-v-ee8b2340] {
  background: rgba(107, 91, 255, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}
.news-card p[data-v-ee8b2340] {
  margin: 0;
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
  color: #cbd5e1;
}
.featured-card[data-v-ee8b2340] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(107, 91, 255, 0.05);
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.featured-card[data-v-ee8b2340]:hover {
  background: rgba(107, 91, 255, 0.15);
  transform: translateX(4px);
}
.dark-mode {
  background: rgba(107, 91, 255, 0.1);
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
}
.featured-icon[data-v-ee8b2340] {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6b5bff 0%, #ff9ec7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-title[data-v-ee8b2340] {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.featured-desc[data-v-ee8b2340] {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.stats-mini[data-v-ee8b2340] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.stat-item[data-v-ee8b2340] {
  background: rgba(107, 91, 255, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
}
.stat-value[data-v-ee8b2340] {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6b5bff 0%, #ff9ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label[data-v-ee8b2340] {
  display: block;
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.dark-mode {
  color: #94a3b8;
}

/* Footer */
.app-footer[data-v-ee8b2340] {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-credit[data-v-ee8b2340] {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1400px) {
.app-main[data-v-ee8b2340] {
    grid-template-columns: 240px 1fr 260px;
}
}
@media (max-width: 1200px) {
.app-main[data-v-ee8b2340] {
    grid-template-columns: 220px 1fr 240px;
    padding: 1rem;
}
.app-header[data-v-ee8b2340] {
    margin: 1rem;
}
}
@media (max-width: 1024px) {
.app-main[data-v-ee8b2340] {
    grid-template-columns: 200px 1fr;
}
.sidebar-right[data-v-ee8b2340] {
    display: none;
}
}
@media (max-width: 768px) {
.app-header[data-v-ee8b2340] {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem;
}
.nav-menu[data-v-ee8b2340] {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
}
.nav-links[data-v-ee8b2340],
  .nav-actions[data-v-ee8b2340] {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.app-main[data-v-ee8b2340] {
    grid-template-columns: 1fr;
    padding: 0.5rem;
}
.sidebar-left[data-v-ee8b2340] {
    display: none;
}
}

/* Global dark mode styles to override scoped styles */
.dark-mode .app-container {
  background: #0f0c1f !important;
}
.dark-mode .app-background {
  background: radial-gradient(circle at top left, rgba(107, 91, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 153, 230, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(93, 224, 230, 0.18) 0%, transparent 40%),
    linear-gradient(135deg, #0d0a1f 0%, #1a1441 50%, #23195a 100%) !important;
  opacity: 1 !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  min-height: 100vh;
}

button {
  cursor: pointer;
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
/* Dark Mode CSS Variables and Styles */

:root {
  /* Light mode colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #e0e0e0;
  
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  
  --border-color: #dddddd;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --button-bg: #f5f5f5;
  
  --accent-primary: #667eea;
  --accent-secondary: #764ba2;
  --success: #4CAF50;
  --error: #ff6b6b;
  --warning: #FFA500;
  --info: #2196F3;
  
  --canvas-bg: #ffffff;
  --toolbar-bg: #ffffff;
  --modal-overlay: rgba(0, 0, 0, 0.5);
}

/* Dark mode colors */
.dark-mode,
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #3d3d3d;
  
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-tertiary: #808080;
  
  --border-color: #404040;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.5);
  
  --card-bg: #2d2d2d;
  --input-bg: #3d3d3d;
  --button-bg: #3d3d3d;
  
  --accent-primary: #7c8ef5;
  --accent-secondary: #8f6ab8;
  --success: #66BB6A;
  --error: #ff8787;
  --warning: #FFB74D;
  --info: #42A5F5;
  
  --canvas-bg: #2d2d2d;
  --toolbar-bg: #2d2d2d;
  --modal-overlay: rgba(0, 0, 0, 0.7);
}

/* Apply variables to common elements */
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

.card,
.panel,
.modal {
  background: var(--card-bg);
  border-color: var(--border-color);
  box-shadow: 0 4px 20px var(--shadow);
}

.button,
button {
  background: var(--button-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

input,
textarea,
select {
  background: var(--input-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

/* Dark mode specific adjustments */
.dark-mode .drawing-canvas,
[data-theme="dark"] .drawing-canvas {
  background: var(--canvas-bg);
  border-color: var(--border-color);
}

.dark-mode .toolbar,
[data-theme="dark"] .toolbar {
  background: var(--toolbar-bg);
}

/* Smooth transitions */
* {
  transition-property: background-color, border-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Prevent transitions on page load */
.no-transition * {
  transition: none !important;
}

/* Dark mode toggle button styles */
.dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow);
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--shadow-hover);
}

/* Icon rotation animation */
.dark-mode-toggle.rotating {
  animation: rotate360 0.5s ease;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Specific component dark mode adjustments */
.dark-mode .template-card,
[data-theme="dark"] .template-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

.dark-mode .template-card:hover,
[data-theme="dark"] .template-card:hover {
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.dark-mode .sticker-picker,
[data-theme="dark"] .sticker-picker {
  background: var(--card-bg);
  border-color: var(--border-color);
}

.dark-mode .audio-control,
[data-theme="dark"] .audio-control {
  background: var(--card-bg);
}

/* Modal overlay */
.dark-mode .modal-overlay,
[data-theme="dark"] .modal-overlay {
  background: var(--modal-overlay);
}

/* Scrollbar dark mode */
.dark-mode ::-webkit-scrollbar-track,
[data-theme="dark"] ::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

.dark-mode ::-webkit-scrollbar-thumb,
[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: var(--border-color);
}

.dark-mode ::-webkit-scrollbar-thumb:hover,
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}


.remote-loader[data-v-be6c6535] {
  width: 100%;
  min-height: 400px;
}
.loading-container[data-v-be6c6535] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 3rem;
}
.loading-card[data-v-be6c6535] {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.5rem 4rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 420px;
  width: 100%;
  animation: fadeInScale-be6c6535 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.loading-card[data-v-be6c6535]::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 158, 230, 0.05),
    transparent
  );
  animation: shimmer-be6c6535 3s infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes fadeInScale-be6c6535 {
from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}
to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}
@keyframes shimmer-be6c6535 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.app-icon[data-v-be6c6535] {
  font-size: 3.5rem;
  animation: float-be6c6535 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(255, 158, 230, 0.4));
  position: relative;
  z-index: 1;
}
@keyframes float-be6c6535 {
0%, 100% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-10px);
}
}
@keyframes fadeIn-be6c6535 {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.loading-spinner-wrapper[data-v-be6c6535] {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.loading-spinner[data-v-be6c6535] {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 158, 230, 0.15);
  border-top-color: #ff9ee6;
  border-right-color: #ff9ee6;
  border-radius: 50%;
  animation: spin-be6c6535 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  position: relative;
}
.spinner-inner[data-v-be6c6535] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(93, 224, 230, 0.15);
  border-top-color: #5de0e6;
  border-radius: 50%;
  animation: spin-be6c6535 0.7s linear infinite reverse;
}
.spinner-glow[data-v-be6c6535] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 158, 230, 0.3), transparent 70%);
  animation: pulse-be6c6535 2s ease-in-out infinite;
}
@keyframes spin-be6c6535 {
to {
    transform: rotate(360deg);
}
}
@keyframes pulse-be6c6535 {
0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
}
50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}
}
.loading-content[data-v-be6c6535] {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.loading-title[data-v-be6c6535] {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  display: block;
  /* Use solid color to ensure text is always visible */
  color: #6b5bff;
  /* Optional: Add subtle gradient effect without making text transparent */
  background: linear-gradient(135deg, #ff9ee6, #5de0e6);
  -webkit-background-clip: text;
  background-clip: text;
  /* Keep text visible - don't use transparent */
  -webkit-text-fill-color: #6b5bff;
}
.loading-subtitle[data-v-be6c6535] {
  color: #6b5bff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  display: block;
}
.progress-bar-wrapper[data-v-be6c6535] {
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.progress-bar[data-v-be6c6535] {
  width: 100%;
  height: 6px;
  background: rgba(255, 158, 230, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.progress-fill[data-v-be6c6535] {
  height: 100%;
  background: linear-gradient(90deg, #ff9ee6, #5de0e6, #ff9ee6);
  background-size: 200% 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
  animation: progressShine-be6c6535 2s linear infinite;
}
@keyframes progressShine-be6c6535 {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}
.loading-hint[data-v-be6c6535] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b7fd8;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.hint-icon[data-v-be6c6535] {
  font-size: 1rem;
  animation: wiggle-be6c6535 2s ease-in-out infinite;
}
@keyframes wiggle-be6c6535 {
0%, 100% {
    transform: rotate(0deg);
}
25% {
    transform: rotate(-10deg);
}
75% {
    transform: rotate(10deg);
}
}
.error-container[data-v-be6c6535] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 3rem;
}
.error-card[data-v-be6c6535] {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.5rem 4rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 420px;
  width: 100%;
  animation: fadeInScale-be6c6535 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.error-icon-wrapper[data-v-be6c6535] {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-icon[data-v-be6c6535] {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  animation: shake-be6c6535 0.5s ease-in-out;
}
.error-pulse[data-v-be6c6535] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.2);
  animation: errorPulse-be6c6535 2s ease-in-out infinite;
}
@keyframes shake-be6c6535 {
0%, 100% {
    transform: translateX(0);
}
25% {
    transform: translateX(-5px);
}
75% {
    transform: translateX(5px);
}
}
@keyframes errorPulse-be6c6535 {
0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
}
50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
}
}
.error-title[data-v-be6c6535] {
  color: #ff6b6b;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.error-description[data-v-be6c6535] {
  color: #8b7fd8;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  opacity: 0.8;
}
.retry-btn[data-v-be6c6535] {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9ee6, #5de0e6);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 158, 230, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.retry-btn[data-v-be6c6535]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.retry-btn[data-v-be6c6535]:hover::before {
  width: 300px;
  height: 300px;
}
.retry-btn[data-v-be6c6535]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 158, 230, 0.5);
}
.retry-btn[data-v-be6c6535]:active {
  transform: translateY(0);
}
.retry-icon[data-v-be6c6535] {
  font-size: 1.1rem;
  animation: rotate-be6c6535 2s linear infinite;
}
@keyframes rotate-be6c6535 {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
.dark-mode,.dark-mode {
  background: rgba(13, 10, 30, 0.95);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.dark-mode {
  color: #c9c1ff;
  background: linear-gradient(135deg, #ff9ee6, #5de0e6);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: #c9c1ff; */
  background-clip: text;
}
.dark-mode {
  color: #c9c1ff;
}
.dark-mode {
  color: #a99fff;
}
.dark-mode {
  color: #ff8a8a;
}
.dark-mode {
  color: #b8b0ff;
}
@media (max-width: 768px) {
.loading-card[data-v-be6c6535],
  .error-card[data-v-be6c6535] {
    padding: 2rem 2.5rem;
    max-width: 90%;
}
.loading-text[data-v-be6c6535],
  .error-text[data-v-be6c6535] {
    font-size: 1rem;
}
}

.home-page[data-v-f503d835] {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0 4rem;
}
.hero[data-v-f503d835] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-content h1[data-v-f503d835] {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: white;
  margin: 0.5rem 0 1rem;
}
.hero-content h1 span[data-v-f503d835] {
  display: block;
  color: #ffecc9;
}
.hero-text[data-v-f503d835] {
  color: #f7f4ff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 550px;
}
.hero-pill[data-v-f503d835] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 0.95rem;
}
.hero-actions[data-v-f503d835] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.primary-btn[data-v-f503d835],
.ghost-btn[data-v-f503d835] {
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary-btn[data-v-f503d835] {
  background: white;
  color: #6b5bff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.ghost-btn[data-v-f503d835] {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}
.primary-btn[data-v-f503d835]:hover,
.ghost-btn[data-v-f503d835]:hover {
  transform: translateY(-3px);
}
.hero-badges[data-v-f503d835] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  color: white;
}
.hero-badges li[data-v-f503d835] {
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}
.hero-visual[data-v-f503d835] {
  position: relative;
  min-height: 320px;
}
.hero-orbit[data-v-f503d835] {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 3rem;
  animation: float-f503d835 6s ease-in-out infinite;
}
.hero-cta-card[data-v-f503d835] {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  color: #2f1e68;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  width: min(260px, 85%);
  box-shadow: 0 20px 40px rgba(19, 8, 52, 0.25);
}
.hero-cta-card h3[data-v-f503d835] {
  margin: 0.2rem 0;
}
.hero-cta-card a[data-v-f503d835] {
  display: inline-block;
  margin-top: 0.5rem;
  color: #6b5bff;
  font-weight: 600;
}
.stats[data-v-f503d835] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card[data-v-f503d835] {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-value[data-v-f503d835] {
  font-size: 2rem;
  font-weight: 700;
}
.section-header[data-v-f503d835] {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  color: white;
}
.eyebrow[data-v-f503d835] {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #ffe0f0;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.cta-card .eyebrow[data-v-f503d835] {
  color: #ff9ee6;
  font-weight: 700;
  opacity: 1;
}
.hint[data-v-f503d835] {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.game-modes[data-v-f503d835] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.game-card[data-v-f503d835] {
  background: #fff;
  border-radius: 24px;
  padding: 1.8rem;
  text-decoration: none;
  color: #1f1553;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 15px 35px rgba(20, 10, 50, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card[data-v-f503d835]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 10, 50, 0.18);
}
.card-header[data-v-f503d835] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mode-badge[data-v-f503d835] {
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(111, 94, 255, 0.15);
  color: #6b5bff;
  font-size: 0.85rem;
  font-weight: 600;
}
.card-icon[data-v-f503d835] {
  font-size: 2.4rem;
}
.skill-tags[data-v-f503d835] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-tags span[data-v-f503d835] {
  background: #f4f0ff;
  color: #6a4bff;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  font-size: 0.85rem;
}
.card-progress[data-v-f503d835] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.progress-bar[data-v-f503d835] {
  flex: 1;
  height: 6px;
  background: #ece8ff;
  border-radius: 999px;
  overflow: hidden;
}
.progress-value[data-v-f503d835] {
  height: 100%;
  background: linear-gradient(90deg, #6b5bff, #a055ff);
}
.feature-grid[data-v-f503d835] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card[data-v-f503d835] {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.8rem;
  color: white;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-card h3[data-v-f503d835] {
  margin: 0.5rem 0;
}
.feature-card ul[data-v-f503d835] {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.feature-card li[data-v-f503d835] {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.feature-card li[data-v-f503d835]::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd8fd;
}
.feature-icon[data-v-f503d835] {
  font-size: 2.2rem;
}
.parents-card[data-v-f503d835] {
  background: white;
  border-radius: 32px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}
.parents-card ul[data-v-f503d835] {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.parents-card li[data-v-f503d835] {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: #4b3f7c;
}
.parents-card li[data-v-f503d835]::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6b5bff;
  font-weight: 700;
}
.parents-checklist[data-v-f503d835] {
  background: #f7f4ff;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.parents-checklist label[data-v-f503d835] {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: #4b3f7c;
}
.parents-checklist input[data-v-f503d835] {
  accent-color: #6b5bff;
}
.parents-checklist .ghost[data-v-f503d835] {
  text-align: center;
  margin-top: 1rem;
}
.testimonials[data-v-f503d835] {
  color: white;
}
.testimonial-grid[data-v-f503d835] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.testimonial-card[data-v-f503d835] {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.quote[data-v-f503d835] {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quote-footer[data-v-f503d835] {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.9;
}
.cta-card[data-v-f503d835] {
  background: white;
  border-radius: 32px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.cta-actions[data-v-f503d835] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@keyframes float-f503d835 {
0%,
  100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-12px);
}
}
@media (max-width: 768px) {
.hero-actions[data-v-f503d835],
  .cta-actions[data-v-f503d835] {
    flex-direction: column;
    width: 100%;
}
.parents-card[data-v-f503d835] {
    padding: 1.5rem;
}
}

/* Dark Mode Styles */
.dark-mode {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode {
  background: #2d2d2d;
  color: #e0e0e0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.dark-mode {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.dark-mode {
  background: rgba(124, 142, 245, 0.2);
  color: #9bb0ff;
}
.dark-mode {
  background: rgba(124, 142, 245, 0.15);
  color: #9bb0ff;
}
.dark-mode {
  background: rgba(255, 255, 255, 0.1);
}
.dark-mode {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode {
  color: #ff9ee6;
}
.dark-mode {
  background: #2d2d2d;
}
.dark-mode {
  color: #c9c1ff;
}
.dark-mode {
  color: #9bb0ff;
}
.dark-mode {
  background: rgba(255, 255, 255, 0.05);
}
.dark-mode {
  color: #c9c1ff;
}
.dark-mode {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark-mode {
  background: #2d2d2d;
  color: #e0e0e0;
}
.dark-mode {
  color: #f4f2ff;
}
.dark-mode {
  color: #c9c1ff;
}
.dark-mode {
  background: #6b5bff;
  color: white;
}
.dark-mode {
  border-color: rgba(255, 255, 255, 0.3);
  color: #e0e0e0;
}
.dark-mode {
  background: #2d2d2d;
  color: #e0e0e0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.dark-mode {
  color: #f4f2ff;
}
.dark-mode {
  color: #9bb0ff;
}

.guide-page[data-v-06cfa9a2] {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.page-header[data-v-06cfa9a2] {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}
.page-header h1[data-v-06cfa9a2] {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.subtitle[data-v-06cfa9a2] {
  font-size: 1.3rem;
  opacity: 0.95;
}
.guide-content[data-v-06cfa9a2] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.guide-section[data-v-06cfa9a2] {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.guide-section h2[data-v-06cfa9a2] {
  color: #6b5bff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #ff99e6;
  padding-bottom: 0.5rem;
}
.guide-list[data-v-06cfa9a2] {
  padding-left: 1.5rem;
  line-height: 1.8;
  color: #555;
  font-size: 1.1rem;
}
.guide-list li[data-v-06cfa9a2] {
  margin-bottom: 0.8rem;
}
.modes-grid[data-v-06cfa9a2] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.mode-card[data-v-06cfa9a2] {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.mode-card[data-v-06cfa9a2]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 91, 255, 0.2);
  border-color: #6b5bff;
}
.mode-icon[data-v-06cfa9a2] {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.mode-card h3[data-v-06cfa9a2] {
  color: #6b5bff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.mode-card p[data-v-06cfa9a2] {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.features-list[data-v-06cfa9a2] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-item[data-v-06cfa9a2] {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background: #f8f9ff;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.feature-item[data-v-06cfa9a2]:hover {
  background: #f0f4ff;
}
.feature-icon[data-v-06cfa9a2] {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.feature-item h4[data-v-06cfa9a2] {
  color: #6b5bff;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}
.feature-item p[data-v-06cfa9a2] {
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.tips-section[data-v-06cfa9a2] {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4d9 100%);
  border-left: 5px solid #ffa500;
}
.tips-list[data-v-06cfa9a2] {
  list-style: none;
  padding: 0;
}
.tips-list li[data-v-06cfa9a2] {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}
.tips-list li[data-v-06cfa9a2]:before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}
.support-section[data-v-06cfa9a2] {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
  text-align: center;
}
.support-section p[data-v-06cfa9a2] {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.support-links[data-v-06cfa9a2] {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.support-link[data-v-06cfa9a2] {
  padding: 1rem 2rem;
  background: white;
  color: #6b5bff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 91, 255, 0.2);
}
.support-link[data-v-06cfa9a2]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 91, 255, 0.3);
  background: #6b5bff;
  color: white;
}
@media (max-width: 768px) {
.page-header h1[data-v-06cfa9a2] {
    font-size: 2rem;
}
.modes-grid[data-v-06cfa9a2] {
    grid-template-columns: 1fr;
}
.support-links[data-v-06cfa9a2] {
    flex-direction: column;
}
.guide-section[data-v-06cfa9a2] {
    padding: 1.5rem;
}
}
.dark-mode {
  background: rgba(20, 15, 40, 0.9);
  color: #e8e6f0;
}
.dark-mode {
  background: rgba(30, 25, 60, 0.8);
}
.dark-mode,.dark-mode,.dark-mode,.dark-mode {
  color: #c8c6d8;
}
.dark-mode {
  background: rgba(30, 25, 60, 0.6);
}
.dark-mode {
  background: rgba(40, 30, 20, 0.8);
}
.dark-mode {
  background: rgba(20, 30, 50, 0.8);
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
  color: #c9c1ff;
}
.dark-mode {
  background: #6b5bff;
  color: white;
}

.status-page[data-v-81f68d76] {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.page-header[data-v-81f68d76] {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}
.page-header h1[data-v-81f68d76] {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.subtitle[data-v-81f68d76] {
  font-size: 1.3rem;
  opacity: 0.95;
}
.status-content[data-v-81f68d76] {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.status-section[data-v-81f68d76] {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.status-section h2[data-v-81f68d76] {
  color: #6b5bff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #5de0e6;
  padding-bottom: 0.5rem;
}
.stats-grid[data-v-81f68d76] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card[data-v-81f68d76] {
  background: linear-gradient(135deg, #6b5bff 0%, #a055ff 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(107, 91, 255, 0.3);
}
.stat-value[data-v-81f68d76] {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-label[data-v-81f68d76] {
  font-size: 1rem;
  opacity: 0.95;
}
.modules-list[data-v-81f68d76] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.module-item[data-v-81f68d76] {
  padding: 1.5rem;
  border-radius: 12px;
  background: #f8f9ff;
  border-left: 5px solid #ddd;
  transition: all 0.3s ease;
}
.module-item[data-v-81f68d76]:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.module-item.completed[data-v-81f68d76] {
  border-left-color: #4caf50;
}
.module-header[data-v-81f68d76] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.module-header h3[data-v-81f68d76] {
  color: #6b5bff;
  margin: 0;
  font-size: 1.3rem;
}
.status-badge[data-v-81f68d76] {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
.status-badge.success[data-v-81f68d76] {
  background: #e8f5e9;
  color: #4caf50;
}
.module-item p[data-v-81f68d76] {
  color: #666;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.progress-bar[data-v-81f68d76] {
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill[data-v-81f68d76] {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}
.tech-grid[data-v-81f68d76] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.tech-item[data-v-81f68d76] {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
  border-radius: 12px;
  text-align: center;
}
.tech-item h4[data-v-81f68d76] {
  color: #6b5bff;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}
.tech-item p[data-v-81f68d76] {
  color: #666;
  margin: 0;
  font-weight: 600;
}
.roadmap-list[data-v-81f68d76] {
  position: relative;
  padding-left: 2rem;
}
.roadmap-item[data-v-81f68d76] {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid #e0e0e0;
}
.roadmap-item[data-v-81f68d76]:last-child {
  border-left-color: transparent;
}
.roadmap-dot[data-v-81f68d76] {
  position: absolute;
  left: -9px;
  top: 2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #e0e0e0;
}
.roadmap-item.done .roadmap-dot[data-v-81f68d76] {
  background: #4caf50;
  box-shadow: 0 0 0 3px #4caf50;
}
.roadmap-item.current .roadmap-dot[data-v-81f68d76] {
  background: #2196f3;
  box-shadow: 0 0 0 3px #2196f3;
  animation: pulse-81f68d76 2s infinite;
}
@keyframes pulse-81f68d76 {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}
.roadmap-item.future .roadmap-dot[data-v-81f68d76] {
  background: #ff9800;
  box-shadow: 0 0 0 3px #ff9800;
}
.roadmap-content h4[data-v-81f68d76] {
  color: #6b5bff;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}
.roadmap-content p[data-v-81f68d76] {
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.contribute-section[data-v-81f68d76] {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4d9 100%);
  text-align: center;
}
.contribute-section p[data-v-81f68d76] {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.contribute-actions[data-v-81f68d76] {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contribute-btn[data-v-81f68d76] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #6b5bff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 91, 255, 0.2);
}
.contribute-btn span[data-v-81f68d76] {
  font-size: 1.5rem;
}
.contribute-btn[data-v-81f68d76]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 91, 255, 0.3);
  background: #6b5bff;
  color: white;
}
@media (max-width: 768px) {
.page-header h1[data-v-81f68d76] {
    font-size: 2rem;
}
.stats-grid[data-v-81f68d76],
  .tech-grid[data-v-81f68d76] {
    grid-template-columns: 1fr;
}
.contribute-actions[data-v-81f68d76] {
    flex-direction: column;
}
.status-section[data-v-81f68d76] {
    padding: 1.5rem;
}
}
.dark-mode {
  background: rgba(20, 15, 40, 0.9);
  color: #e8e6f0;
}
.dark-mode {
  background: rgba(30, 25, 60, 0.6);
}
.dark-mode,.dark-mode,.dark-mode {
  color: #c8c6d8;
}
.dark-mode {
  background: rgba(30, 25, 60, 0.6);
}
.dark-mode {
  background: rgba(40, 30, 20, 0.8);
}
.dark-mode {
  background: rgba(107, 91, 255, 0.2);
  color: #c9c1ff;
}
.dark-mode {
  background: #6b5bff;
  color: white;
}
