* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1115;
  color: #eaeaea;
}

/* LAYOUT */
.container {
  max-width: 980px;
  margin: 28px auto;
  padding: 0 16px;
}

h1 { margin: 14px 0 12px; }
h3 { margin: 0 0 6px; }
p { line-height: 1.5; }

.muted { color: #a8b0d9; }
.small { font-size: 12px; color: #c7cbe3; }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #141824;
  border: 1px solid #24283a;
  border-radius: 12px;
}

.brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #cfd3ff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #2b3150;
  background: #0f1115;
}

/* CARD */
.card {
  background: #171a21;
  border: 1px solid #24283a;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

/* FORMS */
label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #cfd3ff;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #2b3150;
  background: #0f1115;
  color: #eaeaea;
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

form { margin: 0; }

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #2b3150;
  background: #22284a;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { opacity: 0.9; }

.btn-secondary {
  background: #1b1f2d;
}

.btn-danger {
  background: #4a1f22;
  border-color: #6a2a2f;
}

/* ALERT */
.alert {
  background: #4a1f22;
  border: 1px solid #6a2a2f;
  padding: 12px;
  border-radius: 10px;
  margin: 14px 0;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

/* ============================= */
/* ===== TEMPLUL CREATORILOR ==== */
/* ============================= */

#temple-overlay {
  position: fixed;
  inset: 0;
  background: url("/images/templul-creatorilor.jpg") center center / cover no-repeat;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

#temple-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

#temple-text {
  position: relative;
  margin-bottom: 80px;
  font-size: 3rem;
  color: #f5f1e8;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 215, 160, 0.25);
  z-index: 2;
}

#enter-temple {
  position: relative;
  margin-bottom: 40px;
  padding: 14px 34px;
  font-size: 1.1rem;
  background: transparent;
  color: #f5f1e8;
  border: 1px solid rgba(255, 215, 160, 0.6);
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

#enter-temple:hover {
  background: rgba(255, 215, 160, 0.12);
}
/* =========================================
   HOMEPAGE PREMIUM — BESTSTLFILES
   ========================================= */

.temple-landing {
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 15%, rgba(116, 86, 231, 0.22), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(50, 174, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #090b11 0%, #0f1220 50%, #090b11 100%);
}

.temple-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 26px 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(151, 139, 255, 0.18);
  border-radius: 26px;
  background: rgba(15, 18, 30, 0.88);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.temple-panel .nav {
  margin-bottom: 54px;
  border-color: rgba(151, 139, 255, 0.16);
  background: rgba(19, 23, 39, 0.78);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #aaa0ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.k-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8c72ff;
  box-shadow: 0 0 18px rgba(140, 114, 255, 0.95);
}

.temple-panel h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-sub {
  max-width: 720px;
  margin: 24px 0 0;
  color: #aeb5c7;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions,
.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-10 {
  margin-top: 10px;
}

.temple-panel .btn {
  padding: 12px 18px;
  border: 1px solid rgba(150, 139, 255, 0.24);
  border-radius: 13px;
  background: rgba(32, 37, 63, 0.85);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.temple-panel .btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(171, 158, 255, 0.55);
  background: rgba(45, 51, 83, 0.95);
}

.temple-panel .btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #7456e7, #9d75ff);
  box-shadow: 0 12px 30px rgba(116, 86, 231, 0.28);
}

.temple-panel .btn-primary:hover {
  background: linear-gradient(135deg, #8062ee, #aa83ff);
  box-shadow: 0 16px 38px rgba(116, 86, 231, 0.4);
}

.lp-block,
.lp-final {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(151, 139, 255, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(28, 32, 52, 0.92), rgba(18, 21, 35, 0.92));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.lp-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
}

.lp-text,
.lp-final-text {
  color: #c4cada;
  line-height: 1.65;
}

.lp-muted {
  color: #8f98ad;
}

.lp-actions {
  margin-top: 18px;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lp-step {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(151, 139, 255, 0.14);
  border-radius: 16px;
  background: rgba(9, 12, 21, 0.58);
}

.lp-step-nr {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  background: rgba(116, 86, 231, 0.17);
  color: #b7a8ff;
  font-size: 1.08rem;
  font-weight: 900;
}

.lp-step-txt {
  color: #f3f4fa;
  font-weight: 700;
}

.lp-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
}

.lp-final::before {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(116, 86, 231, 0.19);
  filter: blur(18px);
  content: "";
}

.lp-final-title {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

@media (max-width: 760px) {
  .temple-landing {
    padding: 12px;
  }

  .temple-panel {
    padding: 16px 16px 24px;
    border-radius: 20px;
  }

  .temple-panel .nav {
    margin-bottom: 34px;
  }

  .temple-panel h1 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .lp-actions .btn {
    flex: 1 1 180px;
    text-align: center;
  }
}