/* =========================================
   Myfrostvaleapp.ink — style.css
   - Prefix: .myfrostvaleapp-ink-*
   - Colors match user spec
   - Mobile-first, responsive
   ========================================= */

/* ---------- Theme variables ---------- */
:root{
  --bg: #ffe1bb;               /* site background */
  --accent: #4d3834;           /* headings, accents, buttons */
  --text: #23383b;             /* main text color */
  --button-text: #ffe1bb;      /* button text */
  --button-hover: #23383b;     /* button hover background */
  --muted: rgba(35,56,59,0.65);
  --card-bg: rgba(77,56,52,0.04);
  --glass: rgba(255,255,255,0.85);
  --radius: 12px;
  --container-max: 1200px;
  --transition: 220ms cubic-bezier(.2,.9,.3,1);
  --shadow-soft: 0 8px 30px rgba(35,56,59,0.06);
  --shadow-tight: 0 4px 18px rgba(35,56,59,0.08);
  --text-stroke-color: rgba(77,56,52,0.12);
}

/* ---------- Base / Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html,body{
  height:100%;
  margin:0;
  padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-tap-highlight-color: transparent;
}

/* Utility container */
.container{
  width:100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Small helper */
.text-center { text-align:center; }

/* ---------- Navbar ---------- */
.myfrostvaleapp-ink-navbar{
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.5));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(77,56,52,0.06);
  padding: 12px 0;
  position: sticky;
  top:0;
  z-index: 1200;
}

.myfrostvaleapp-ink-brand { display:flex; align-items:center; gap:12px; }
.myfrostvaleapp-ink-logo{
  height:80px;
  width:auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 2px 6px rgba(77,56,52,0.08));
}

.myfrostvaleapp-ink-toggler{
  border:0;
  background:transparent;
  color:var(--accent);
  font-size:20px;
}

.navbar-nav .nav-link{
  color:var(--text);
  margin-left:10px;
  font-weight:500;
  padding:8px 10px;
  border-radius:8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  background: var(--card-bg);
  color:var(--accent);
  transform: translateY(-1px);
  outline:none;
}

/* Active link */
.navbar-nav .nav-link.active{
  color:var(--accent);
  font-weight:700;
  text-decoration: none;
  box-shadow: inset 0 -3px 0 var(--accent);
}

/* ---------------------------------
   SECTION TITLES – Myfrostvaleapp.ink
---------------------------------- */

.myfrostvaleapp-ink-section-title {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: #4d3834;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 #ffe1bb;
  letter-spacing: 0.5px;
}

/* Optional soft underline accent */
.myfrostvaleapp-ink-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #4d3834;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  opacity: 0.8;
}

/* Subtitle or description text */
.myfrostvaleapp-ink-section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #23383b;
  text-align: center;
  max-width: 720px;
  margin: 0.5rem auto 2.5rem;
}

/* Adjust spacing inside sections */
section {
  padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-section-title {
    font-size: 1.8rem;
  }

  .myfrostvaleapp-ink-section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  section {
    padding: 60px 0;
  }
}

/* ---------------------------------
   SECTION TITLES – Myfrostvaleapp.ink
---------------------------------- */

.myfrostvaleapp-ink-section-title {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: #4d3834;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 #ffe1bb;
  letter-spacing: 0.5px;
}

/* Optional soft underline accent */
.myfrostvaleapp-ink-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #4d3834;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  opacity: 0.8;
}

/* Subtitle or description text */
.myfrostvaleapp-ink-section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #23383b;
  text-align: center;
  max-width: 720px;
  margin: 0.5rem auto 2.5rem;
}

/* Adjust spacing inside sections */
section {
  padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-section-title {
    font-size: 1.8rem;
  }

  .myfrostvaleapp-ink-section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  section {
    padding: 60px 0;
  }
}

/* ---------------------------------
   HERO SECTION – Myfrostvaleapp.ink
---------------------------------- */
.myfrostvaleapp-ink-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  padding: 0 1.5rem;
  background: url("../images/hero.jpg") center center no-repeat;
  background-size: contain;             /* Image contained and visible */
  background-color: #ffe1bb;            /* Soft warm background */
  text-align: center;
  overflow: hidden;
}

/* Subtle overlay for readability */
.myfrostvaleapp-ink-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(77, 56, 52, 0.0);   /* Light warm filter */
  z-index: 1;
}

