
.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%);
}
}

.google-ads-container[data-v-90f214fa] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ads-bg, #f5f5f5);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.ads-dark[data-v-90f214fa] {
  background: var(--ads-bg-dark, #2d2d2d);
}

/* Format-specific styles */
.ads-banner[data-v-90f214fa] {
  max-width: 468px;
  height: 60px;
}
.ads-rectangle[data-v-90f214fa] {
  max-width: 300px;
  height: 250px;
}
.ads-leaderboard[data-v-90f214fa] {
  max-width: 728px;
  height: 90px;
}
.ads-skyscraper[data-v-90f214fa] {
  max-width: 160px;
  height: 600px;
}
.ads-auto[data-v-90f214fa] {
  width: 100%;
  min-height: 90px;
}

/* AdSense container */
.adsbygoogle[data-v-90f214fa] {
  display: block;
}

/* Placeholder styles */
.ads-placeholder[data-v-90f214fa] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--ads-text, #999);
  font-size: 0.85rem;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(
    135deg,
    var(--ads-bg, #f5f5f5) 0%,
    var(--ads-bg-secondary, #e8e8e8) 100%
  );
}
.ads-dark .ads-placeholder[data-v-90f214fa] {
  background: linear-gradient(
    135deg,
    var(--ads-bg-dark, #2d2d2d) 0%,
    var(--ads-bg-dark-secondary, #3d3d3d) 100%
  );
  color: var(--ads-text-dark, #888);
}
.ads-placeholder-icon[data-v-90f214fa] {
  font-size: 1.5rem;
  opacity: 0.7;
}
.ads-placeholder-text[data-v-90f214fa] {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.ads-leaderboard[data-v-90f214fa] {
    max-width: 100%;
    height: auto;
    min-height: 50px;
}
.ads-banner[data-v-90f214fa] {
    max-width: 100%;
    height: auto;
    min-height: 50px;
}
}
@media (max-width: 480px) {
.ads-rectangle[data-v-90f214fa] {
    max-width: 100%;
    height: auto;
    min-height: 200px;
}
}

.app-container[data-v-d87d0e39] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #0f0c29;
  color: #1f1553;
}
.app-background[data-v-d87d0e39] {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #8b5cf6 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #ec4899 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, #06b6d4 0%, transparent 40%),
    linear-gradient(135deg, #1a1441 0%, #2d1b69 60%, #3e2370 100%);
  opacity: 0.95;
  z-index: 0;
}
.app-header[data-v-d87d0e39] {
  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(99, 102, 241, 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(139, 92, 246, 0.2);
}
.brand[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.brand[data-v-d87d0e39]:hover {
  transform: scale(1.02);
}
.brand-icon[data-v-d87d0e39] {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.brand-title[data-v-d87d0e39] {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand span[data-v-d87d0e39] {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
}
.dark-mode {
  color: #94a3b8;
}
.nav-menu[data-v-d87d0e39] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-links[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link[data-v-d87d0e39] {
  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-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.dark-mode {
  color: #cbd5e1;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.nav-actions[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.primary-chip[data-v-d87d0e39] {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  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(139, 92, 246, 0.3);
  white-space: nowrap;
}
.primary-chip[data-v-d87d0e39]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* 3-Column Layout */
.app-main[data-v-d87d0e39] {
  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-d87d0e39] {
  position: sticky;
  top: 100px;
  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(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
}
.sidebar-header[data-v-d87d0e39] {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
.sidebar-header h3[data-v-d87d0e39] {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}
.dark-mode {
  color: white;
}

/* Games Navigation */
.games-nav[data-v-d87d0e39] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.game-nav-item[data-v-d87d0e39] {
  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-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.game-nav-item.active[data-v-d87d0e39] {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}
.dark-mode {
  color: #cbd5e1;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.dark-mode {
  color: white;
}
.game-icon[data-v-d87d0e39] {
  font-size: 1.25rem;
  width: 28px;
  text-align: center;
}
.game-name[data-v-d87d0e39] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main Content */
.main-content[data-v-d87d0e39] {
  min-height: 500px;
}

/* Right Sidebar Sections */
.sidebar-section[data-v-d87d0e39] {
  margin-bottom: 1.5rem;
}
.sidebar-section[data-v-d87d0e39]:last-child {
  margin-bottom: 0;
}
.sidebar-ads[data-v-d87d0e39] {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}
.sidebar-section h4[data-v-d87d0e39] {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.news-card[data-v-d87d0e39] {
  background: rgba(139, 92, 246, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}
.news-card p[data-v-d87d0e39] {
  margin: 0;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #cbd5e1;
}
.featured-card[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(139, 92, 246, 0.05);
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.featured-card[data-v-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.15);
  transform: translateX(4px);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.1);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
}
.featured-icon[data-v-d87d0e39] {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-title[data-v-d87d0e39] {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.featured-desc[data-v-d87d0e39] {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.stats-mini[data-v-d87d0e39] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.stat-item[data-v-d87d0e39] {
  background: rgba(139, 92, 246, 0.1);
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
}
.stat-value[data-v-d87d0e39] {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label[data-v-d87d0e39] {
  display: block;
  font-size: 0.6875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.dark-mode {
  color: #94a3b8;
}

/* Footer */
.app-footer[data-v-d87d0e39] {
  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-d87d0e39] {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1400px) {
.app-main[data-v-d87d0e39] {
    grid-template-columns: 240px 1fr 260px;
}
}
@media (max-width: 1200px) {
.app-main[data-v-d87d0e39] {
    grid-template-columns: 220px 1fr 240px;
    padding: 1rem;
}
.app-header[data-v-d87d0e39] {
    margin: 1rem;
}
}
@media (max-width: 1024px) {
.app-main[data-v-d87d0e39] {
    grid-template-columns: 200px 1fr;
}
.sidebar-right[data-v-d87d0e39] {
    display: none;
}
}
@media (max-width: 768px) {
.app-header[data-v-d87d0e39] {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem;
}
.nav-menu[data-v-d87d0e39] {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
}
.nav-links[data-v-d87d0e39],
  .nav-actions[data-v-d87d0e39] {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.app-main[data-v-d87d0e39] {
    grid-template-columns: 1fr;
    padding: 0.5rem;
}
.sidebar-left[data-v-d87d0e39] {
    display: none;
}
}

/* User Menu Styles */
.user-menu[data-v-d87d0e39] {
  position: relative;
}
.user-trigger[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.user-trigger[data-v-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.3);
}
.user-avatar[data-v-d87d0e39] {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}
.user-name[data-v-d87d0e39] {
  font-weight: 600;
  color: #1e293b;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dark-mode {
  color: #f1f5f9;
}
.dropdown-arrow[data-v-d87d0e39] {
  font-size: 0.6rem;
  color: rgba(30, 41, 59, 0.5);
  transition: transform 0.2s ease;
}
.dark-mode {
  color: rgba(241, 245, 249, 0.5);
}
.user-dropdown[data-v-d87d0e39] {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(10, 5, 54, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.15);
  padding: 0.75rem;
  z-index: 100;
  animation: dropdownIn-d87d0e39 0.2s ease;
}
.dark-mode {
  background: #1e1b4b;
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
@keyframes dropdownIn-d87d0e39 {
from {
    opacity: 0;
    transform: translateY(-8px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.user-info[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}
.user-avatar-large[data-v-d87d0e39] {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.dropdown-name[data-v-d87d0e39] {
  margin: 0;
  font-weight: 600;
  color: #1e293b;
}
.dark-mode {
  color: #f1f5f9;
}
.dropdown-email[data-v-d87d0e39] {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(30, 41, 59, 0.6);
}
.dark-mode {
  color: rgba(241, 245, 249, 0.6);
}
.dropdown-divider[data-v-d87d0e39] {
  height: 1px;
  background: rgba(139, 92, 246, 0.15);
  margin: 0.5rem 0;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.25);
}
.dropdown-item[data-v-d87d0e39] {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: background 0.2s ease;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.dark-mode {
  color: #f1f5f9;
}
.dropdown-item[data-v-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.1);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
}
.dropdown-item span[data-v-d87d0e39] {
  font-size: 1rem;
}
.logout-btn[data-v-d87d0e39] {
  color: #dc2626;
}
.logout-btn[data-v-d87d0e39]:hover {
  background: rgba(220, 38, 38, 0.1);
}
.dark-mode {
  color: #f87171;
}
.dark-mode {
  background: rgba(220, 38, 38, 0.15);
}

/* Auth Links */
.ghost-link[data-v-d87d0e39] {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  transition: all 0.2s ease;
}
.ghost-link[data-v-d87d0e39]:hover {
  background: rgba(139, 92, 246, 0.2);
}
.dark-mode {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.3);
}
.primary-link[data-v-d87d0e39] {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
  transition: all 0.2s ease;
}
.primary-link[data-v-d87d0e39]:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#app {
  min-height: 100vh;
}
/* 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-container[data-v-8fa5c388] {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-state[data-v-8fa5c388],
.error-state[data-v-8fa5c388] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
}
.spinner[data-v-8fa5c388] {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #8b5cf6;
  border-radius: 50%;
  animation: spin-8fa5c388 1s linear infinite;
}
@keyframes spin-8fa5c388 {
to {
    transform: rotate(360deg);
}
}
.retry-btn[data-v-8fa5c388] {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.retry-btn[data-v-8fa5c388]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.home-page[data-v-3a13e863] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.hero[data-v-3a13e863] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}
.hero-content[data-v-3a13e863] {
  color: white;
}
.hero-pill[data-v-3a13e863] {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 1.5rem;
}
.hero h1[data-v-3a13e863] {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 span[data-v-3a13e863] {
  display: block;
  background: linear-gradient(135deg, #f6dc5c 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text[data-v-3a13e863] {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-actions[data-v-3a13e863] {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.primary-btn[data-v-3a13e863],
.ghost-btn[data-v-3a13e863] {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.primary-btn[data-v-3a13e863] {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}
.primary-btn[data-v-3a13e863]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}
.ghost-btn[data-v-3a13e863] {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ghost-btn[data-v-3a13e863]:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-badges[data-v-3a13e863] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-badges li[data-v-3a13e863] {
  font-size: 0.875rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badges li[data-v-3a13e863]::before {
  content: '✓';
  color: #8b5cf6;
  font-weight: bold;
}
.hero-visual[data-v-3a13e863] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orbit[data-v-3a13e863] {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-3a13e863 3s ease-in-out infinite;
}
.hero-orbit span[data-v-3a13e863] {
  position: absolute;
  font-size: 3rem;
  animation: orbit-3a13e863 10s linear infinite;
}
.hero-orbit span[data-v-3a13e863]:nth-child(1) {
  top: 10%;
  left: 50%;
  animation-delay: 0s;
}
.hero-orbit span[data-v-3a13e863]:nth-child(2) {
  bottom: 10%;
  right: 20%;
  animation-delay: -3s;
}
.hero-orbit span[data-v-3a13e863]:nth-child(3) {
  top: 50%;
  left: 10%;
  animation-delay: -6s;
}
@keyframes pulse-3a13e863 {
0%, 100% {
    transform: scale(1);
    opacity: 0.8;
}
50% {
    transform: scale(1.05);
    opacity: 1;
}
}
@keyframes orbit-3a13e863 {
from {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
}
to {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
}
}
.hero-cta-card[data-v-3a13e863] {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  color: white;
}
.hero-cta-card p[data-v-3a13e863] {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: #8b5cf6;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-cta-card h3[data-v-3a13e863] {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.cta-sub[data-v-3a13e863] {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}
.dark-mode {
  color: #94a3b8;
}
.hero-cta-card a[data-v-3a13e863] {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.hero-cta-card a[data-v-3a13e863]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
.stats[data-v-3a13e863] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.stat-card[data-v-3a13e863] {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.stat-value[data-v-3a13e863] {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label[data-v-3a13e863] {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}
.games[data-v-3a13e863] {
  margin-bottom: 4rem;
}
.section-header[data-v-3a13e863] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  color: white;
}
.eyebrow[data-v-3a13e863] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #8b5cf6;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.section-header h2[data-v-3a13e863] {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
}
.section-header p[data-v-3a13e863] {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 600px;
}
.hint[data-v-3a13e863] {
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  color: #c4b5fd;
}
.game-modes[data-v-3a13e863] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.game-card[data-v-3a13e863] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
}
.game-card[data-v-3a13e863]:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.4);
}
.card-header[data-v-3a13e863] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-icon[data-v-3a13e863] {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.mode-badge[data-v-3a13e863] {
  padding: 0.375rem 0.75rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.card-title[data-v-3a13e863] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.card-description[data-v-3a13e863] {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.dark-mode {
  color: #94a3b8;
}
.skill-tags[data-v-3a13e863] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.skill-tags span[data-v-3a13e863] {
  padding: 0.25rem 0.75rem;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
.card-progress[data-v-3a13e863] {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.progress-bar[data-v-3a13e863] {
  flex: 1;
  height: 6px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.progress-value[data-v-3a13e863] {
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  transition: width 0.3s ease;
}
.feature-grid[data-v-3a13e863] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.feature-card[data-v-3a13e863] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  color: white;
}
.feature-icon[data-v-3a13e863] {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.feature-card h3[data-v-3a13e863] {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.feature-card p[data-v-3a13e863] {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.dark-mode {
  color: #94a3b8;
}
.feature-card ul[data-v-3a13e863] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card li[data-v-3a13e863] {
  padding: 0.5rem 0;
  color: #475569;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dark-mode {
  color: #cbd5e1;
}
.feature-card li[data-v-3a13e863]::before {
  content: '✓';
  color: #8b5cf6;
  font-weight: bold;
}
.parents[data-v-3a13e863] {
  margin-bottom: 4rem;
}
.parents-card[data-v-3a13e863] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  color: white;
}
.parents-visual[data-v-3a13e863] {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}
.parents-card h2[data-v-3a13e863] {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.parents-card > div > p[data-v-3a13e863] {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.dark-mode {
  color: #94a3b8;
}
.trust-list[data-v-3a13e863] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trust-list li[data-v-3a13e863] {
  font-size: 1rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dark-mode {
  color: #cbd5e1;
}
.trust-list li[data-v-3a13e863]::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Google Ads Section */
.ads-section[data-v-3a13e863] {
  margin: 2rem auto;
  max-width: 728px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
.hero[data-v-3a13e863] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.hero h1[data-v-3a13e863] {
    font-size: 2.5rem;
}
.hero-visual[data-v-3a13e863] {
    order: -1;
}
.hero-orbit[data-v-3a13e863] {
    width: 200px;
    height: 200px;
}
.hero-cta-card[data-v-3a13e863] {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
}
.stats[data-v-3a13e863] {
    grid-template-columns: 1fr;
}
.game-modes[data-v-3a13e863] {
    grid-template-columns: 1fr;
}
.parents-card[data-v-3a13e863] {
    grid-template-columns: 1fr;
    text-align: center;
}
.parents-visual[data-v-3a13e863] {
    margin: 0 auto;
}
}

.guide-page[data-v-779a35ee] {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
}
.container[data-v-779a35ee] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  color: white;
}
h1[data-v-779a35ee] {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #1e293b;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark-mode {
  color: white;
}
.subtitle[data-v-779a35ee] {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}
.dark-mode {
  color: #94a3b8;
}
.guide-section[data-v-779a35ee] {
  margin-top: 3rem;
}
.guide-section h2[data-v-779a35ee] {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.steps[data-v-779a35ee] {
  display: grid;
  gap: 1.5rem;
}
.step[data-v-779a35ee] {
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.1);
}
.step h3[data-v-779a35ee] {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #8b5cf6;
}
.step p[data-v-779a35ee] {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}
.dark-mode {
  color: #cbd5e1;
}

.status-page[data-v-77d74490] {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
.container[data-v-77d74490] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(30, 27, 75, 0.95);
  color: white;
}
h1[data-v-77d74490] {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #1e293b;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle[data-v-77d74490] {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}
.dark-mode {
  color: #94a3b8;
}
.overview[data-v-77d74490] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stat[data-v-77d74490] {
  text-align: center;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.1);
}
.stat-value[data-v-77d74490] {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-label[data-v-77d74490] {
  font-size: 1rem;
  color: #64748b;
}
.dark-mode {
  color: #94a3b8;
}
.tech-stack[data-v-77d74490] {
  margin-top: 3rem;
}
.tech-stack h2[data-v-77d74490] {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}
.dark-mode {
  color: white;
}
.tech-grid[data-v-77d74490] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.tech-item[data-v-77d74490] {
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.dark-mode {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}
