/* Root colors & variables */
:root {

   --primary: #0070f3;
  --primary-hover: #0057c2;
  --accent: #00bfa6;
  --foreground: #1a1a1a;
  --background: #fff;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  --background: 0 0% 100%;
  --foreground: 210 15% 20%;

  --card: 0 0% 100%;
  --card-foreground: 210 15% 20%;

  --popover: 0 0% 100%;
  --popover-foreground: 210 15% 20%;

  /* Primary: Professional blue for trust and focus */
  --primary: 215 85% 50%;
  --primary-foreground: 0 0% 100%;
  --primary-hover: 215 85% 45%;

  /* Secondary: Subtle gray for elegance */
  --secondary: 210 20% 96%;
  --secondary-foreground: 210 15% 30%;

  --muted: 210 20% 96%;
  --muted-foreground: 210 10% 50%;

  /* Accent: Energetic teal for engagement */
  --accent: 180 85% 40%;
  --accent-foreground: 0 0% 100%;
  --accent-hover: 180 85% 35%;

  --destructive: 0 85% 60%;
  --destructive-foreground: 0 0% 100%;

  --border: 210 20% 90%;
  --input: 210 20% 90%;
  --ring: 215 85% 50%;

  --radius: 0.75rem;

  /* Game specific colors */
  --game-success: 140 85% 45%;
  --game-warning: 45 95% 55%;
  --game-danger: 0 85% 60%;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(215 85% 50%),
    hsl(180 85% 40%)
  );
  --gradient-hero: linear-gradient(
    135deg,
    hsl(215 85% 50% / 0.1),
    hsl(180 85% 40% / 0.1)
  );
  --gradient-section: linear-gradient(180deg, hsl(0 0% 98%), hsl(0 0% 100%));

  /* Shadows */
  --shadow-card: 0 4px 12px hsl(210 20% 20% / 0.1);
  --shadow-button: 0 2px 8px hsl(215 85% 50% / 0.3);
  --shadow-game: 0 8px 24px hsl(180 85% 40% / 0.2);
  --background: #ffffff;
  --foreground: #333333;
  --muted: #f0f0f0;
  --radius: 12px;
  --border: #ddd;


}

body {
  margin: 0;
  font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}



.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  padding: 1rem 0;
}

.button-ghost {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  white-space: nowrap;
  gap: .5rem;
  height: 2.5rem;
}


.button-ghost:hover {
color: hsl(var(--accent-foreground));
background-color: hsl(var(--accent));
}

.main-content {
  padding: 3rem 0;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.last-updated {
  color: hsl(var(--muted-foreground)) !important;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: .5rem;
}

section {
  margin-bottom: 2rem;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: hsl(var(--muted-foreground)) !important;
}

p {
  color: hsl(var(--muted-foreground)) !important;
}

.contact-box {
  background-color: hsl(var(--secondary) / .5);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.contact-box p {
  margin: 0;
}


.card-box {
  background-color: hsl(var(--secondary) / .5);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}