/* Inner content container */
.myfrostvaleapp-ink-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;                     /* Contained readable width */
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  color: #23383b;
  box-sizing: border-box;
}

/* Main title */
.myfrostvaleapp-ink-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #4d3834;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 #ffe1bb;
  border-bottom: 2px solid rgba(77, 56, 52, 0.2);
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* Subtitle paragraph */
.myfrostvaleapp-ink-hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #23383b;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* CTA Buttons Container */
.myfrostvaleapp-ink-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Primary button */
.myfrostvaleapp-ink-btn.primary {
  background-color: #4d3834;
  color: #ffe1bb;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Ghost button */
.myfrostvaleapp-ink-btn.ghost {
  background-color: transparent;
  color: #4d3834;
  border: 2px solid #4d3834;
  padding: 0.7rem 1.7rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Hover states */
.myfrostvaleapp-ink-btn.primary:hover {
  background-color: #23383b;
  transform: translateY(-3px);
}

.myfrostvaleapp-ink-btn.ghost:hover {
  background-color: #4d3834;
  color: #ffe1bb;
  transform: translateY(-3px);
}

/* Responsive behavior */
@media (max-width: 992px) {
  .myfrostvaleapp-ink-hero {
    height: auto;
    padding: 80px 1.5rem;
    background-size: cover;  /* Better fill on mobile */
  }

  .myfrostvaleapp-ink-hero-title {
    font-size: 2.25rem;
  }

  .myfrostvaleapp-ink-hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .myfrostvaleapp-ink-hero {
    padding: 60px 1rem;
  }

  .myfrostvaleapp-ink-hero-title {
    font-size: 1.8rem;
  }

  .myfrostvaleapp-ink-hero-sub {
    font-size: 0.95rem;
  }

  .myfrostvaleapp-ink-btn.primary,
  .myfrostvaleapp-ink-btn.ghost {
    width: 100%;
    max-width: 260px;
  }
}

/* ---------------------------------
   DISCLAIMER CARD – Myfrostvaleapp.ink
---------------------------------- */
.myfrostvaleapp-ink-disclaimer-card {
  background-color: #ffe1bb;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.myfrostvaleapp-ink-disclaimer {
  background-color: #fff8f0;
  border: 2px solid #4d3834;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 12px rgba(77, 56, 52, 0.1);
  transition: all 0.3s ease;
}

.myfrostvaleapp-ink-disclaimer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(77, 56, 52, 0.15);
}

/* Title */
.myfrostvaleapp-ink-disclaimer-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #4d3834;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 #ffe1bb;
  border-bottom: 2px solid rgba(77, 56, 52, 0.25);
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Text paragraphs */
.myfrostvaleapp-ink-disclaimer-text {
  font-size: 1.05rem;
  color: #23383b;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.myfrostvaleapp-ink-disclaimer-text strong {
  color: #4d3834;
  font-weight: 600;
}

/* Small button */
.myfrostvaleapp-ink-small-btn {
  display: inline-block;
  background-color: #4d3834;
  color: #ffe1bb;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
}

.myfrostvaleapp-ink-small-btn:hover {
  background-color: #23383b;
  color: #ffe1bb;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-disclaimer {
    padding: 2rem 1.25rem;
  }

  .myfrostvaleapp-ink-disclaimer-title {
    font-size: 1.8rem;
  }

  .myfrostvaleapp-ink-disclaimer-text {
    font-size: 1rem;
  }
}
/* ---------------------------------
   EXPERIENCE SECTION – Myfrostvaleapp.ink
---------------------------------- */
.myfrostvaleapp-ink-play {
  padding: 80px 0;
  text-align: center;
}

.myfrostvaleapp-ink-play .myfrostvaleapp-ink-section-title {
  margin-bottom: 2rem;
}

/* Wrapper around the game iframe */
.myfrostvaleapp-ink-game-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #4d3834;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffe1bb;
  box-shadow: 0 6px 16px rgba(77, 56, 52, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myfrostvaleapp-ink-game-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(77, 56, 52, 0.2);
}

/* Responsive 16:9 ratio container */
.myfrostvaleapp-ink-video-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #23383b10; /* faint background behind iframe */
}

.myfrostvaleapp-ink-video-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .myfrostvaleapp-ink-game-wrap {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .myfrostvaleapp-ink-play {
    padding: 60px 0;
  }

  .myfrostvaleapp-ink-game-wrap {
    max-width: 95%;
    border-radius: 12px;
  }

  .myfrostvaleapp-ink-video-ratio {
    padding-top: 58%; /* slight adjustment for narrow viewports */
  }
}


