/* ---------------------------
   nordicjourny.com - Dragon Roll Game
   Enhanced Nordic Theme with Vibrant Colors & Animations
   Colors:
     primary: #1e40af (deep blue)
     accent: #f59e0b (vibrant amber)
     secondary: #8b5cf6 (purple)
     success: #10b981 (emerald)
     text: #0f172a (dark slate)
     bg: #f0f9ff (light blue)
     card-bg: #ffffff (white)
   Prefix for classes: nordic-*
   --------------------------- */

/* === RESET & BASE === */
:root {
  --bg: #f0f9ff;
  --primary: #1e40af;
  --accent: #f59e0b;
  --secondary: #8b5cf6;
  --success: #10b981;
  --text: #0f172a;
  --text-light: #475569;
  --card-bg: #ffffff;
  --border: #dbeafe;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* === HEADINGS === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1,
.nordic-hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
}

h2,
.nordic-section-title {
  font-size: 2.2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h1,
  .nordic-hero-title {
    font-size: 2.2rem;
  }
  h2,
  .nordic-section-title {
    font-size: 1.6rem;
  }
}

/* === NAVBAR === */
.nordic-nav {
  background: var(--card-bg);
  border-bottom: 2px solid var(--accent);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nordic-logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.nordic-logo:hover {
  transform: scale(1.08) rotate(2deg);
}

.nordic-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

.nordic-nav .nav-link:hover,
.nordic-nav .nav-link.active {
  color: var(--accent);
}

.nordic-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nordic-nav .nav-link:hover::after,
.nordic-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
  border: none;
  background: transparent;
  color: var(--primary);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .nordic-nav .navbar-collapse {
    background: var(--bg);
    border-top: 2px solid var(--accent);
    padding: 1rem 0;
  }

  .nordic-nav .nav-link {
    display: block;
    padding: 10px 0;
    margin: 4px 0;
  }

  .nordic-nav .nav-link::after {
    display: none;
  }
}

/* === HERO SECTION === */
.nordic-hero {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #8b5cf6 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nordic-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.nordic-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.nordic-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nordic-hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nordic-hero-sub {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.nordic-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.nordic-btn:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #fca5a5 100%);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.nordic-btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.nordic-btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
}

/* === DISCLAIMER SECTION (Home) === */
.nordic-disclaimer {
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
  padding: 70px 20px;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--secondary);
}

.nordic-disclaimer-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 64, 175, 0.1);
  animation: slideUp 0.6s ease;
  position: relative;
  overflow: hidden;
}

.nordic-disclaimer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--success));
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nordic-disclaimer-title {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.nordic-disclaimer-text {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.nordic-small-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.nordic-small-btn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* === GAME SECTION === */
.nordic-game-section {
  padding: 90px 20px;
  background: var(--bg);
}

.nordic-section-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease;
}

.nordic-game-wrap {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.nordic-video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.15);
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.nordic-video-ratio:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
}

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

/* === FEATURES GRID === */
.nordic-features {
  padding: 90px 20px;
  background: var(--card-bg);
}

.nordic-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.nordic-feature-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nordic-feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nordic-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
  border-color: var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
}

.nordic-feature-card:hover::before {
  top: -30%;
  right: -30%;
}

.nordic-feature-icon {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.nordic-feature-card:hover .nordic-feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.nordic-feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nordic-feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* === ABOUT SECTION === */
.nordic-about {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
}

.nordic-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nordic-about-image {
  text-align: center;
  animation: fadeInLeft 0.6s ease;
}

.nordic-about-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.2);
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.nordic-about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.nordic-about-text {
  animation: fadeInRight 0.6s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nordic-about-text h2 {
  margin-bottom: 25px;
}

.nordic-about-text p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.nordic-about-btn {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .nordic-about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === REVIEWS SECTION === */
.nordic-reviews {
  padding: 90px 20px;
  background: var(--card-bg);
}

.nordic-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.nordic-review-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nordic-review-card::before {
  content: "★★★★★";
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--accent);
  font-size: 1.2rem;
  opacity: 0.6;
}

.nordic-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
  border-color: var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
}

.nordic-review-text {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.nordic-reviewer {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* === CONTACT SECTION === */
.nordic-contact {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
}

.nordic-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.nordic-contact-info {
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  animation: fadeInLeft 0.6s ease;
}

.nordic-contact-heading {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nordic-contact-info p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.nordic-contact-form {
  background: var(--card-bg);
  border: 2px solid var(--secondary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
  animation: fadeInRight 0.6s ease;
}

.nordic-contact-form input,
.nordic-contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--bg);
}

.nordic-contact-form input:focus,
.nordic-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
  background: var(--card-bg);
}

@media (max-width: 768px) {
  .nordic-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* === FOOTER === */
.nordic-footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  padding: 70px 20px 35px;
}

.nordic-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.nordic-footer-logo {
  max-width: 130px;
  height: auto;
  margin-bottom: 35px;
  /* Remove forced inversion so the original logo colors are preserved.
     Inversion made the logo white which can become invisible on light/blurred
     footer cards (e.g. .nordic-footer-disclaimer). */
  filter: none;
  transition: transform 0.3s ease;
}

.nordic-footer-logo:hover {
  transform: scale(1.08);
}

.nordic-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
}

.nordic-footer-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  position: relative;
}

.nordic-footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nordic-footer-nav a:hover {
  color: var(--accent);
}

.nordic-footer-nav a:hover::after {
  width: 100%;
}

/* === FOOTER DISCLAIMER CARD === */
.nordic-footer-disclaimer {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(245, 158, 11, 0.4);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nordic-footer-disclaimer:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.nordic-footer-disclaimer h5 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nordic-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.nordic-footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.nordic-footer-copy a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nordic-footer-copy a:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* === POPUP DISCLAIMER (One-time, localStorage) === */
.nordic-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nordic-popup[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.nordic-popup-inner {
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  border-radius: 16px;
  padding: 50px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
  animation: popupSlideIn 0.5s ease;
  border: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.nordic-popup-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--success));
}

.nordic-popup-title {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-weight: 800;
}

.nordic-popup-text {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.nordic-popup-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.nordic-popup-btn {
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: var(--primary);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nordic-popup-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #fca5a5);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.nordic-popup-btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.nordic-popup-btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.9) translateY(-30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* === SCROLL TO TOP === */
.nordic-scroll {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  font-weight: 700;
}

.nordic-scroll:hover {
  background: linear-gradient(135deg, #fbbf24, #fca5a5);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* === LEGAL PAGES === */
.nordic-legal {
  background: linear-gradient(135deg, #f0f9ff 0%, #ede9fe 100%);
  color: var(--text);
  padding: 80px 20px;
  min-height: 60vh;
}

.nordic-legal-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease;
}

.nordic-legal-text {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 22px;
  text-align: justify;
}

.nordic-legal-subtitle {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 18px;
}

.nordic-legal a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
}

.nordic-legal a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 576px) {
  .nordic-hero-title {
    font-size: 2rem;
  }

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

  .nordic-popup-inner {
    padding: 35px 25px;
  }

  .nordic-popup-buttons {
    flex-direction: column;
  }

  .nordic-popup-btn,
  .nordic-popup-btn-secondary {
    width: 100%;
  }
}
