/* lumra-style.css - full responsive styling for lumra.art
   Palette:
     --bg: #1a1433
     --accent: #ffc765
     --text: #beaadb
     --btn-text: #1a1433
     --btn-hover: #beaadb
*/

/* ---------- Root and base ---------- */
:root{
  --bg: #1a1433;
  --accent: #ffc765;
  --text: #beaadb;
  --btn-text: #1a1433;
  --btn-hover: #beaadb;
  --container: 1180px;
  --radius: 14px;
  --glass: rgba(255,255,255,0.03);
  --muted: rgba(190,170,219,0.06);
  --shadow: 0 20px 50px rgba(6,4,12,0.6);
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%; margin:0; font-family:var(--font-sans); background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;}
a{color:var(--accent); text-decoration:none}
img{max-width:100%; height:auto; display:block}

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

:root {
  --bg: #1a1433;
  --accent: #ffc765;
  --text: #beaadb;
}

/* Global */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}

/* Navbar Base */
.lumra-navbar {
  background-color: rgba(26, 20, 51, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,199,101,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: flex;
}

/* Brand */
.lumra-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent) !important;
  font-weight: 800;
  text-transform: lowercase;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.lumra-logo {
  height: 80px;
  transition: transform 0.3s ease;
}

.lumra-logo:hover {
  transform: scale(1.05);
}

/* Toggler */
.lumra-toggler {
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 1.6rem;
}

.lumra-toggler:focus {
  box-shadow: none;
}

/* Nav Links */
.nav-link {
  color: var(--text) !important;
  font-weight: 600;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
}

.nav-link:hover {
  color: var(--accent) !important;
  background-color: rgba(255, 199, 101, 0.08);
}

.nav-link.active {
  color: var(--accent) !important;
  text-shadow: 0 0 6px rgba(255,199,101,0.7);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Collapse Menu (Mobile) */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(26, 20, 51, 0.97);
    border-radius: 0 0 12px 12px;
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
  }

  .nav-link:hover {
    background-color: rgba(255,199,101,0.1);
  }
}

/* ---------- HERO SECTION ---------- */
.lumra-art-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1433;
  background-image: 

    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
}

/* Add smooth dark blur overlay */
.lumra-art-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hero content container */
.lumra-art-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 2rem 1.5rem;
}

/* Hero title */
.lumra-art-hero-title {
  color: #ffc765;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  -webkit-text-stroke: 0.6px rgba(26, 20, 51, 0.3);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

/* Hero subtitle */
.lumra-art-hero-sub {
  color: #beaadb;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* Hero buttons */
.lumra-art-btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

/* Primary button */
.lumra-art-btn.primary {
  background: #ffc765;
  color: #1a1433;
  box-shadow: 0 4px 16px rgba(255, 199, 101, 0.3);
}
.lumra-art-btn.primary:hover {
  background: #beaadb;
  color: #1a1433;
  box-shadow: 0 4px 18px rgba(255, 199, 101, 0.45);
}

/* Ghost (outlined) button */
.lumra-art-btn.ghost {
  border: 2px solid #ffc765;
  color: #ffc765;
  background: transparent;
}
.lumra-art-btn.ghost:hover {
  background: rgba(255, 199, 101, 0.1);
  color: #beaadb;
  border-color: #beaadb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lumra-art-hero-title {
    font-size: 1.9rem;
  }
  .lumra-art-hero-sub {
    font-size: 1rem;
  }
}

/* ---------- DISCLAIMER CARD ---------- */
.lumra-art-disclaimer-card {
  position: relative;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top center, rgba(255, 199, 101, 0.08), rgba(26, 20, 51, 0.95));
  overflow: hidden;
}

/* Subtle light background or gradient motion */
.lumra-art-disclaimer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/texture-blur.png") center/cover no-repeat;
  opacity: 0.12;
  filter: blur(6px);
  z-index: 0;
}

