/* Icon System - SVG Icons */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Size variants */
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 3rem; height: 3rem; }
.icon-2xl { width: 4rem; height: 4rem; }

/* Brand icon */
.icon-brand { color: var(--primary); }

/* Stat icons */
.stat-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(208, 32, 0, 0.2), rgba(192, 32, 0, 0.2));
  color: var(--primary);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* Game icons */
.game-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(208, 32, 0, 0.15), rgba(143, 20, 20, 0.15));
  border-radius: 16px;
  color: var(--accent);
}

.game-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: currentColor;
}

/* Feature icons */
.feature-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(208, 32, 0, 0.2), rgba(192, 32, 0, 0.2));
  border-radius: 12px;
  color: var(--primary);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}
