* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #0e0f1a, #180432);
  color: #fff;
  min-height: 100vh;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-section {
  background: 
    repeating-linear-gradient(
      45deg,              /* Angle */
      #ffffff0a,          /* Line color with opacity */
      #ffffff0a 2px,      /* Line thickness */
      transparent 4px,    /* Space between lines */
      transparent 20px
    );
  background-color: #0d061f; /* Your main dark background color */
}

.hero-content {
  animation: fadeIn 1.5s ease-in-out;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.p-logo {
  width: 400px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  animation: pulse 2s infinite;
}

.logo-title h1 {
  font-size: 3rem;
  font-weight: 700;
}

.highlight {
  color: #00e6f6;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #00e6f6, #a100ff);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(161, 0, 255, 0.6);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background: #1b1c2e;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  color: white;
  text-align: center;
}

.modal-content input {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

.modal-content button {
  background: linear-gradient(to right, #00e6f6, #a100ff);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
