/* style.css */
body,
html {
  margin: 0;
  padding: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.359);
}

  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #00000058 0%, #1a1a1a51 50%, #0000005e 100%);
  color: #00ff41;
  min-height: 100vh;
  overflow-x: hidden;
}

.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -3; /* behind rainbow matrix canvas */
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 255, 65, 0.1) 2px,
      rgba(0, 255, 65, 0.1) 4px);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  }

  to {
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.8), 0 0 40px rgba(0, 255, 65, 0.3);
  }
}

.header .tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

.version-badge {
  background: linear-gradient(45deg, #00ff41, #00cc33);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.feature {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: #00ff41;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
  transform: translateY(-5px);
}

.feature .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #00ff41;
}

.feature p {
  color: #ccc;
  line-height: 1.6;
}

.getting-started {
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  border-radius: 12px;
  padding: 30px;
  margin: 50px 0;
}

.getting-started h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00ff41;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.step-number {
  background: #00ff41;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.step h4 {
  color: #00ff41;
  margin-bottom: 10px;
}

.step p {
  color: #ccc;
  font-size: 0.9rem;
}

.shortcuts {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
}

.shortcuts h2 {
  color: #00ff41;
  margin-bottom: 20px;
  text-align: center;
}

.shortcut-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.shortcut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(0, 255, 65, 0.05);
  border-radius: 6px;
}

.shortcut .key {
  background: #00ff41;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: bold;
  font-size: 0.8rem;
}

.cta {
  text-align: center;
  margin: 50px 0;
}

.btn {
  background: linear-gradient(45deg, #00ff41, #00cc33);
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 65, 0.4);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00ff41;
  color: #00ff41;
}

.disclaimer {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.disclaimer h3 {
  color: #ff4444;
  margin-bottom: 10px;
}

.disclaimer p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .container {
    padding: 20px 10px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
.image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image:hover {
  transform: rotate(5deg);
}

.image:active {
  transform: scale(1.2);
}
