.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-17 .elementor-element.elementor-element-e9a338d{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-204d548 *//* ===== Global Reset ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #0d0f16; /* base dark */
  color: #d1d5db;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

  /* Background accents */
  background: radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.18), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.12), transparent 60%),
              linear-gradient(180deg, #0d0f16, #1a1c24);
}

/* ===== Container ===== */
.incomiq-landing-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ===== Logo ===== */
.incomiq-logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto 2.5rem;
  display: block;
  animation: fadeIn 0.8s ease-in-out forwards;
}

/* ===== Headings ===== */
h1, h2, h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.6rem;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(88, 101, 242, 0.3);
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 3.5rem;
}

/* ===== Subtext ===== */
p {
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  color: #a1a1aa;
  max-width: 720px;
}

/* ===== CTA Buttons ===== */
.discord-button {
  display: inline-block;
  background: linear-gradient(135deg, #5865F2, #00c8ff);
  color: #fff;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.4);
}

.discord-button:hover {
  background: linear-gradient(135deg, #6d78f7, #00e0ff);
  transform: scale(1.07);
  box-shadow: 0 0 28px rgba(88, 101, 242, 0.65);
}

/* ===== Feature Section ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
  gap: 2.5rem;
}

.feature {
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #00c8ff; /* cyan glow */
  text-shadow: 0 0 15px rgba(0, 200, 255, 0.4);
}

.feature h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.95rem;
  color: #9ca3af;
}

.feature, h1, h2, p, .discord-button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }

/* ===== Footer ===== */
footer {
  margin-top: 5rem;
  font-size: 0.9rem;
  color: #8a8a8a;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #2a2d38;
}

footer a {
  color: #00c8ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .feature-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .discord-button {
    width: 100%;
  }
}/* End custom CSS */