/* ===============================
   PAGE WRAPPER
================================ */
.arksa-page {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;   /* header */
  padding-bottom: 120px;
}

/* ===============================
   BACKGROUND VIA PSEUDO ELEMENT
================================ */
.arksa-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/arksa-background.png"); /* или inline style */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000; /* запълва празното */
  z-index: -1;
}

/* ===============================
   arksa CONTENT PANEL
================================ */
.arksa-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 64px;

  background: linear-gradient(
    rgba(12, 0, 0, 0.9),
    rgba(5, 0, 0, 0.8)
  );

  border: 1px solid rgba(255, 50, 50, 0.45);
  border-radius: 18px;

  color: #e8e8e8;

  box-shadow:
    0 0 45px rgba(255, 0, 0, 0.4),
    inset 0 0 32px rgba(255, 0, 0, 0.22);

  backdrop-filter: blur(7px);
}

/* анимация за панела */
.arksa-accordion summary {
  cursor: pointer;
  padding: 12px 18px;
  margin-bottom: 16px;

  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 50, 50, 0.45);
  border-radius: 12px;

  color: #fff;
  font-weight: 600;
  list-style: none;
}

.arksa-accordion summary::-webkit-details-marker {
  display: none;
}

/* анимация */
.arksa-accordion .arksa-panel {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.arksa-accordion:not([open]) .arksa-panel {
  opacity: 0;
  transform: translateY(-10px);
}

/* ===============================
   TYPOGRAPHY (SAFE DEFAULTS)
================================ */
.arksa-panel h1,
.arksa-panel h2,
.arksa-panel h3 {
  color: #ff3333;
  text-shadow: 0 0 12px rgba(255, 60, 60, 0.8);
}

.arksa-panel p,
.arksa-panel li {
  line-height: 1.8;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .arksa-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .arksa-panel {
    padding: 32px 26px;
    border-radius: 14px;
  }
}

/* ===============================
   arksa ACTION BUTTONS
================================ */
.arksa-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

/* ===============================
   BUTTON STYLE
================================ */
.arksa-action-btn {
  display: inline-block;
  padding: 12px 22px;

  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #f2f2f2;
  text-decoration: none;

  background: linear-gradient(
    145deg,
    #1a0000,
    #0a0000
  );

  border: 1px solid rgba(255, 50, 50, 0.5);
  border-radius: 10px;

  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.35),
    inset 0 0 10px rgba(255, 0, 0, 0.2);

  transition: all 0.25s ease;
}

.arksa-action-btn:hover {
  color: #fff;
  border-color: #ff3333;

  box-shadow:
    0 0 20px rgba(255, 50, 50, 0.7),
    inset 0 0 16px rgba(255, 50, 50, 0.35);

  transform: translateY(-2px);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .arksa-actions {
    flex-direction: column;
  }

  .arksa-action-btn {
    width: 100%;
    text-align: center;
  }
}
