/* Slice Master Logo - Simple, bright cartoon style */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #3b82f6;
  text-shadow: 2px 2px 0 #FFD166, 4px 4px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
  border-radius: 3px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #3b82f6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: slice 2s infinite;
}

@keyframes slice {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
} 