/* Card container */
.lumra-art-disclaimer {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2.5rem 2rem;
  background: rgba(26, 20, 51, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  border: 1px solid rgba(255, 199, 101, 0.25);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(255, 199, 101, 0.05);
}

/* Title */
.lumra-art-disclaimer-title {
  color: #ffc765;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 199, 101, 0.3);
  -webkit-text-stroke: 0.6px rgba(26, 20, 51, 0.4);
}

/* Text */
.lumra-art-disclaimer-text {
  color: #beaadb;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  opacity: 0.95;
}

/* Small Button */
.lumra-art-small-btn {
  display: inline-block;
  background: #ffc765;
  color: #1a1433;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 199, 101, 0.35);
}
.lumra-art-small-btn:hover {
  background: #beaadb;
  color: #1a1433;
  box-shadow: 0 4px 20px rgba(255, 199, 101, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .lumra-art-disclaimer {
    padding: 2rem 1.2rem;
  }
  .lumra-art-disclaimer-title {
    font-size: 1.6rem;
  }
  .lumra-art-disclaimer-text {
    font-size: 0.95rem;
  }
}

/* ---------- Game iframe ratio (16:9) ---------- */
.lumra-art-play{padding:2.6rem 0}
.lumra-art-section-title{color:var(--accent); text-align:center; font-weight:800; -webkit-text-stroke:.6px rgba(10,6,12,0.14); margin-bottom:1rem}
.lumra-art-game-wrap{margin:0 auto}
.lumra-art-video-ratio{position:relative;width:100%; padding-top:56.25%; border-radius:12px; overflow:hidden; box-shadow:0 16px 50px rgba(0,0,0,0.55); border:1px solid rgba(255,199,101,0.04);}
.lumra-art-video-ratio iframe{position:absolute; inset:0; width:100%; height:100%; border:0; background:#000}

/* ---------- FEATURES SECTION ---------- */
.lumra-art-features {
  background: radial-gradient(circle at top center, rgba(26, 20, 51, 0.95), rgba(10, 8, 20, 1));
  padding: 6rem 1.5rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lumra-art-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/texture-blur.png") center/cover no-repeat;
  opacity: 0.08;
  filter: blur(8px);
  z-index: 0;
}

/* Section Title */
.lumra-art-section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffc765;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 15px rgba(255, 199, 101, 0.35);
}

/* Subtitle */
.lumra-art-section-subtitle {
  font-size: 1.05rem;
  color: #beaadb;
  max-width: 740px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Features Row */
.lumra-art-features-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.8rem;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

/* Each Card */
.lumra-art-feature {
  flex: 1 1 220px;
  max-width: 270px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(255, 199, 101, 0.15);
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.lumra-art-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 199, 101, 0.45);
  box-shadow: 0 16px 36px rgba(255, 199, 101, 0.25);
}

/* Icon */
.lumra-art-feature-icon {
  font-size: 2.2rem;
  color: #ffc765;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255, 199, 101, 0.4);
}

/* Title */
.lumra-art-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* Text */
.lumra-art-feature-text {
  font-size: 0.98rem;
  color: #cbb8ea;
  line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .lumra-art-feature {
    max-width: 45%;
  }
}
@media (max-width: 768px) {
  .lumra-art-feature {
    max-width: 100%;
  }
}


/* ---------- ABOUT SECTION ---------- */
.lumra-art-about {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 20, 51, 1), rgba(15, 10, 35, 1));
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.lumra-art-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 199, 101, 0.08), transparent 60%);
  z-index: 0;
}

/* Layout */
.lumra-art-about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

/* Content Side */
.lumra-art-about-content {
  flex: 1 1 480px;
}

.lumra-art-section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #ffc765;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(255, 199, 101, 0.35);
}

/* Paragraphs */
.lumra-art-about-text {
  color: #beaadb;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
  max-width: 600px;
}

/* Image Side */
.lumra-art-about-image {
  flex: 1 1 400px;
  text-align: center;
}
.lumra-art-about-img {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 199, 101, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lumra-art-about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 50px rgba(255, 199, 101, 0.2);
}

/* Button (reusing your brand colors) */
.lumra-art-btn.primary {
  display: inline-block;
  margin-top: 1.2rem;
  background: #ffc765;
  color: #1a1433;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.lumra-art-btn.primary:hover {
  background: #beaadb;
  color: #1a1433;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .lumra-art-about-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .lumra-art-about-content {
    flex: 1 1 100%;
  }
  .lumra-art-about-text {
    margin: 0 auto 1.2rem;
  }
  .lumra-art-btn.primary {
    margin-top: 1.6rem;
  }
}

