/* Common Styles for nivyan.com Games */

/* Home Navigation Button */
.home-btn {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 10000;
  background: rgba(78, 205, 196, 0.9);
  border: 1px solid rgba(78, 205, 196, 0.5);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: auto;
  white-space: nowrap;
  box-sizing: border-box;
  flex: none;
  flex-shrink: 0;
  flex-grow: 0;
}

.home-btn:hover {
  background: rgba(78, 205, 196, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.home-btn:active {
  transform: translateY(0);
}

/* Base Reset & Utilities */
* {
  box-sizing: border-box;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .home-btn {
    padding: 8px 12px;
    font-size: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    display: inline-block;
    white-space: nowrap;
  }
}
