

.steam-page-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  padding: 16px 24px;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}

.steam-page-button:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateX(-50%) translateY(16px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.steam-page-button:active {
  transform: translateX(-50%) translateY(18px) scale(1.01);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.steam-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: brightness(1);
  transition: filter 0.2s ease;
}

/* Button visibility is now controlled entirely by JavaScript */
/* Removed conflicting CSS rule that was never applying due to HTML structure */

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .steam-page-button {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
    font-size: 9px;
    gap: 10px;
  }
  
  .steam-icon {
    width: 24px;
    height: 24px;
  }
  
  .steam-page-button span {
    display: none;
  }
}

@media (max-width: 480px) {
  .steam-page-button {
    bottom: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 6px;
  }
  
  .steam-icon {
    width: 20px;
    height: 20px;
  }
}

