:root {
  --neon-blue: #00f3ff;
  --cyber-purple: #7028e4;
  --matrix-green: #00ff9d;
  --cyber-black: #0a0a12;
  --error-red: #ff4444;
}

.cyber-generator-container {
  background: linear-gradient(145deg, var(--cyber-black) 0%, #151520 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.gsm {
  color: white;
  text-align: center;
}

.cyber-country-selector {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cyber-input {
  flex: 1;
  padding: 12px;
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--matrix-green);
  font-family: monospace;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cyber-input:focus {
  outline: none;
  border-color: var(--neon-blue);
}

.cyber-badge {
  padding: 12px 20px;
  background: rgba(40, 40, 60, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--neon-blue);
  font-family: monospace;
  font-weight: 700;
}

.cyber-button {
  position: relative;
  padding: 14px 28px;
  background: linear-gradient(45deg, var(--cyber-purple), var(--neon-blue));
  border: none;
  border-radius: 6px;
  color: white;
  font-family: sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cyber-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,243,255,0.3);
}

.cyber-button.generating {
  opacity: 0.7;
  cursor: not-allowed;
}

.cyber-gradient {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 25%,
    rgba(255,255,255,0.2) 50%,
    transparent 75%
  );
  animation: shine 2s infinite;
}

.cyber-output {
  width: 100%;
  padding: 16px;
  background: rgba(10, 10, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--matrix-green);
  font-family: monospace;
  font-size: 15px;
  min-height: 120px;
  resize: none;
}

.cyber-output.error {
  color: var(--error-red);
  border-color: var(--error-red);
}

@media (max-width: 600px) {
  .cyber-generator-container {
    padding: 1.5rem;
    gap: 1.2rem;
  }
  
  .cyber-country-selector {
    flex-direction: column;
  }
  
  .cyber-badge {
    width: 100%;
    text-align: center;
  }
  
  .cyber-button {
    width: 100%;
    padding: 12px;
  }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}