body {
  background: #0a0e27 url('/images/wqwecsxce3r32ecdsef432.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

@keyframes cyberpunk-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.98; }
}

.contact-cta { overflow-x: clip; max-width: 100%; }

.main-container {
  display: grid;
  gap: 32px;
  max-width: 1100px;
  margin: 96px auto 40px;
  align-items: start;
}

.options {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background: linear-gradient(120deg, #0f0f23 0%, #1a0f3f 50%, #ff006e 100%);
  border-radius: 0;
  box-shadow: 
    0 0 30px rgba(255, 0, 110, 0.6),
    0 0 60px rgba(0, 255, 255, 0.3),
    inset 0 0 20px rgba(255, 0, 110, 0.2);
  position: relative;
  color: #fff;
  border: 3px solid #ff006e;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

.options::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.4), transparent);
  animation: neon-scan 2s infinite;
  pointer-events: none;
}

@keyframes neon-scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero h1 { 
  font-size: 1.20rem; 
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.options::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,110,0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.options img {
    width: 100%;
    max-width: 540px;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    border: 2px solid #00ffff;
}

.options img:hover {
    transform: scale(1.04) skewX(-2deg);
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.5), 0 0 30px rgba(0, 255, 255, 0.4);
}

.fixed-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 24px auto 0;
}

.card {
  background: #0a0e27;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #ff006e;
  position: relative;
  box-shadow: 0 0 20px rgb(255, 0, 111);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #00ffff, #ff006e);
  animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.card__image {
  width: calc(100% - 20px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 10px auto;
  border-radius: 8px;
  border: 2px solid #a0aec0;
  box-shadow: 0 0 15px rgba(160, 174, 192, 0.3), inset 0 0 20px rgba(79, 140, 255, 0.08);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1a2847 0%, #2d3e5f 100%);
}


.card__image:hover {
  box-shadow: 0 0 25px rgba(217, 56, 163, 0.6), 0 0 40px rgba(255, 79, 226, 0.3);
  border-color: #d938c4;
}

.card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__title {
  margin: 0;
  font-size: 1rem;
  color: #00ffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card__desc {
  margin: 0;
  color: #a0d8ff;
  font-size: 0.9rem;
}

.card__action {
  margin-top: 6px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 0;
  background: #ff006e;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-cta {
  width: 100%;
  background: linear-gradient(90deg, #ff006e 0%, #00ffff 100%);
  color: #000;
  margin: 32px 0 0;
  padding: 32px 20px;
  border-top: 3px solid #ff006e;
  border-bottom: 3px solid #00ffff;
}

.container {
  padding: 0 20px 10px 0;
}

.contact-cta .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-cta h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-cta p {
  margin: 0 0 16px;
  font-size: 1rem;
  opacity: 0.95;
}

.contact-cta a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 0;
  background: #0a0e27;
  color: #00ffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border: 2px solid #00ffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .main-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 80px auto 24px;
    padding: 0 6px;
  }
  .options { max-height: 260px; }
  .options img { max-width: 100%; }

  
  .fixed-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
    margin-bottom: 24px;
  }


  .contact-cta h2 { font-size: 1.5rem; }
}