/* ---------------------------------
   FEATURES SECTION – Myfrostvaleapp.ink
---------------------------------- */
.myfrostvaleapp-ink-features {
  background-color: #ffe1bb;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.myfrostvaleapp-ink-section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #23383b;
  line-height: 1.6;
}

/* Force 4-column layout on large screens */
.myfrostvaleapp-ink-features-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: nowrap; /* ensures all 4 stay in one row */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Feature cards */
.myfrostvaleapp-ink-feature {
  flex: 1 1 0;
  max-width: 25%;
  background-color: #fff8f0;
  border: 2px solid #4d3834;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  color: #23383b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 56, 52, 0.08);
}

.myfrostvaleapp-ink-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(77, 56, 52, 0.15);
  background-color: #fff3e1;
}

/* Icons */
.myfrostvaleapp-ink-feature-icon {
  font-size: 2.6rem;
  color: #4d3834;
  margin-bottom: 16px;
}

.myfrostvaleapp-ink-feature-title {
  font-size: 1.4rem;
  color: #4d3834;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.myfrostvaleapp-ink-feature-text {
  font-size: 1rem;
  color: #23383b;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 320px;
}

/* Responsive behavior */
@media (max-width: 1200px) {
  .myfrostvaleapp-ink-features-grid {
    flex-wrap: wrap;
  }

  .myfrostvaleapp-ink-feature {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .myfrostvaleapp-ink-features {
    padding: 70px 0;
  }

  .myfrostvaleapp-ink-feature {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 28px 20px;
  }

  .myfrostvaleapp-ink-feature-icon {
    font-size: 2.2rem;
  }

  .myfrostvaleapp-ink-feature-title {
    font-size: 1.25rem;
  }

  .myfrostvaleapp-ink-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* ---------------------------------
   ABOUT SECTION – Myfrostvaleapp.ink
---------------------------------- */
.myfrostvaleapp-ink-about {
  padding: 90px 0;
  position: relative;
}

.myfrostvaleapp-ink-about .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Layout wrapper */
.myfrostvaleapp-ink-about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Text content */
.myfrostvaleapp-ink-about-content {
  flex: 1 1 50%;
  max-width: 520px;
}

.myfrostvaleapp-ink-about-text {
  color: #23383b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.myfrostvaleapp-ink-about-text strong {
  color: #4d3834;
}

/* Image side */
.myfrostvaleapp-ink-about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.myfrostvaleapp-ink-about-img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(77, 56, 52, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myfrostvaleapp-ink-about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 26px rgba(77, 56, 52, 0.25);
}

/* Title */
.myfrostvaleapp-ink-about .myfrostvaleapp-ink-section-title {
  margin-bottom: 1.5rem;
  color: #4d3834;
}

/* Responsive Design */
@media (max-width: 992px) {
  .myfrostvaleapp-ink-about-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .myfrostvaleapp-ink-about-content,
  .myfrostvaleapp-ink-about-image {
    max-width: 100%;
  }

  .myfrostvaleapp-ink-about-img {
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .myfrostvaleapp-ink-about {
    padding: 70px 0;
  }

  .myfrostvaleapp-ink-about-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .myfrostvaleapp-ink-about-img {
    max-width: 320px;
  }
}

/* ---------------------------------------------------
   REVIEWS SECTION – Myfrostvaleapp.ink
--------------------------------------------------- */

.myfrostvaleapp-ink-reviews {
  background-color: #fff5e4;
  padding: 90px 0;
}

.myfrostvaleapp-ink-reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
}

.myfrostvaleapp-ink-review {
  background: #ffe1bb;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myfrostvaleapp-ink-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.myfrostvaleapp-ink-quote {
  font-size: 2.8rem;
  color: #4d3834;
  opacity: 0.2;
  line-height: 0;
  margin-bottom: 1rem;
}

.myfrostvaleapp-ink-review-text {
  color: #23383b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.myfrostvaleapp-ink-reviewer {
  color: #4d3834;
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive adjustments for reviews */
@media (max-width: 992px) {
  .myfrostvaleapp-ink-reviews-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .myfrostvaleapp-ink-reviews-row {
    grid-template-columns: 1fr;
  }
  .myfrostvaleapp-ink-review {
    padding: 1.75rem 1.25rem;
  }
}


/* ---------------------------------------------------
   CONTACT SECTION – Myfrostvaleapp.ink (Updated)
--------------------------------------------------- */

.myfrostvaleapp-ink-contact {
  background-color: #402731;
  padding: 100px 0;
  text-align: center;
  color: #ffd5cc;
}

.myfrostvaleapp-ink-contact-sub {
  color: #ffd5cc;
  max-width: 680px;
  margin: 0.75rem auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Form container */
.myfrostvaleapp-ink-contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #301b23;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #ffac1a33;
}

/* Input fields */
.myfrostvaleapp-ink-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.myfrostvaleapp-ink-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ffac1a;
  border-radius: 10px;
  font-size: 1rem;
  color: #ffd5cc;
  background-color: #402731;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.myfrostvaleapp-ink-input:focus {
  border-color: #ffd5cc;
  background-color: #3b1f29;
  box-shadow: 0 0 0 4px rgba(255, 172, 26, 0.2);
  outline: none;
}

/* Submit button */
.myfrostvaleapp-ink-btn.primary.large {
  align-self: center;
  margin-top: 1rem;
  background-color: #ffac1a;
  color: #402731;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.myfrostvaleapp-ink-btn.primary.large:hover {
  background-color: #ffd5cc;
  color: #402731;
}

/* Contact Info Section */
.myfrostvaleapp-ink-contact-info {
  margin-top: 3rem;
  text-align: center;
  line-height: 1.8;
}

.myfrostvaleapp-ink-contact-info-title {
  font-size: 1.4rem;
  color: #ffac1a;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px #000;
}

.myfrostvaleapp-ink-contact-info-text {
  font-size: 1rem;
  color: #ffd5cc;
  margin: 6px 0;
}

.myfrostvaleapp-ink-contact-link {
  color: #ffac1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.myfrostvaleapp-ink-contact-link:hover {
  color: #ffd5cc;
}

.myfrostvaleapp-ink-contact-info-note {
  font-size: 0.9rem;
  color: #ffcfb8;
  margin-top: 12px;
}

/* Form Feedback */
.myfrostvaleapp-ink-form-message {
  margin-top: 1.25rem;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.myfrostvaleapp-ink-form-message.success {
  background-color: #e0ffe8;
  color: #204731;
  border: 1px solid #204731;
}

.myfrostvaleapp-ink-form-message.error {
  background-color: #ffe5e5;
  color: #742323;
  border: 1px solid #742323;
}

/* Error highlight */
.myfrostvaleapp-ink-input.error {
  border-color: #b33b3b;
  box-shadow: 0 0 0 4px rgba(179, 59, 59, 0.25);
}

/* Responsive design */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-contact {
    padding: 70px 0;
  }

  .myfrostvaleapp-ink-contact-form {
    padding: 2rem 1.25rem;
  }

  .myfrostvaleapp-ink-btn.primary.large {
    width: 100%;
    border-radius: 10px;
  }
}


/* ---------------------------------------
   FOOTER – Myfrostvaleapp.ink
--------------------------------------- */
.myfrostvaleapp-ink-footer {
  background-color: #4d3834;
  color: #ffe1bb;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.myfrostvaleapp-ink-footer-logo {
  background-color: #ffe1bb;
  max-width: 140px;
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
  border-radius:20px;
}

/* Navigation Links */
.myfrostvaleapp-ink-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.myfrostvaleapp-ink-footer-link {
  color: #ffe1bb;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.myfrostvaleapp-ink-footer-link:hover,
.myfrostvaleapp-ink-footer-link:focus {
  color: #ffffff;
  text-decoration: underline;
}

/* Disclaimer Section */
.myfrostvaleapp-ink-footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: rgba(255, 225, 187, 0.05);
  border: 1px solid rgba(255, 225, 187, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
}

.myfrostvaleapp-ink-footer-disclaimer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffe1bb;
  margin-bottom: 0.8rem;
}

.myfrostvaleapp-ink-footer-disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f4d9b4;
}

/* Footer Credits */
.myfrostvaleapp-ink-footer-note {
  font-size: 0.9rem;
  color: #f5d7b1;
  line-height: 1.6;
}

.myfrostvaleapp-ink-footer-credit {
  margin-top: 0.3rem;
}

.myfrostvaleapp-ink-footer-credit-link {
  color: #ffe1bb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: all 0.3s ease;
}

.myfrostvaleapp-ink-footer-credit-link:hover {
  color: #ffffff;
  border-bottom: 1px dotted #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-footer-nav {
    gap: 0.8rem;
  }

  .myfrostvaleapp-ink-footer-disclaimer {
    padding: 1.2rem;
  }

  .myfrostvaleapp-ink-footer-disclaimer-text {
    font-size: 0.9rem;
  }
}


