@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --runeloom-black: #0a0a0a;
  --runeloom-graphite: #1a1a1a;
  --runeloom-dark-gray: #2a2a2a;
  --runeloom-purple: #4a1a4a;
  --runeloom-deep-purple: #2d1b2e;
  --runeloom-gold: #d4af37;
  --runeloom-emerald: #3c9a5d;
  --runeloom-light-gold: #e6c659;
  --runeloom-light-emerald: #3d7a5d;
  --runeloom-text-light: #f0f0f0;
  --runeloom-text-muted: #b0b0b0;
  --runeloom-border: #3a3a3a;
  --runeloom-error: #d32f2f;
  --runeloom-success: #388e3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.runeloom-body {
  font-family: "Inter", sans-serif;
  background-color: var(--runeloom-black);
  color: var(--runeloom-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.runeloom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.runeloom-header {
  background-color: var(--runeloom-graphite);
  border-bottom: 1px solid var(--runeloom-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.runeloom-nav {
  padding: 1rem 0;
}

.runeloom-nav .runeloom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.runeloom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--runeloom-text-light);
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.runeloom-logo-rune {
  color: var(--runeloom-gold);
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.runeloom-nav-menu {
  display: flex;
  gap: 2rem;
}

.runeloom-nav-link {
  color: var(--runeloom-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.runeloom-nav-link:hover {
  color: var(--runeloom-gold);
}

.runeloom-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--runeloom-gold);
  transition: width 0.3s ease;
}

.runeloom-nav-link:hover::after {
  width: 100%;
}

.runeloom-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.runeloom-nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--runeloom-text-light);
  transition: all 0.3s ease;
}

.runeloom-hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--runeloom-deep-purple) 0%,
    var(--runeloom-graphite) 50%,
    var(--runeloom-black) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.runeloom-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/hero-bg.jpg") repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  animation: runeloom-rune-float 20s infinite linear;
}

@keyframes runeloom-rune-float {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100px);
  }
}

.runeloom-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.runeloom-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.runeloom-hero-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    45deg,
    var(--runeloom-gold),
    var(--runeloom-light-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.runeloom-hero-subtitle {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--runeloom-emerald);
  margin-bottom: 2rem;
  font-weight: 500;
}

.runeloom-hero-description {
  font-size: 1.2rem;
  color: var(--runeloom-text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.runeloom-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.runeloom-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.runeloom-btn-primary {
  background: linear-gradient(
    45deg,
    var(--runeloom-gold),
    var(--runeloom-light-gold)
  );
  color: var(--runeloom-black);
}

.runeloom-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.runeloom-btn-secondary {
  background: transparent;
  color: var(--runeloom-emerald);
  border-color: var(--runeloom-emerald);
}

.runeloom-btn-secondary:hover {
  background-color: var(--runeloom-emerald);
  color: var(--runeloom-text-light);
  transform: translateY(-2px);
}

.runeloom-section-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--runeloom-gold);
  position: relative;
}

.runeloom-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    45deg,
    var(--runeloom-emerald),
    var(--runeloom-light-emerald)
  );
}

.runeloom-featured {
  padding: 6rem 0;
  background-color: var(--runeloom-graphite);
}

.runeloom-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.runeloom-featured-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--runeloom-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.runeloom-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.runeloom-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.runeloom-featured-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
}

.runeloom-featured-card p {
  color: var(--runeloom-text-muted);
  line-height: 1.7;
}

.runeloom-latest {
  padding: 6rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.runeloom-article-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-graphite),
    var(--runeloom-dark-gray)
  );
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.runeloom-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 90, 61, 0.2);
}

.runeloom-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.runeloom-article-category {
  background-color: var(--runeloom-emerald);
  color: var(--runeloom-text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.runeloom-article-date {
  color: var(--runeloom-text-muted);
  font-size: 0.9rem;
}

.runeloom-article-card h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.runeloom-article-card p {
  color: var(--runeloom-text-muted);
  line-height: 1.6;
}

.runeloom-cta {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--runeloom-purple) 0%,
    var(--runeloom-deep-purple) 100%
  );
  text-align: center;
}

.runeloom-cta-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--runeloom-gold);
  margin-bottom: 1.5rem;
}

