/* ==============================================================================
   MicroTec LLC - Cool Toys! & Developer Labs Showcase Styles
   ============================================================================== */

/* Hero & Header */
.toys-hero {
  background: radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.15) 0%, rgba(157, 78, 221, 0.12) 40%, transparent 70%);
  padding: 4.5rem 0 3rem;
  text-align: center;
  position: relative;
}

.toys-title {
  font-family: 'Outfit', var(--font-sans, sans-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 35%, #9d4edd 70%, #ff2a85 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.35));
}

.toys-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid rgba(157, 78, 221, 0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  color: #e2bbfd;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.25);
}

/* Project Cards */
.toy-card {
  background: rgba(13, 21, 39, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg, 18px);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00f2fe, #9d4edd, #ff2a85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toy-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.25);
}

.toy-card:hover::before {
  opacity: 1;
}

.toy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.toy-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15), rgba(157, 78, 221, 0.2));
  border: 1px solid rgba(0, 242, 254, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--laser-cyan, #00e5ff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.toy-card:hover .toy-icon {
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.toy-folder-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.toy-status-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.status-active {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--laser-cyan, #00e5ff);
}

.status-construction {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.status-restricted {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.toy-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.toy-desc {
  font-size: 0.95rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Launch Buttons */
.btn-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md, 10px);
  background: linear-gradient(135deg, #00f2fe 0%, #3b82f6 50%, #9d4edd 100%);
  color: #070a11;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
  white-space: nowrap;
}

.btn-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45), 0 0 15px rgba(157, 78, 221, 0.4);
  color: #000000;
}

.btn-launch-construction {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
}

.btn-launch-construction:hover {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-launch-restricted {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
}

.btn-launch-restricted:hover {
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  color: #ffffff;
}

/* Bottom Return Bar */
.secret-back-bar {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