/* ---------- Scroll To Top ---------- */
.myfrostvaleapp-ink-scroll {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #77c5e3, #2a5d7c);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
}
.myfrostvaleapp-ink-scroll.visible {
  opacity: 1;
  visibility: visible;
}
.myfrostvaleapp-ink-scroll:hover {
  background: linear-gradient(135deg, #2a5d7c, #77c5e3);
}

/* ---------- Popup ---------- */
.myfrostvaleapp-ink-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 99999;
}
.myfrostvaleapp-ink-popup.visible {
  opacity: 1;
  visibility: visible;
}
.myfrostvaleapp-ink-popup-inner {
  background: #fff;
  max-width: 420px;
  width: 90%;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.myfrostvaleapp-ink-popup-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #15394c;
  margin-bottom: 1rem;
}
.myfrostvaleapp-ink-popup-text {
  font-size: 1rem;
  color: #445963;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.myfrostvaleapp-ink-popup-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.myfrostvaleapp-ink-btn.primary {
  background: #2a5d7c;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.myfrostvaleapp-ink-btn.primary:hover {
  background: #174258;
}
.myfrostvaleapp-ink-btn.ghost {
  background: transparent;
  border: 1px solid #2a5d7c;
  color: #2a5d7c;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.myfrostvaleapp-ink-btn.ghost:hover {
  background: #2a5d7c;
  color: #fff;
}