.runeloom-cta-content p {
  font-size: 1.2rem;
  color: var(--runeloom-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.runeloom-footer {
  background-color: var(--runeloom-graphite);
  border-top: 1px solid var(--runeloom-border);
  padding: 3rem 0 1.5rem;
}

.runeloom-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.runeloom-footer-brand {
  max-width: 300px;
}

.runeloom-footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.runeloom-footer-section h4 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.runeloom-footer-links {
  list-style: none;
}

.runeloom-footer-links li {
  margin-bottom: 0.5rem;
}

.runeloom-footer-links a {
  color: var(--runeloom-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.runeloom-footer-links a:hover {
  color: var(--runeloom-emerald);
}

.runeloom-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--runeloom-border);
  color: var(--runeloom-text-muted);
}

.runeloom-page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--runeloom-deep-purple) 0%,
    var(--runeloom-graphite) 100%
  );
  text-align: center;
}

.runeloom-page-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
}

.runeloom-page-subtitle {
  font-size: 1.3rem;
  color: var(--runeloom-emerald);
  margin-bottom: 1rem;
}

.runeloom-last-updated {
  color: var(--runeloom-text-muted);
  font-size: 0.9rem;
}

.runeloom-about-mission,
.runeloom-about-approach,
.runeloom-about-team {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-about-vision {
  padding: 4rem 0;
  background-color: var(--runeloom-graphite);
}

.runeloom-about-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--runeloom-gold);
  margin-bottom: 2rem;
}

.runeloom-about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--runeloom-text-light);
}

.runeloom-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.runeloom-vision-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--runeloom-border);
}

.runeloom-vision-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.runeloom-vision-card h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
}

.runeloom-approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.runeloom-approach-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--runeloom-gold);
  margin-bottom: 2rem;
  text-align: center;
}

.runeloom-team-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--runeloom-text-light);
}

.runeloom-contact-intro,
.runeloom-contact-community {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-contact-form-section {
  padding: 4rem 0;
  background-color: var(--runeloom-graphite);
}

.runeloom-contact-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--runeloom-gold);
  margin-bottom: 2rem;
}

.runeloom-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.runeloom-contact-form {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
}

.runeloom-form-group {
  margin-bottom: 1.5rem;
}

.runeloom-form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--runeloom-gold);
  font-weight: 500;
}

.runeloom-form-input,
.runeloom-form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--runeloom-border);
  border-radius: 6px;
  background-color: var(--runeloom-dark-gray);
  color: var(--runeloom-text-light);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.runeloom-form-input:focus,
.runeloom-form-textarea:focus {
  outline: none;
  border-color: var(--runeloom-gold);
}

.runeloom-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
}

.runeloom-contact-icon {
  font-size: 2rem;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.runeloom-contact-item h4 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 0.5rem;
}

.runeloom-contact-item a {
  color: var(--runeloom-emerald);
  text-decoration: none;
}

.runeloom-contact-item a:hover {
  color: var(--runeloom-light-emerald);
}

.runeloom-alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.runeloom-alert-success {
  background-color: rgba(56, 142, 60, 0.2);
  border: 1px solid var(--runeloom-success);
  color: var(--runeloom-success);
}

.runeloom-alert-error {
  background-color: rgba(211, 47, 47, 0.2);
  border: 1px solid var(--runeloom-error);
  color: var(--runeloom-error);
}

.runeloom-news-featured {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-news-recent {
  padding: 4rem 0;
  background-color: var(--runeloom-graphite);
}

.runeloom-news-categories {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-news-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.runeloom-news-featured-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
}

.runeloom-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.runeloom-news-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
  transition: transform 0.3s ease;
}

.runeloom-news-card:hover {
  transform: translateY(-3px);
}

.runeloom-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.runeloom-news-category {
  background-color: var(--runeloom-purple);
  color: var(--runeloom-text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.runeloom-news-date {
  color: var(--runeloom-text-muted);
  font-size: 0.9rem;
}

.runeloom-news-card h3,
.runeloom-news-featured-card h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.runeloom-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.runeloom-tag {
  background-color: var(--runeloom-emerald);
  color: var(--runeloom-text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
}

.runeloom-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.runeloom-category-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--runeloom-border);
  transition: transform 0.3s ease;
}

.runeloom-category-card:hover {
  transform: translateY(-5px);
}

.runeloom-category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.runeloom-category-card h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
}

