body {
  overflow: hidden;
}

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar { 
  width: 0;
  height: 0;
  display: none;
}

.lore-interface .guide-text p {
  margin: 0 0 12px 0;
}

.lore-interface .guide-text ul {
  margin: 0 0 12px 0;
  padding-left: 16px;
}

.lore-interface .guide-text li {
  margin-bottom: 4px;
}

.lore-interface .guide-text strong {
  color: #FFD700;
  font-weight: 600;
}

.lore-right-panel {
  flex: 1;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateShadow {
  0% {
    box-shadow: -2px -2px 0px 0px #FFD700, 2px 2px 0px 0px #FFD700;
  }
  25% {
    box-shadow: -2px 2px 0px 0px #FFD700, 2px -2px 0px 0px #FFD700;
  }
  50% {
    box-shadow: 2px 2px 0px 0px #FFD700, -2px -2px 0px 0px #FFD700;
  }
  75% {
    box-shadow: 2px -2px 0px 0px #FFD700, -2px 2px 0px 0px #FFD700;
  }
  100% {
    box-shadow: -2px -2px 0px 0px #FFD700, 2px 2px 0px 0px #FFD700;
  }
}

@media (max-width: 1024px) {
  .lore-content {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    padding-left: 20px;
  }
  
  .lore-left-panel {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
  
  .lore-right-panel {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0;
    padding: 20px 40px 60px;
  }
  
  .lore-actions {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .lore-interface .top-navigation {
    padding: 16px 20px;
  }

  .lore-content {
    padding: 16px;
    padding-top: 80px;
    padding-left: 16px;
  }

  .lore-left-panel {
    padding: 24px;
    margin: 0;
    max-width: none;
  }
  
  .lore-right-panel {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
    padding: 24px 24px 60px;
  }
  
  .lore-actions {
    position: static;
    transform: none;
    margin-top: 20px;
  }
  
  
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #FFD700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}