/* ---------- Accessibility helpers ---------- */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid rgba(35,56,59,0.06);
  outline-offset: 2px;
  border-radius:10px;
}

/* ---------- Responsive breakpoints (tablet and up) ---------- */
@media (min-width: 640px){
  .myfrostvaleapp-ink-features-row{
    grid-template-columns: repeat(2, 1fr);
  }
  .myfrostvaleapp-ink-reviews-row{
    grid-template-columns: repeat(2, 1fr);
  }
  .myfrostvaleapp-ink-contact-grid{
    grid-template-columns: 1fr 1fr; /* name + email side-by-side */
  }
  .myfrostvaleapp-ink-contact-grid textarea {
    grid-column: 1 / -1;
  }
  .myfrostvaleapp-ink-about-inner{
    flex-direction:row;
    align-items:center;
  }
}

/* Desktop / wide screens */
@media (min-width: 992px){
  .myfrostvaleapp-ink-features-row{
    grid-template-columns: repeat(4, 1fr);
  }
  .myfrostvaleapp-ink-reviews-row{
    grid-template-columns: repeat(3, 1fr);
  }
  .myfrostvaleapp-ink-hero{
    padding: 96px 0 60px;
  }

  .myfrostvaleapp-ink-disclaimer{
    padding: 22px;
  }

  .myfrostvaleapp-ink-contact-grid{
    grid-template-columns: 1fr 1fr;
    align-items:start;
  }
}

/* Larger monitors */
@media (min-width: 1400px){
  .container { max-width: 1400px; }
  .myfrostvaleapp-ink-hero-inner { max-width: 1100px; }
}

/* ---------- Minor utilities ---------- */
.mt-4 { margin-top:1rem; }
.me-2 { margin-right:0.5rem; }
.hidden { display:none !important; }





/* -------------------------------
   LEGAL PAGES – Myfrostvaleapp.ink
-------------------------------- */
.myfrostvaleapp-ink-legal {
  background-color: #ffe1bb;
  color: #23383b;
  padding: 80px 0;
}

.myfrostvaleapp-ink-legal .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.myfrostvaleapp-ink-legal h2 {
  color: #4d3834;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  text-shadow: 1px 1px 0 #ffe1bb;
}

.myfrostvaleapp-ink-legal h3 {
  color: #4d3834;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.myfrostvaleapp-ink-legal p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.myfrostvaleapp-ink-legal a {
  color: #4d3834;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.myfrostvaleapp-ink-legal a:hover {
  color: #23383b;
}

/* Responsive */
@media (max-width: 768px) {
  .myfrostvaleapp-ink-legal {
    padding: 60px 0;
  }

  .myfrostvaleapp-ink-legal h2 {
    font-size: 2rem;
  }

  .myfrostvaleapp-ink-legal p {
    font-size: 1rem;
  }
}
