body.g-page {
  background-color: #0d0d0d;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 16px;
  color: #e0e0e0;
  text-align: center;
  min-height: 100vh;
}


.hero {
  height: 77vh;
  position: relative;
  overflow: hidden;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(ellipse at center, #0f0f1f 0%, #000 100%);
}







.idrive-heading {
  font-size: 30px;  
  color: #00ffcc;
  margin-bottom: 30px;
  letter-spacing: 5px;
  text-align: center;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}


.g-container {
  background: rgba(30, 30, 30, 0.85);
  padding: 3em;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,255,204,0.3);
  text-align: center;
  margin-top: 22VH; 
  transform: translateX(0);
}

.g-container a {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #00ffcc;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: 2px solid #00ffcc;
}

.g-container a:hover {
  color: #0d0d0d;
  background-color: #00ffcc;
  transform: scale(1.1);
  border-color: #00ccaa;
}

/* Kisebb kijelzők (tablet) */
@media (max-width: 1024px) {
  .idrive-heading {
    font-size: 60px;
    letter-spacing: 3px;
  }
}

/* Telefon: kisebb szöveg, padding */
@media (max-width: 480px) {
  .idrive-heading {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .g-container {
    padding: 1.5em;
  }

  .g-container a {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