/* ---------- REVIEWS SECTION ---------- */
.lumra-art-reviews {
  background: linear-gradient(180deg, rgba(26,20,51,1), rgba(15,10,35,1));
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.lumra-art-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,199,101,0.08), transparent 60%);
  z-index: 0;
}

.lumra-art-section-title {
  color: #ffc765;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-shadow: 0 0 12px rgba(255,199,101,0.35);
  margin-bottom: 0.5rem;
}

.lumra-art-section-sub {
  color: #beaadb;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

/* Reviews Grid */
.lumra-art-reviews-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  z-index: 2;
  position: relative;
}

/* Individual Review Card */
.lumra-art-review {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,199,101,0.08);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.lumra-art-review:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255,199,101,0.15);
}

/* Quote Mark */
.lumra-art-quote {
  font-size: 3rem;
  color: #ffc765;
  opacity: 0.4;
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Text and Reviewer */
.lumra-art-review-text {
  color: #beaadb;
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.lumra-art-reviewer {
  color: #ffc765;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Hover Glow Animation */
.lumra-art-review::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 120%, rgba(255,199,101,0.12), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lumra-art-review:hover::after {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .lumra-art-section-sub {
    font-size: 1rem;
  }
  .lumra-art-review {
    padding: 1.6rem 1.2rem;
  }
}

/* ---------- CONTACT SECTION ---------- */
.lumra-art-contact {
  background: linear-gradient(180deg, rgba(26,20,51,1) 0%, rgba(15,10,35,1) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lumra-art-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,199,101,0.08), transparent 70%);
  z-index: 0;
}

.lumra-art-contact .lumra-art-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* Title and Subtitle */
.lumra-art-section-title {
  color: #ffc765;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255,199,101,0.3);
  margin-bottom: 0.5rem;
}

.lumra-art-contact-sub {
  color: #beaadb;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  opacity: 0.9;
}

/* Centered Form */
.lumra-art-contact-form {
  display: flex;
  justify-content: center;
}

.lumra-contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1.2rem;
}

/* Inputs */
.lumra-input {
  width: 80%;
  max-width: 480px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,199,101,0.15);
  border-radius: 10px;
  color: #beaadb;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: all 0.25s ease;
  font-family: inherit;
}

.lumra-input::placeholder {
  color: rgba(190,170,219,0.7);
}

.lumra-input:focus {
  outline: none;
  border-color: #ffc765;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(255,199,101,0.1);
}

/* Button */
.lumra-art-btn.primary {
  background: #ffc765;
  color: #1a1433;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.lumra-art-btn.primary:hover {
  background: #beaadb;
  color: #1a1433;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255,199,101,0.15);
}

/* Large Button */
.lumra-art-btn.large {
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .lumra-input {
    width: 90%;
  }
  .lumra-art-contact {
    padding: 4rem 1rem;
  }
}


/* single-column for small screens */
@media (max-width:780px){ .lumra-grid{grid-template-columns:1fr} }

/* ---------- FOOTER ---------- */
.lumra-art-footer {
  background: linear-gradient(180deg, #100a24 0%, #1a1433 100%);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 199, 101, 0.12);
  position: relative;
}

.lumra-art-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,199,101,0.4), transparent);
  transform: translateX(-50%);
}

/* Brand Logo */
.lumra-art-footer-brand {
  display: inline-block;
  margin-bottom: 1.6rem;
}

.lumra-art-footer-logo {
  height: 70px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.lumra-art-footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Footer Nav Links */
.lumra-art-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.lumra-art-footer-link {
  color: #beaadb;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.lumra-art-footer-link:hover {
  color: #ffc765;
  text-shadow: 0 0 10px rgba(255,199,101,0.3);
}

/* Disclaimer */
.lumra-art-footer-disclaimer {
  max-width: 800px;
  margin: 1.6rem auto;
  font-size: 0.9rem;
  color: rgba(190,170,219,0.75);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,199,101,0.08);
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
  line-height: 1.6;
}

.lumra-art-footer-disclaimer strong {
  color: #ffc765;
  font-weight: 700;
}

/* Copyright and Credit */
.lumra-art-footer-note {
  color: rgba(190,170,219,0.6);
  font-size: 0.85rem;
  margin-top: 1.8rem;
  letter-spacing: 0.3px;
}

