/* Authentic Frutiger Aero Button CSS */
.art {
  /* OKLCH Color System for accurate colors */
  --hue: 0;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.art::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.art:hover,
.art:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.art:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size */

.art.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}

/* Authentic Frutiger Aero Button CSS */
.farta {
  /* OKLCH Color System for accurate colors */
  --hue: 70;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.farta::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.farta:hover,
.farta:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.farta:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */

.farta.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}

/* Authentic Frutiger Aero Button CSS */
.music {
  /* OKLCH Color System for accurate colors */
  --hue: 107;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.music::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.music:hover,
.music:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.music:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */
.music.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}

/* Authentic Frutiger Aero Button CSS */
.gd {
  /* OKLCH Color System for accurate colors */
  --hue: 157;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.gd::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.gd:hover,
.gd:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.gd:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */
.gd.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}

/* Authentic Frutiger Aero Button CSS */
.friends {
  /* OKLCH Color System for accurate colors */
  --hue: 193;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.friends::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.friends:hover,
.friends:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.friends:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */
.friends.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}

/* Authentic Frutiger Aero Button CSS */
.peas {
  /* OKLCH Color System for accurate colors */
  --hue: 238;
  --sat: 0.6;
  --glow-intensity: 1;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.peas::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.peas:hover,
.peas:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.peas:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */
.peas.medium {
  padding: 0.75em 2em;
  font-size: 1rem;
}