.worksymbols-tool {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
}

.worksymbols-container {
  background: white;
  padding: 5vh;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
  max-width: 1400px;
  transition: transform 0.3s ease;
}

.symbol-title {
  font-size: min(5vw, 48px);
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.symbol-card {
  background: var(--color-background);
  border-radius: 12px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.symbol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.symbol-card.active {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

.symbol-icon {
  font-size: min(15vw, 120px);
  margin-bottom: 15px;
}

.symbol-name {
  font-size: min(3vw, 24px);
  font-weight: 600;
}

.symbol-description {
  font-size: min(2vw, 16px);
  color: var(--color-text-light);
  margin-top: 10px;
}

.symbol-card.active .symbol-description {
  color: rgba(255, 255, 255, 0.8);
}

.fullscreen-symbol {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.fullscreen-icon {
  font-size: min(40vw, 400px);
  margin-bottom: 30px;
}

.fullscreen-name {
  font-size: min(8vw, 64px);
  font-weight: 600;
}

.close-fullscreen {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .symbols-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