.runeloom-reviews-featured {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-reviews-grid-section {
  padding: 4rem 0;
  background-color: var(--runeloom-graphite);
}

.runeloom-review-criteria {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-review-featured {
  max-width: 800px;
  margin: 0 auto;
}

.runeloom-review-featured-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
}

.runeloom-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.runeloom-review-rating {
  text-align: right;
}

.runeloom-rating-stars {
  color: var(--runeloom-gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.runeloom-rating-text {
  font-weight: 600;
  color: var(--runeloom-gold);
  font-size: 1.1rem;
}

.runeloom-review-highlights {
  margin-top: 1.5rem;
}

.runeloom-highlight {
  margin-bottom: 0.8rem;
  padding: 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--runeloom-gold);
  border-radius: 4px;
}

.runeloom-highlight strong {
  color: var(--runeloom-gold);
}

.runeloom-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.runeloom-review-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--runeloom-border);
  transition: transform 0.3s ease;
}

.runeloom-review-card:hover {
  transform: translateY(-3px);
}

.runeloom-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.runeloom-criteria-card {
  background: linear-gradient(
    145deg,
    var(--runeloom-dark-gray),
    var(--runeloom-graphite)
  );
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--runeloom-border);
}

.runeloom-criteria-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.runeloom-criteria-card h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  margin-bottom: 1rem;
}

.runeloom-legal-content {
  padding: 4rem 0;
  background-color: var(--runeloom-black);
}

.runeloom-legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.runeloom-legal-text h2 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-gold);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.runeloom-legal-text h3 {
  font-family: "Cinzel", serif;
  color: var(--runeloom-emerald);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
}

.runeloom-legal-text h4 {
  color: var(--runeloom-gold);
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
}

.runeloom-legal-text ul,
.runeloom-legal-text ol {
  margin: 1rem 0 1rem 2rem;
}

.runeloom-legal-text li {
  margin-bottom: 0.5rem;
}

.runeloom-legal-text strong {
  color: var(--runeloom-gold);
}

.runeloom-legal-text a {
  color: var(--runeloom-emerald);
  text-decoration: none;
}

.runeloom-legal-text a:hover {
  color: var(--runeloom-light-emerald);
  text-decoration: underline;
}

.runeloom-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--runeloom-graphite);
  border-top: 2px solid var(--runeloom-gold);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.runeloom-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.runeloom-cookie-content p {
  flex: 1;
  margin: 0;
  color: var(--runeloom-text-light);
}

.runeloom-cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.runeloom-cookie-link {
  color: var(--runeloom-emerald);
  text-decoration: none;
  font-size: 0.9rem;
}

.runeloom-cookie-link:hover {
  color: var(--runeloom-light-emerald);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .runeloom-nav-menu {
    display: none;
  }

  .runeloom-nav-toggle {
    display: flex;
  }

  .runeloom-hero-title {
    font-size: 2.5rem;
  }

  .runeloom-hero-subtitle {
    font-size: 1.2rem;
  }

  .runeloom-hero-description {
    font-size: 1rem;
  }

  .runeloom-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .runeloom-page-title {
    font-size: 2rem;
  }

  .runeloom-section-title {
    font-size: 2rem;
  }

  .runeloom-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .runeloom-news-featured-grid {
    grid-template-columns: 1fr;
  }

  .runeloom-review-header {
    flex-direction: column;
    gap: 1rem;
  }

  .runeloom-review-rating {
    text-align: left;
  }

  .runeloom-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .runeloom-cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .runeloom-hero-title {
    font-size: 2rem;
  }

  .runeloom-container {
    padding: 0 15px;
  }

  .runeloom-featured-grid,
  .runeloom-latest-grid,
  .runeloom-news-grid,
  .runeloom-reviews-grid {
    grid-template-columns: 1fr;
  }

  .runeloom-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
.runeloom-featured img {
  width: 100%;
}
img {
  width: 100%;
}
/* Активная ссылка в меню */
.runeloom-nav-link.is-active {
  color: var(--runeloom-gold);
  font-weight: 600;
}

.runeloom-nav-link.is-active::after {
  width: 100%;
}
/* Мобильное меню */
@media (max-width: 768px) {
  .runeloom-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--runeloom-graphite);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--runeloom-border);
  }

  .runeloom-nav-menu.active {
    display: flex;
  }

  /* Анимация бургер → крест */
  .runeloom-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .runeloom-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .runeloom-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .runeloom-nav-toggle span {
    transition: all 0.3s ease;
  }
}
