/* ======================================================
   Arcticfunhq.xyz — Complete stylesheet (arcticfunhq-xyz)
   Colors:
     Headings: #dfb3ff (with text border)
     Text: #c4dcc5
     Accents/Buttons: #dfb3ff
     Button text: #041c27
     Button hover: #c4dcc5
     Background: #041c27
   ====================================================== */

:root {
  --bg: #041c27;
  --accent: #dfb3ff;
  --text: #c4dcc5;
  --btn-text: #041c27;
  --btn-hover: #c4dcc5;
  --muted: rgba(196, 220, 197, 0.12);
  --card: rgba(223, 179, 255, 0.05);
  --card-border: rgba(223, 179, 255, 0.15);
  --radius-lg: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --site-font: "Chakra Petch", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* Reset & base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body.arcticfunhq-xyz {
  margin: 0;
  min-height: 100%;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--site-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  -webkit-tap-highlight-color: transparent;
}

/* Utility container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--btn-hover);
  text-decoration: underline;
}

/* ======================
   NAVBAR
   ====================== */
.arcticfunhq-xyz-nav {
  background: var(--bg);
  border-bottom: 1px solid rgba(223, 179, 255, 0.06);
  padding: 0.8rem 0;
  position: flex;
  top: 0;
  z-index: 80;
}
.arcticfunhq-xyz-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.arcticfunhq-xyz-nav .nav-logo {
  max-height: 76px;
  width: auto;
}
.arcticfunhq-xyz-nav .navbar-toggler {
  border: none;
  color: var(--text);
}
.arcticfunhq-xyz-nav .nav-link {
  color: var(--text);
  margin-left: 0.6rem;
  margin-right: 0.6rem;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
}
.arcticfunhq-xyz-nav .nav-link:hover,
.arcticfunhq-xyz-nav .nav-link.active {
  color: var(--accent);
  transform: translateY(-1px);
}

/* ======================
   HERO
   ====================== */
.arcticfunhq-xyz-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.arcticfunhq-xyz-hero .hero-title {
  color: var(--accent);
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  margin: 0 0 0.75rem;
  /* text border effect: stroke + subtle shadow fallback */
  -webkit-text-stroke: 0.9px var(--bg);
  text-shadow: 0 0 0.6px rgba(42, 0, 34, 0.8), 0 6px 18px rgba(0, 0, 0, 0.45);
  font-weight: 700;
}
.arcticfunhq-xyz-hero .hero-sub {
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 1.6rem;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  opacity: 0.95;
}
.arcticfunhq-xyz-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--btn-text);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 18px rgba(42, 0, 34, 0.35);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: none;
  text-decoration: none;
}
.arcticfunhq-xyz-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-3px);
}

/* ==============================
   USER INFORMATION NOTICE
   ============================== */
.arcticfunhq-xyz-notice {
  background-color: #041c27;
  color: #c4dcc5;
}

.arcticfunhq-xyz-notice .notice-box {
  background: rgba(223, 179, 255, 0.05);
  border: 1px solid rgba(223, 179, 255, 0.2);
  max-width: 700px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(223, 179, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arcticfunhq-xyz-notice .notice-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(223, 179, 255, 0.3);
}

.arcticfunhq-xyz-notice h2 {
  color: #dfb3ff;
  text-shadow: 1px 1px 2px #041c27;
  font-weight: 700;
}

.arcticfunhq-xyz-link {
  color: #dfb3ff;
  text-decoration: underline;
}

.arcticfunhq-xyz-link:hover {
  color: #c4dcc5;
}

.arcticfunhq-xyz-btn {
  display: inline-block;
  background-color: #dfb3ff;
  color: #041c27;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.arcticfunhq-xyz-btn:hover {
  background-color: #c4dcc5;
  color: #041c27;
}

/* ======================
   SECTION TITLE (Enhanced)
   ====================== */
.section-title {
  color: var(--accent); /* #dfb3ff */
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px var(--bg); /* #041c27 */
  text-shadow: 0 0 8px rgba(223, 179, 255, 0.6),
    0 0 16px rgba(223, 179, 255, 0.3);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--accent);
  box-shadow: 0 0 10px rgba(223, 179, 255, 0.8);
  opacity: 0.9;
}

