@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

:root {
  --bg-primary: #050a0e;
  --bg-secondary: #080f15;
  --bg-card: #091016;
  --accent-green: red;
  --accent-cyan: rgb(255, 255, 255);
  --accent-red: red;
  --text-primary: white;
  --text-secondary: white;
  --border-color: red;
  --glow-green: 0 0 8px red, 0 0 20px red;
  --glow-cyan: 0 0 8px red, 0 0 20px red;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 157, 0.015) 2px,
    rgba(0, 255, 157, 0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridPan 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridPan {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

.head {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #000d1a 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.head::before {
  content: '// CREW.DEV';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.head::after {
  content: 'v0.0.2';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;
  color: var(--accent-green);
  opacity: 1;
}

.head .title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-cyan));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.head .slogan {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.head .slogan::before {
  content: '> ';
  color: var(--accent-green);
}

.head .click {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--accent-green);
  border-radius: 4px;
  padding: 14px 24px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  color: var(--accent-green);
  box-shadow: var(--glow-green), inset 0 0 20px rgba(0, 255, 157, 0.03);
  transition: all 0.3s ease;
  cursor: text;
}

.head .click:hover {
  box-shadow: 0 0 15px #00ff9d88, 0 0 40px #00ff9d33, inset 0 0 30px rgba(0, 255, 157, 0.06);
}

.head .click .fa-dollar-sign {
  color: var(--accent-green);
  font-size: 0.9rem;
}

.head .click button {
  background: transparent;
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--accent-green);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.head .click button:hover {
  background: rgba(0, 255, 157, 0.1);
  border-color: var(--accent-green);
  box-shadow: var(--glow-green);
}

.head .click button:active {
  transform: scale(0.9);
}

.container2 {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

.container2 .title2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.container2 .title2::before {
  content: '◈';
  color: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.container2 hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  margin-bottom: 36px;
  opacity: 0.4;
}

.item {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.container-items {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 2px solid transparent;
  border-radius: 4px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}

.container-items::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.container-items::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
  border-right: 1px solid rgba(0, 255, 157, 0.1);
  pointer-events: none;
}

.container-items:hover {
  border-left-color: var(--accent-cyan);
  border-color: rgba(0, 212, 255, 0.3);
  background: #0d1e2e;
  transform: translateX(4px);
  box-shadow: var(--glow-cyan);
}

.container-items:nth-child(3):hover { border-left-color: var(--accent-red); border-color: rgba(255, 45, 85, 0.3); box-shadow: 0 0 8px #ff2d5555, 0 0 20px #ff2d5522; }
.container-items:nth-child(6):hover { border-left-color: var(--accent-red); border-color: rgba(255, 45, 85, 0.3); box-shadow: 0 0 8px #ff2d5555, 0 0 20px #ff2d5522; }
.container-items:nth-child(7):hover { border-left-color: var(--accent-red); border-color: rgba(255, 45, 85, 0.3); box-shadow: 0 0 8px #ff2d5555, 0 0 20px #ff2d5522; }

.container-items .title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--accent-green);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.container-items .title::before {
  content: '$ ';
  color: var(--accent-cyan);
  opacity: 0.6;
}

.container-items .content {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.container img {
  width: 100%;
  max-width: 1000px;
  border-radius: 8px;
}


footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  margin-top: 40px;
}

footer .col1 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

footer .col2 a {
  color: var(--text-secondary);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

footer .col2 a:hover {
  color: var(--accent-green);
  text-shadow: var(--glow-green);
  transform: scale(1.2);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 3px;
  opacity: 0.5;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

::selection {
  background: rgba(0, 255, 157, 0.2);
  color: var(--accent-green);
}


@media (max-width: 600px) {
  .head { padding: 60px 16px 40px; }
  .head::before, .head::after { display: none; }
  .item { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}