.lumra-art-footer-credit {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(190,170,219,0.65);
}

.lumra-art-footer-credit-link {
  color: #ffc765;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.lumra-art-footer-credit-link:hover {
  color: #beaadb;
  text-shadow: 0 0 8px rgba(255,199,101,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .lumra-art-footer-logo {
    height: 60px;
  }
  .lumra-art-footer {
    padding: 3rem 1rem 2rem;
  }
  .lumra-art-footer-disclaimer {
    font-size: 0.88rem;
    padding: 1rem 1.2rem;
  }
}

/* ---------- POPUP (Enhanced) ---------- */
.lumra-art-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px) brightness(0.6);
  background: rgba(26, 20, 51, 0.65); /* Dark purple tint overlay */
  z-index: 1200;
  transition: opacity 0.4s ease-in-out, backdrop-filter 0.4s ease;
}

.lumra-art-popup.visible {
  display: flex;
  opacity: 1;
}

/* Inner popup container */
.lumra-art-popup-inner {
  max-width: 700px;
  width: 90%;
  background: rgba(26, 20, 51, 0.75);
  border: 1px solid rgba(255, 199, 101, 0.25);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 0 35px rgba(255, 199, 101, 0.15), 0 0 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  animation: popupFadeIn 0.6s ease forwards;
}

/* Title */
.lumra-art-popup-title {
  color: #ffc765;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  -webkit-text-stroke: 0.5px rgba(26, 20, 51, 0.25);
}

/* Text */
.lumra-art-popup-text {
  color: #beaadb;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.8rem 0 1.6rem;
  opacity: 0.95;
}

/* CTA buttons */
.lumra-art-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lumra-art-popup-btn {
  background: #ffc765;
  color: #1a1433;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 199, 101, 0.25);
}

.lumra-art-popup-btn:hover {
  background: #beaadb;
  color: #1a1433;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 199, 101, 0.35);
}

/* Subtle entry animation */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- SCROLL TO TOP ---------- */
.lumra-art-scroll {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--btn-text);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 199, 101, 0.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 1200;
}

/* Visible state with fade and lift */
.lumra-art-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover / Active effects */
.lumra-art-scroll:hover {
  background: var(--btn-hover, #beaadb);
  color: #1a1433;
  box-shadow: 0 0 18px rgba(255, 199, 101, 0.45);
  transform: translateY(-4px);
}

.lumra-art-scroll:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(255, 199, 101, 0.3);
}



.lumra-art-scroll.visible {
  animation: lumra-glow 2.5s infinite ease-in-out;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .lumra-art-scroll {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    right: 18px;
    bottom: 18px;
  }
}

/* Focus and accessibility */
a:focus, button:focus, input:focus, textarea:focus{outline:3px solid rgba(255,199,101,0.14); outline-offset:3px}
@media print{
  body{background:white; color:#111}
  .lumra-art-header, .lumra-art-footer, .lumra-art-scroll, .lumra-art-popup{display:none}
  .lumra-art-legal, .lumra-art-disclaimer{box-shadow:none; border:0; background:transparent}
}

/* Small tweaks for very small devices */
@media (max-width:420px){
  .lumra-art-hero-title{font-size:1.5rem}
  .lumra-art-btn{padding:.6rem 1rem}
}



/* ---------- LEGAL PAGES ---------- */
.lumra-art-legal {
  background: var(--bg, #1a1433);
  padding: 5rem 1rem;
  color: var(--text, #beaadb);
  line-height: 1.7;
}

.lumra-art-legal-title {
  color: var(--accent, #ffc765);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  -webkit-text-stroke: 0.6px rgba(26, 20, 51, 0.2);
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.lumra-art-legal-heading {
  color: var(--accent, #ffc765);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  -webkit-text-stroke: 0.4px rgba(26, 20, 51, 0.3);
}

.lumra-art-legal-text {
  color: var(--text, #beaadb);
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  opacity: 0.95;
  text-align: justify;
}

.lumra-art-legal strong {
  color: var(--accent);
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lumra-art-legal {
    padding: 3rem 1rem;
  }
  .lumra-art-legal-title {
    font-size: 1.9rem;
  }
  .lumra-art-legal-heading {
    font-size: 1.2rem;
  }
}