.section-title:hover {
  transform: scale(1.02);
  text-shadow: 0 0 10px rgba(223, 179, 255, 0.8),
    0 0 25px rgba(223, 179, 255, 0.5);
}

/* ==============================
   GAMES SECTION
   ============================== */
.arcticfunhq-xyz-play {
  background-color: #041c27;
  color: #c4dcc5;
}

.arcticfunhq-xyz-play .section-title {
  color: #dfb3ff;
  text-shadow: 1px 1px 2px #041c27;
  font-weight: 700;
}

.arcticfunhq-xyz-game-column {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* 16:9 Aspect Ratio Responsive Frames */
.arcticfunhq-xyz-game-column .game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(223, 179, 255, 0.3);
  background-color: #1b0016;
  box-shadow: 0 0 20px rgba(223, 179, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arcticfunhq-xyz-game-column .game-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(223, 179, 255, 0.3);
}

.arcticfunhq-xyz-game-column .game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .arcticfunhq-xyz-game-column {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* ======================
   FEATURES
   ====================== */
.arcticfunhq-xyz-features {
  padding: 2.6rem 0;
}
.feature-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.feature-icon {
  font-size: 1.9rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}

/* ======================
   ABOUT
   ====================== */
.arcticfunhq-xyz-about {
  padding: 2.6rem 0;
}
.about-img {
  max-width: 90%;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

/* ======================
   REVIEWS
   ====================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 1.2rem;
  border-radius: 12px;
}
.review-card p {
  font-style: italic;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.review-card h5 {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ======================
   CONTACT
   ====================== */
.arcticfunhq-xyz-contact {
  padding: 2.6rem 0 4rem;
}
.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}
.contact-info {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 1.2rem;
  border-radius: 12px;
}
.contact-form {
  background: linear-gradient(
    180deg,
    rgba(42, 0, 34, 0.22),
    rgba(42, 0, 34, 0.14)
  );
  border: 1px solid rgba(223, 179, 255, 0.08);
  padding: 1.2rem;
  border-radius: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(196, 220, 197, 0.06);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  outline: none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(42, 0, 34, 0.25);
}
.contact-form button[type="submit"] {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--btn-text);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.form-status {
  font-size: 0.92rem;
  margin-top: 0.4rem;
  opacity: 0.95;
}
.form-status.error {
  color: #ff8b8b;
}
.form-status.success {
  color: #b9f6c9;
}
/* ==============================
   CONTACT FORM STATUS
   ============================== */
.form-status {
  font-size: 0.95rem;
  margin-top: 0.75rem;
  transition: color 0.3s ease;
}

.form-status.success {
  color: #dfb3ff;
}

.form-status.error {
  color: #ff8a8a;
}

.form-status.pending {
  color: #c4dcc5;
}

/* ==============================
   FOOTER
   ============================== */
.arcticfunhq-xyz-footer {
  background-color: #1b0016;
  color: #c4dcc5;
  border-top: 1px solid rgba(223, 179, 255, 0.15);
  box-shadow: 0 -2px 15px rgba(223, 179, 255, 0.05);
}

.arcticfunhq-xyz-footer .footer-logo {
  max-height: 70px;
  opacity: 0.9;
}

.arcticfunhq-xyz-footer .footer-disclaimer {
  background: rgba(223, 179, 255, 0.05);
  border: 1px solid rgba(223, 179, 255, 0.2);
  color: #c4dcc5;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 25px rgba(223, 179, 255, 0.08);
}

.arcticfunhq-xyz-footer .footer-disclaimer h5 {
  color: #dfb3ff;
  text-shadow: 1px 1px 2px #041c27;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.arcticfunhq-xyz-footer .footer-links li {
  margin: 0 0.75rem;
}

.arcticfunhq-xyz-footer .footer-links a {
  color: #dfb3ff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.arcticfunhq-xyz-footer .footer-links a:hover {
  color: #c4dcc5;
  text-shadow: 0 0 8px rgba(223, 179, 255, 0.5);
}

.arcticfunhq-xyz-footer .footer-copy {
  font-size: 0.9rem;
  color: #c4dcc5;
}

.arcticfunhq-xyz-footer .link-accent {
  color: #dfb3ff;
  text-decoration: none;
}

.arcticfunhq-xyz-footer .link-accent:hover {
  color: #c4dcc5;
  text-decoration: underline;
}

/* ==============================
   DISCLAIMER POPUP
   ============================== */
.arcticfunhq-xyz-popup {
  position: fixed;
  inset: 0;
  background: rgba(42, 0, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.arcticfunhq-xyz-popup.active {
  opacity: 1;
  visibility: visible;
}

.arcticfunhq-xyz-popup .popup-inner {
  background: rgba(223, 179, 255, 0.05);
  border: 1px solid rgba(223, 179, 255, 0.3);
  box-shadow: 0 0 40px rgba(223, 179, 255, 0.25);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
  color: #c4dcc5;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease;
}

.arcticfunhq-xyz-popup h3 {
  color: #dfb3ff;
  text-shadow: 0 0 6px rgba(223, 179, 255, 0.6);
  margin-bottom: 1rem;
}

.arcticfunhq-xyz-popup p {
  font-size: 1rem;
  line-height: 1.6;
}

.arcticfunhq-xyz-popup .popup-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.arcticfunhq-xyz-popup .exit {
  background-color: transparent;
  border: 1px solid #dfb3ff;
  color: #dfb3ff;
}

.arcticfunhq-xyz-popup .exit:hover {
  background-color: #dfb3ff;
  color: #041c27;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   SCROLL TO TOP BUTTON
   ============================== */
.arcticfunhq-xyz-scroll {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  background: #dfb3ff;
  color: #041c27;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 0 10px rgba(223, 179, 255, 0.3);
}

.arcticfunhq-xyz-scroll.show {
  opacity: 1;
  visibility: visible;
}

.arcticfunhq-xyz-scroll:hover {
  background: #c4dcc5;
  color: #041c27;
  box-shadow: 0 0 15px rgba(223, 179, 255, 0.5);
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 991px) {
  .arcticfunhq-xyz-hero {
    padding: 3rem 0;
  }
  .arcticfunhq-xyz-hero .hero-title {
    font-size: 2.2rem;
  }
  .nav-logo {
    max-height: 56px;
  }
  .game-grid {
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .arcticfunhq-xyz-nav {
    padding: 0.6rem 0;
  }
  .arcticfunhq-xyz-hero {
    padding: 2.2rem 0;
    min-height: 64vh;
  }
  .footer-links {
    gap: 0.4rem;
  }
  .about-img {
    max-width: 100%;
  }
}

/* small accessibility and focus */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(223, 179, 255, 0.12);
  outline-offset: 2px;
}

/* End of stylesheet */

.arcticfunhq-legal {
  color: #e6e6f0;
  background: #100018;
  line-height: 1.8;
}

.arcticfunhq-legal h1,
.arcticfunhq-legal h2 {
  color: #dfb3ff;
  text-shadow: 0 0 6px rgba(223, 179, 255, 0.4);
}

.arcticfunhq-legal p {
  margin-bottom: 1.2rem;
}

.arcticfunhq-legal a {
  color: #c4dcc5;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.arcticfunhq-legal a:hover {
  color: #dfb3ff;
}

.legal-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  text-align: center;
}
