/* Base Styles - Reset, Typography, Colors, Utilities */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #333;
}

#app {
  width: 100%;
  height: 100vh;
}

/* Color Classes */
.color-red { background-color: #ff6b6b; }
.color-blue { background-color: #4dabf7; }
.color-white { background-color: #f8f9fa; border: 2px solid #333; }
.color-orange { background-color: #ff922b; }
.color-green { background-color: #51cf66; }
.color-brown { background-color: #a0522d; }

/* Utility Classes */
.divider {
  margin: 10px 0;
  color: #999;
  font-weight: bold;
}

.no-games-text, .loading-text {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 20px;
}

.no-cards {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 10px;
}

/* Dev Links (localhost only) */
.dev-links {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0.7);
  border-top-right-radius: 6px;
  z-index: 10000;
}

.dev-link {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.dev-link:hover {
  opacity: 0.7;
}
