:root {
  --worldrune-deep-gray: #1a1a1a;
  --worldrune-gold: #d4af37;
  --worldrune-black-stone: #0d0d0d;
  --worldrune-turquoise: #40e0d0;
  --worldrune-light-gray: #2a2a2a;
  --worldrune-medium-gray: #3a3a3a;
  --worldrune-text-light: #e0e0e0;
  --worldrune-text-medium: #b0b0b0;
  --worldrune-text-dark: #808080;
  --worldrune-accent-dark: #1e5555;
  --worldrune-gold-dark: #b8941f;
  --worldrune-shadow: rgba(0, 0, 0, 0.8);
  --worldrune-shadow-light: rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: "Crimson Text", serif;
  background-color: var(--worldrune-deep-gray);
  color: var(--worldrune-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  line-height: 1.3;
}

.worldrune-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--worldrune-gold);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.worldrune-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.worldrune-logo-section {
  display: flex;
  align-items: center;
}

.worldrune-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--worldrune-gold);
  transition: all 0.3s ease;
}

.worldrune-logo-link:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px var(--worldrune-shadow);
}

.worldrune-logo-symbol {
  font-size: 2rem;
  margin-right: 0.5rem;
  text-shadow: 0 0 10px var(--worldrune-turquoise);
  animation: worldruneGlow 3s ease-in-out infinite alternate;
}

@keyframes worldruneGlow {
  from {
    text-shadow: 0 0 10px var(--worldrune-turquoise);
  }
  to {
    text-shadow: 0 0 20px var(--worldrune-turquoise),
      0 0 30px var(--worldrune-turquoise);
  }
}

.worldrune-logo-text {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.worldrune-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.worldrune-nav-link {
  color: var(--worldrune-text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.worldrune-nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--worldrune-gold),
    var(--worldrune-turquoise)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.worldrune-nav-link:hover {
  color: var(--worldrune-gold);
  transform: translateY(-2px);
}

.worldrune-nav-link:hover::before {
  width: 100%;
}

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

.worldrune-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--worldrune-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.worldrune-hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone) 0%,
    var(--worldrune-deep-gray) 50%,
    var(--worldrune-accent-dark) 100%
  );
}

.worldrune-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.worldrune-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-black-stone) 0%,
    transparent 50%,
    var(--worldrune-accent-dark) 100%
  );
  opacity: 0.8;
}

.worldrune-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      var(--worldrune-turquoise) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 50%,
      var(--worldrune-gold) 1px,
      transparent 1px
    );
  background-size: 60px 60px, 40px 40px;
  opacity: 0.1;
  animation: worldrunePatternFloat 20s linear infinite;
}

@keyframes worldrunePatternFloat {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-5px);
  }
  50% {
    transform: translateX(10px) translateY(-10px);
  }
  75% {
    transform: translateX(-5px) translateY(-15px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.worldrune-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.worldrune-hero-text {
  color: var(--worldrune-text-light);
}

.worldrune-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-hero-accent {
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-gold);
}

.worldrune-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
}

.worldrune-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.worldrune-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-hero-primary {
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.worldrune-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.worldrune-hero-secondary {
  background: transparent;
  color: var(--worldrune-turquoise);
  border: 2px solid var(--worldrune-turquoise);
}

.worldrune-hero-secondary:hover {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
}

.worldrune-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-hero-runes {
  position: relative;
  width: 300px;
  height: 300px;
}

.worldrune-rune-symbol {
  position: absolute;
  font-size: 3rem;
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-turquoise);
  animation: worldruneRuneFloat 6s ease-in-out infinite;
}

.worldrune-rune-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.worldrune-rune-2 {
  top: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

.worldrune-rune-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 3s;
}

.worldrune-rune-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes worldruneRuneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
  }
}

.worldrune-realms {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-realms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-realms-header {
  text-align: center;
  margin-bottom: 4rem;
}

.worldrune-realms-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-realms-subtitle {
  font-size: 1.1rem;
  color: var(--worldrune-text-medium);
  max-width: 600px;
  margin: 0 auto;
}

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

.worldrune-realm-card {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--worldrune-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-realm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-turquoise),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-realm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
}

.worldrune-realm-card:hover::before {
  opacity: 0.1;
}

.worldrune-realm-icon {
  font-size: 3rem;
  color: var(--worldrune-turquoise);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.worldrune-realm-title {
  font-size: 1.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-realm-description {
  color: var(--worldrune-text-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.worldrune-realm-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--worldrune-turquoise);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.worldrune-realm-link:hover {
  color: var(--worldrune-gold);
  transform: translateX(5px);
}

.worldrune-codex {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-light-gray),
    var(--worldrune-deep-gray)
  );
}

.worldrune-codex-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-codex-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-codex-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-codex-description {
  color: var(--worldrune-text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.worldrune-codex-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worldrune-codex-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--worldrune-text-light);
  font-weight: 500;
}

.worldrune-codex-feature i {
  color: var(--worldrune-turquoise);
  font-size: 1.2rem;
}

.worldrune-codex-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-codex-manuscript {
  background: linear-gradient(
    45deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 3rem;
  border-radius: 15px;
  border: 2px solid var(--worldrune-gold);
  position: relative;
  width: 300px;
  height: 400px;
  box-shadow: 0 10px 30px var(--worldrune-shadow);
}

.worldrune-manuscript-line {
  height: 2px;
  background: var(--worldrune-gold);
  margin: 2rem 0;
  opacity: 0.3;
}

.worldrune-manuscript-symbols {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.worldrune-manuscript-symbol {
  font-size: 2rem;
  color: var(--worldrune-turquoise);
  text-shadow: 0 0 10px var(--worldrune-turquoise);
  animation: worldrunePulse 2s ease-in-out infinite alternate;
}

@keyframes worldrunePulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.worldrune-latest {
  padding: 6rem 0;
  background: var(--worldrune-deep-gray);
}

.worldrune-latest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-latest-header {
  text-align: center;
  margin-bottom: 4rem;
}

.worldrune-latest-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-latest-subtitle {
  font-size: 1.1rem;
  color: var(--worldrune-text-medium);
  max-width: 600px;
  margin: 0 auto;
}

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

.worldrune-latest-item {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-latest-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-latest-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--worldrune-shadow);
  border-left-color: var(--worldrune-gold);
}

.worldrune-latest-item:hover::before {
  opacity: 0.05;
}

.worldrune-latest-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-latest-category {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.worldrune-latest-date {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-latest-item-title {
  font-size: 1.3rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.worldrune-latest-excerpt {
  color: var(--worldrune-text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.worldrune-latest-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--worldrune-turquoise);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.worldrune-latest-read-more:hover {
  color: var(--worldrune-gold);
  transform: translateX(5px);
}

.worldrune-newsletter {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-accent-dark)
  );
  padding: 4rem 0;
  border-top: 1px solid var(--worldrune-gold);
  border-bottom: 1px solid var(--worldrune-gold);
}

.worldrune-newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.worldrune-newsletter-title {
  font-size: 2rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-newsletter-description {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  font-size: 1.1rem;
}

.worldrune-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worldrune-newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--worldrune-shadow);
}

.worldrune-newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: var(--worldrune-light-gray);
  color: var(--worldrune-text-light);
  font-size: 1rem;
  outline: none;
}

.worldrune-newsletter-input::placeholder {
  color: var(--worldrune-text-dark);
}

.worldrune-newsletter-submit {
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.worldrune-newsletter-submit:hover {
  background: linear-gradient(
    135deg,
    var(--worldrune-gold-dark),
    var(--worldrune-gold)
  );
  transform: scale(1.05);
}

.worldrune-newsletter-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  display: none;
  font-weight: 500;
}

.worldrune-newsletter-message.success {
  background: rgba(64, 224, 208, 0.1);
  color: var(--worldrune-turquoise);
  border: 1px solid var(--worldrune-turquoise);
  display: block;
}

.worldrune-newsletter-message.error {
  background: rgba(255, 99, 71, 0.1);
  color: #ff6347;
  border: 1px solid #ff6347;
  display: block;
}

.worldrune-footer {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray)
  );
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--worldrune-gold);
}

.worldrune-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.worldrune-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worldrune-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.worldrune-footer-symbol {
  font-size: 1.5rem;
  color: var(--worldrune-turquoise);
  text-shadow: 0 0 10px var(--worldrune-turquoise);
}

.worldrune-footer-name {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--worldrune-gold);
}

.worldrune-footer-tagline {
  color: var(--worldrune-text-medium);
  line-height: 1.6;
  max-width: 300px;
}

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

.worldrune-footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.worldrune-footer-link {
  color: var(--worldrune-text-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}

.worldrune-footer-link:hover {
  color: var(--worldrune-turquoise);
  transform: translateX(5px);
}

.worldrune-footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  margin: 2rem 0 1rem;
}

.worldrune-footer-bottom {
  text-align: center;
}

.worldrune-footer-copyright {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray)
  );
  border-top: 2px solid var(--worldrune-gold);
  padding: 1.5rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px var(--worldrune-shadow);
}

.worldrune-cookie-notice.show {
  transform: translateY(0);
}

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

.worldrune-cookie-text {
  color: var(--worldrune-text-medium);
  line-height: 1.5;
  flex: 1;
  min-width: 300px;
}

.worldrune-cookie-actions {
  display: flex;
  gap: 1rem;
}

.worldrune-cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.worldrune-cookie-accept {
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone);
}

.worldrune-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.worldrune-cookie-decline {
  background: transparent;
  color: var(--worldrune-text-medium);
  border: 1px solid var(--worldrune-text-dark);
}

.worldrune-cookie-decline:hover {
  color: var(--worldrune-text-light);
  border-color: var(--worldrune-text-medium);
}

.worldrune-about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
  position: relative;
  overflow: hidden;
}

.worldrune-about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-about-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-about-accent {
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-gold);
}

.worldrune-about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
}

.worldrune-about-hero-runes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-about-rune-circle {
  position: relative;
  width: 250px;
  height: 250px;
  border: 2px solid var(--worldrune-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worldrune-about-rune {
  position: absolute;
  font-size: 2.5rem;
  color: var(--worldrune-turquoise);
  text-shadow: 0 0 15px var(--worldrune-turquoise);
  animation: worldruneCircleRotate 8s linear infinite;
}

.worldrune-about-rune:nth-child(1) {
  transform: rotate(0deg) translateY(-100px);
}
.worldrune-about-rune:nth-child(2) {
  transform: rotate(90deg) translateY(-100px);
}
.worldrune-about-rune:nth-child(3) {
  transform: rotate(180deg) translateY(-100px);
}
.worldrune-about-rune:nth-child(4) {
  transform: rotate(270deg) translateY(-100px);
}

@keyframes worldruneCircleRotate {
  from {
    transform: rotate(0deg) translateY(-100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateY(-100px) rotate(-360deg);
  }
}

.worldrune-mission {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-mission-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-mission-description {
  color: var(--worldrune-text-medium);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.worldrune-mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-mission-codex {
  position: relative;
  width: 200px;
  height: 280px;
}

.worldrune-codex-page {
  background: linear-gradient(
    45deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid var(--worldrune-gold);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--worldrune-shadow);
  transform: perspective(500px) rotateY(-15deg);
}

.worldrune-codex-symbols {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.worldrune-symbol-row {
  font-size: 1.5rem;
  color: var(--worldrune-turquoise);
  text-shadow: 0 0 10px var(--worldrune-turquoise);
  letter-spacing: 0.5rem;
  animation: worldruneSymbolGlow 3s ease-in-out infinite alternate;
}

@keyframes worldruneSymbolGlow {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

.worldrune-pillars {
  padding: 6rem 0;
  background: var(--worldrune-deep-gray);
}

.worldrune-pillars-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.worldrune-pillars-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

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

.worldrune-pillar {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
  border-color: var(--worldrune-gold);
}

.worldrune-pillar:hover::before {
  opacity: 0.1;
}

.worldrune-pillar-icon {
  font-size: 3rem;
  color: var(--worldrune-turquoise);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.worldrune-pillar-title {
  font-size: 1.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-pillar-description {
  color: var(--worldrune-text-medium);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.worldrune-journey {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-light-gray),
    var(--worldrune-deep-gray)
  );
}

.worldrune-journey-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-journey-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-journey-description {
  color: var(--worldrune-text-medium);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.worldrune-journey-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.worldrune-journey-stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border-radius: 10px;
  border: 1px solid var(--worldrune-turquoise);
}

.worldrune-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--worldrune-gold);
  font-family: "Cinzel", serif;
}

.worldrune-stat-label {
  font-size: 0.9rem;
  color: var(--worldrune-text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.worldrune-journey-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.worldrune-timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border-radius: 10px;
  border-left: 4px solid var(--worldrune-turquoise);
}

.worldrune-timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--worldrune-gold);
  font-family: "Cinzel", serif;
  min-width: 60px;
}

.worldrune-timeline-event {
  color: var(--worldrune-text-medium);
  font-weight: 500;
}

.worldrune-vision {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
}

.worldrune-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.worldrune-vision-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-vision-description {
  color: var(--worldrune-text-medium);
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.worldrune-vision-goals {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.worldrune-vision-goal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
  transition: all 0.3s ease;
  min-width: 200px;
}

.worldrune-vision-goal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--worldrune-shadow);
}

.worldrune-vision-goal i {
  font-size: 2.5rem;
  color: var(--worldrune-turquoise);
}

.worldrune-vision-goal span {
  color: var(--worldrune-text-light);
  font-weight: 600;
  text-align: center;
}

.worldrune-contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray)
  );
  position: relative;
}

.worldrune-contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.worldrune-contact-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-contact-accent {
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-gold);
}

.worldrune-contact-hero-subtitle {
  font-size: 1.2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.worldrune-contact-form-section {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.worldrune-contact-info-title {
  font-size: 2rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-contact-info-description {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.worldrune-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.worldrune-contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border-radius: 10px;
  border-left: 4px solid var(--worldrune-turquoise);
}

.worldrune-contact-method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--worldrune-turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--worldrune-black-stone);
  font-size: 1.2rem;
}

.worldrune-contact-method-title {
  font-size: 1.1rem;
  color: var(--worldrune-gold);
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.worldrune-contact-method-detail {
  color: var(--worldrune-text-light);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.worldrune-contact-method-note {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-contact-form {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
  box-shadow: 0 10px 30px var(--worldrune-shadow);
}

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

.worldrune-contact-label {
  display: block;
  color: var(--worldrune-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "Cinzel", serif;
}

.worldrune-contact-input,
.worldrune-contact-select,
.worldrune-contact-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--worldrune-text-dark);
  border-radius: 5px;
  background: var(--worldrune-light-gray);
  color: var(--worldrune-text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.worldrune-contact-input:focus,
.worldrune-contact-select:focus,
.worldrune-contact-textarea:focus {
  outline: none;
  border-color: var(--worldrune-turquoise);
  box-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
}

.worldrune-contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.worldrune-contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.worldrune-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.worldrune-contact-form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  display: none;
  font-weight: 500;
}

.worldrune-contact-form-message.success {
  background: rgba(64, 224, 208, 0.1);
  color: var(--worldrune-turquoise);
  border: 1px solid var(--worldrune-turquoise);
  display: block;
}

.worldrune-contact-form-message.error {
  background: rgba(255, 99, 71, 0.1);
  color: #ff6347;
  border: 1px solid #ff6347;
  display: block;
}

.worldrune-collaboration {
  padding: 6rem 0;
  background: var(--worldrune-deep-gray);
}

.worldrune-collaboration-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.worldrune-collaboration-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-collaboration-subtitle {
  font-size: 1.1rem;
  color: var(--worldrune-text-medium);
  margin-bottom: 3rem;
}

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

.worldrune-collaboration-card {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  text-align: center;
}

.worldrune-collaboration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
  border-color: var(--worldrune-gold);
}

.worldrune-collaboration-icon {
  font-size: 3rem;
  color: var(--worldrune-turquoise);
  margin-bottom: 1.5rem;
}

.worldrune-collaboration-card-title {
  font-size: 1.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
}

.worldrune-collaboration-card-description {
  color: var(--worldrune-text-medium);
  line-height: 1.6;
}

.worldrune-connect-community {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-light-gray),
    var(--worldrune-accent-dark)
  );
}

.worldrune-connect-community-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.worldrune-connect-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-connect-description {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.worldrune-connect-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.worldrune-connect-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--worldrune-text-light);
  font-weight: 500;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border-radius: 25px;
  border: 1px solid var(--worldrune-turquoise);
}

.worldrune-connect-benefit i {
  color: var(--worldrune-turquoise);
}

.worldrune-connect-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.worldrune-connect-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.worldrune-news-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
  position: relative;
}

.worldrune-news-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-news-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-news-accent {
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-gold);
}

.worldrune-news-hero-subtitle {
  font-size: 1.2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
}

.worldrune-news-hero-runes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-news-rune-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.worldrune-news-rune {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border: 2px solid var(--worldrune-turquoise);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--worldrune-gold);
  text-shadow: 0 0 15px var(--worldrune-turquoise);
  animation: worldruneNewsFloat 4s ease-in-out infinite alternate;
}

.worldrune-news-rune:nth-child(1) {
  animation-delay: 0s;
}
.worldrune-news-rune:nth-child(2) {
  animation-delay: 1s;
}
.worldrune-news-rune:nth-child(3) {
  animation-delay: 2s;
}

@keyframes worldruneNewsFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.worldrune-featured-news {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-featured-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-featured-news-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

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

.worldrune-featured-article {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-featured-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-turquoise),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-featured-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
}

.worldrune-featured-article:hover::before {
  opacity: 0.1;
}

.worldrune-featured-article-content {
  position: relative;
  z-index: 2;
}

.worldrune-featured-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.worldrune-featured-category {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.worldrune-featured-date {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-featured-article-title {
  font-size: 1.8rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.worldrune-featured-article-excerpt {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.worldrune-featured-article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.worldrune-tag {
  background: var(--worldrune-light-gray);
  color: var(--worldrune-text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--worldrune-text-dark);
}

.worldrune-news-categories {
  padding: 6rem 0;
  background: var(--worldrune-deep-gray);
}

.worldrune-news-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-news-categories-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

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

.worldrune-news-category {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-news-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-news-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
  border-color: var(--worldrune-gold);
}

.worldrune-news-category:hover::before {
  opacity: 0.1;
}

.worldrune-category-icon {
  font-size: 3rem;
  color: var(--worldrune-turquoise);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.worldrune-category-title {
  font-size: 1.3rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-category-description {
  color: var(--worldrune-text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.worldrune-category-count {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.worldrune-recent-news {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-light-gray),
    var(--worldrune-deep-gray)
  );
}

.worldrune-recent-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-recent-news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.worldrune-recent-news-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-recent-news-subtitle {
  font-size: 1.1rem;
  color: var(--worldrune-text-medium);
}

.worldrune-recent-news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.worldrune-news-item {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-news-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px var(--worldrune-shadow);
  border-left-color: var(--worldrune-gold);
}

.worldrune-news-item:hover::before {
  opacity: 0.05;
}

.worldrune-news-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-news-item-category {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.worldrune-news-item-date {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-news-item-title {
  font-size: 1.4rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.worldrune-news-item-excerpt {
  color: var(--worldrune-text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.worldrune-news-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-news-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.worldrune-news-tag {
  background: var(--worldrune-light-gray);
  color: var(--worldrune-text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid var(--worldrune-text-dark);
}

.worldrune-news-item-read-time {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.worldrune-news-archive {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
  text-align: center;
}

.worldrune-news-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-news-archive-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-news-archive-description {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.worldrune-archive-stat {
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
}

.worldrune-reviews-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
  position: relative;
}

.worldrune-reviews-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.worldrune-reviews-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-reviews-accent {
  color: var(--worldrune-gold);
  text-shadow: 0 0 20px var(--worldrune-gold);
}

.worldrune-reviews-hero-subtitle {
  font-size: 1.2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
}

.worldrune-reviews-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.worldrune-reviews-codex {
  position: relative;
  width: 300px;
  height: 200px;
}

.worldrune-codex-pages {
  position: relative;
  width: 100%;
  height: 100%;
}

.worldrune-codex-page-item {
  position: absolute;
  width: 120px;
  height: 160px;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border: 2px solid var(--worldrune-gold);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 20px var(--worldrune-shadow);
}

.worldrune-codex-page-item:first-child {
  top: 0;
  left: 0;
  transform: rotate(-10deg);
}

.worldrune-codex-page-item:last-child {
  top: 20px;
  right: 0;
  transform: rotate(10deg);
}

.worldrune-page-rating {
  color: var(--worldrune-gold);
  font-size: 1rem;
}

.worldrune-page-symbols {
  color: var(--worldrune-turquoise);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--worldrune-turquoise);
}

.worldrune-featured-reviews {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-featured-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-featured-reviews-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

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

.worldrune-featured-review {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-featured-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-turquoise),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-featured-review:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
}

.worldrune-featured-review:hover::before {
  opacity: 0.1;
}

.worldrune-featured-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.worldrune-featured-review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.worldrune-featured-review-genre {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.worldrune-featured-review-date {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-featured-review-rating {
  text-align: right;
}

.worldrune-rating-stars {
  color: var(--worldrune-gold);
  margin-bottom: 0.5rem;
}

.worldrune-rating-score {
  color: var(--worldrune-text-light);
  font-weight: 700;
  font-size: 1.1rem;
}

.worldrune-featured-review-title {
  font-size: 1.8rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.worldrune-featured-review-excerpt {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.worldrune-featured-review-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 2;
}

.worldrune-review-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: var(--worldrune-light-gray);
  border-radius: 8px;
  border-left: 3px solid var(--worldrune-turquoise);
}

.worldrune-highlight-label {
  color: var(--worldrune-text-light);
  font-weight: 600;
}

.worldrune-highlight-score {
  color: var(--worldrune-gold);
  font-weight: 700;
}

.worldrune-review-categories {
  padding: 6rem 0;
  background: var(--worldrune-deep-gray);
}

.worldrune-review-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-review-categories-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

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

.worldrune-review-category {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-review-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-review-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
  border-color: var(--worldrune-gold);
}

.worldrune-review-category:hover::before {
  opacity: 0.1;
}

.worldrune-category-symbol {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.worldrune-category-name {
  font-size: 1.3rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-category-desc {
  color: var(--worldrune-text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.worldrune-category-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.worldrune-category-count {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.worldrune-category-avg {
  color: var(--worldrune-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.worldrune-recent-reviews {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-light-gray),
    var(--worldrune-deep-gray)
  );
}

.worldrune-recent-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.worldrune-recent-reviews-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 3rem;
  text-align: center;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-recent-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.worldrune-review-item {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.worldrune-review-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--worldrune-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.worldrune-review-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px var(--worldrune-shadow);
  border-left-color: var(--worldrune-gold);
}

.worldrune-review-item:hover::before {
  opacity: 0.05;
}

.worldrune-review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.worldrune-review-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.worldrune-review-item-genre {
  background: var(--worldrune-turquoise);
  color: var(--worldrune-black-stone);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.worldrune-review-item-date {
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
}

.worldrune-review-item-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.worldrune-mini-stars {
  color: var(--worldrune-gold);
  font-size: 0.9rem;
}

.worldrune-mini-score {
  color: var(--worldrune-text-light);
  font-weight: 700;
}

.worldrune-review-item-title {
  font-size: 1.4rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.worldrune-review-item-excerpt {
  color: var(--worldrune-text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.worldrune-review-item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.worldrune-review-tag {
  background: var(--worldrune-light-gray);
  color: var(--worldrune-text-light);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid var(--worldrune-text-dark);
}

.worldrune-review-methodology {
  padding: 6rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-accent-dark)
  );
}

.worldrune-review-methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.worldrune-methodology-title {
  font-size: 2.5rem;
  color: var(--worldrune-gold);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-methodology-description {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.worldrune-criterion {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-light-gray)
  );
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-turquoise);
  transition: all 0.3s ease;
}

.worldrune-criterion:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--worldrune-shadow);
  border-color: var(--worldrune-gold);
}

.worldrune-criterion-icon {
  font-size: 3rem;
  color: var(--worldrune-turquoise);
  margin-bottom: 1.5rem;
}

.worldrune-criterion-title {
  font-size: 1.3rem;
  color: var(--worldrune-gold);
  margin-bottom: 1rem;
}

.worldrune-criterion-description {
  color: var(--worldrune-text-medium);
  line-height: 1.6;
}

.worldrune-legal-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-deep-gray)
  );
  position: relative;
}

.worldrune-legal-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.worldrune-legal-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--worldrune-gold);
  text-shadow: 2px 2px 4px var(--worldrune-shadow);
}

.worldrune-legal-hero-subtitle {
  font-size: 1.2rem;
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.worldrune-legal-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--worldrune-text-dark);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.worldrune-legal-content {
  padding: 4rem 0;
  background: linear-gradient(
    45deg,
    var(--worldrune-deep-gray),
    var(--worldrune-light-gray)
  );
}

.worldrune-legal-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.worldrune-legal-navigation {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-gold);
  position: sticky;
  top: 2rem;
}

.worldrune-legal-nav-title {
  font-size: 1.2rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  font-family: "Cinzel", serif;
}

.worldrune-legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.worldrune-legal-nav-link {
  color: var(--worldrune-text-medium);
  text-decoration: none;
  padding: 0.5rem 0;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.worldrune-legal-nav-link:hover {
  color: var(--worldrune-turquoise);
  transform: translateX(5px);
}

.worldrune-legal-text {
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--worldrune-turquoise);
  box-shadow: 0 10px 30px var(--worldrune-shadow);
}

.worldrune-legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--worldrune-text-dark);
}

.worldrune-legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.worldrune-legal-section-title {
  font-size: 2rem;
  color: var(--worldrune-gold);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px var(--worldrune-shadow);
}

.worldrune-legal-subsection-title {
  font-size: 1.3rem;
  color: var(--worldrune-turquoise);
  margin: 2rem 0 1rem;
  font-family: "Cinzel", serif;
}

.worldrune-legal-paragraph {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.worldrune-legal-list {
  color: var(--worldrune-text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.worldrune-legal-list li {
  margin-bottom: 0.5rem;
}

.worldrune-legal-highlight {
  background: linear-gradient(
    135deg,
    var(--worldrune-accent-dark),
    var(--worldrune-light-gray)
  );
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--worldrune-gold);
  margin: 2rem 0;
}

.worldrune-legal-highlight-title {
  font-size: 1.1rem;
  color: var(--worldrune-gold);
  margin-bottom: 0.5rem;
  font-family: "Cinzel", serif;
}

.worldrune-legal-highlight-text {
  color: var(--worldrune-text-light);
  line-height: 1.6;
  margin: 0;
}

.worldrune-legal-contact-info {
  background: var(--worldrune-light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--worldrune-turquoise);
  margin: 2rem 0;
}

.worldrune-cookie-duration-table {
  background: var(--worldrune-light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.worldrune-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--worldrune-text-dark);
}

.worldrune-cookie-row:last-child {
  border-bottom: none;
}

.worldrune-cookie-type {
  color: var(--worldrune-text-light);
  font-weight: 600;
}

.worldrune-cookie-duration {
  color: var(--worldrune-turquoise);
  font-weight: 500;
}

@media (max-width: 768px) {
  .worldrune-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
      135deg,
      var(--worldrune-black-stone),
      var(--worldrune-deep-gray)
    );
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--worldrune-gold);
    box-shadow: 0 4px 20px var(--worldrune-shadow);
  }

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

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

  .worldrune-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .worldrune-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .worldrune-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .worldrune-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .worldrune-hero-actions {
    justify-content: center;
  }

  .worldrune-hero-visual {
    order: -1;
  }

  .worldrune-hero-runes {
    width: 200px;
    height: 200px;
  }

  .worldrune-realms-grid,
  .worldrune-pillars-grid,
  .worldrune-news-categories-grid,
  .worldrune-review-categories-grid,
  .worldrune-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .worldrune-codex-content,
  .worldrune-mission-grid,
  .worldrune-journey-content,
  .worldrune-about-hero-container,
  .worldrune-contact-form-grid,
  .worldrune-news-hero-container,
  .worldrune-reviews-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .worldrune-newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .worldrune-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .worldrune-journey-stats {
    grid-template-columns: 1fr;
  }

  .worldrune-vision-goals {
    flex-direction: column;
    align-items: center;
  }

  .worldrune-connect-benefits {
    flex-direction: column;
    align-items: center;
  }

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

  .worldrune-legal-content-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .worldrune-legal-navigation {
    position: static;
  }

  .worldrune-legal-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .worldrune-legal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .worldrune-methodology-criteria {
    grid-template-columns: 1fr;
  }

  .worldrune-news-archive-stats {
    grid-template-columns: 1fr;
  }

  .worldrune-cookie-row {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .worldrune-hero-title,
  .worldrune-about-hero-title,
  .worldrune-contact-hero-title,
  .worldrune-news-hero-title,
  .worldrune-reviews-hero-title,
  .worldrune-legal-hero-title {
    font-size: 2rem;
  }

  .worldrune-realms-title,
  .worldrune-codex-title,
  .worldrune-latest-title,
  .worldrune-mission-title,
  .worldrune-pillars-title,
  .worldrune-journey-title,
  .worldrune-vision-title,
  .worldrune-collaboration-title,
  .worldrune-connect-title,
  .worldrune-featured-news-title,
  .worldrune-news-categories-title,
  .worldrune-recent-news-title,
  .worldrune-news-archive-title,
  .worldrune-featured-reviews-title,
  .worldrune-review-categories-title,
  .worldrune-recent-reviews-title,
  .worldrune-methodology-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .worldrune-nav-container {
    padding: 0 1rem;
  }

  .worldrune-hero-content,
  .worldrune-realms-container,
  .worldrune-codex-container,
  .worldrune-latest-container,
  .worldrune-newsletter-container,
  .worldrune-footer-content,
  .worldrune-mission-container,
  .worldrune-pillars-container,
  .worldrune-journey-container,
  .worldrune-vision-container,
  .worldrune-about-hero-container,
  .worldrune-collaboration-container,
  .worldrune-connect-community-container,
  .worldrune-contact-hero-container,
  .worldrune-contact-form-container,
  .worldrune-news-hero-container,
  .worldrune-featured-news-container,
  .worldrune-news-categories-container,
  .worldrune-recent-news-container,
  .worldrune-news-archive-container,
  .worldrune-reviews-hero-container,
  .worldrune-featured-reviews-container,
  .worldrune-review-categories-container,
  .worldrune-recent-reviews-container,
  .worldrune-review-methodology-container,
  .worldrune-legal-hero-container,
  .worldrune-legal-content-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .worldrune-hero-title,
  .worldrune-about-hero-title,
  .worldrune-contact-hero-title,
  .worldrune-news-hero-title,
  .worldrune-reviews-hero-title,
  .worldrune-legal-hero-title {
    font-size: 1.8rem;
  }

  .worldrune-hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .worldrune-realm-card,
  .worldrune-pillar,
  .worldrune-latest-item,
  .worldrune-collaboration-card,
  .worldrune-news-category,
  .worldrune-review-category,
  .worldrune-criterion {
    padding: 2rem 1.5rem;
  }

  .worldrune-contact-form,
  .worldrune-legal-text {
    padding: 2rem 1.5rem;
  }

  .worldrune-newsletter-input-group {
    flex-direction: column;
  }

  .worldrune-newsletter-input,
  .worldrune-newsletter-submit {
    border-radius: 8px;
  }
}

.worldrune-logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 10px var(--worldrune-turquoise));
  transition: transform 0.3s ease;
}

.worldrune-logo-link:hover .worldrune-logo-img {
  transform: rotate(-5deg) scale(1.05);
}

.cta-link {
  background: linear-gradient(
    135deg,
    var(--worldrune-gold),
    var(--worldrune-gold-dark)
  );
  color: var(--worldrune-black-stone) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: linear-gradient(
    135deg,
    var(--worldrune-gold-dark),
    var(--worldrune-gold)
  );
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
.worldrune-nav-link.active {
  color: var(--worldrune-gold);
  text-shadow: 0 0 10px var(--worldrune-gold);
}

.worldrune-nav-link.active::before {
  width: 100%;
}
/* === Фон секции: полноэкранная картинка + параллакс === */
.worldrune-hero {
  /* убираем прежний градиент у секции — он теперь в overlay */
  background: none;
}

.worldrune-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  /* лёгкий параллакс */
  background-attachment: fixed;
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.05);
  z-index: 0;
}

/* виньетка сверху фона, чтобы текст читался лучше */
.worldrune-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 40%,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* твои overlay/pattern уже существуют, поднимем их над фоном */
.worldrune-hero-background {
  z-index: 2;
}
.worldrune-hero-overlay {
  background: linear-gradient(
    45deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(30, 85, 85, 0.65) 100%
  );
}

/* Контент всегда поверх */
.worldrune-hero-content {
  z-index: 3;
}

/* === Карточка визуала справа === */
.worldrune-visual-card {
  position: relative;
  width: min(520px, 92vw);
  aspect-ratio: 4/5;
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(64, 224, 208, 0.08)
  );
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px var(--worldrune-shadow),
    inset 0 0 0 1px rgba(64, 224, 208, 0.15);
  overflow: hidden;
}

.worldrune-visual-card::before {
  /* неоновая кайма */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(
    from 0deg,
    rgba(64, 224, 208, 0),
    rgba(64, 224, 208, 0.35),
    rgba(212, 175, 55, 0.35),
    rgba(64, 224, 208, 0.35),
    rgba(64, 224, 208, 0)
  );
  filter: blur(14px);
  opacity: 0.55;
  z-index: 0;
  animation: wrNeon 10s linear infinite;
}

@keyframes wrNeon {
  to {
    transform: rotate(360deg);
  }
}

.worldrune-hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  /* лёгкий “дышащий” эффект */
  animation: wrBreath 7s ease-in-out infinite;
}

@keyframes wrBreath {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
  50% {
    transform: scale(1.015);
    filter: saturate(1.05) brightness(1.03);
  }
}

.worldrune-visual-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(64, 224, 208, 0.45);
  color: var(--worldrune-text-light);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* мобильные фиксы: отключаем attachment: fixed (iOS) */
@media (max-width: 768px) {
  .worldrune-hero::before {
    background-attachment: scroll;
  }
  .worldrune-visual-card {
    width: min(560px, 90vw);
    aspect-ratio: 3/4;
  }
}
/* Постер сверху карточки */
.worldrune-realm-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1.25rem 0;
  background: linear-gradient(
    135deg,
    var(--worldrune-black-stone),
    var(--worldrune-medium-gray)
  );
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px var(--worldrune-shadow);
  transform-style: preserve-3d;
}

.worldrune-realm-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
  filter: contrast(1.05) saturate(1.05);
}

/* неоновый мягкий ореол */
.worldrune-realm-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(
    60% 60% at 70% 30%,
    rgba(64, 224, 208, 0.22) 0%,
    rgba(212, 175, 55, 0.18) 35%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: screen;
}

.worldrune-realm-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(64, 224, 208, 0.6);
  color: var(--worldrune-text-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Ховер-эффект карточки с постером */
.worldrune-realm-card:hover .worldrune-realm-poster img {
  transform: scale(1.06);
}

.worldrune-realm-card:hover .worldrune-realm-poster {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  border-color: var(--worldrune-gold);
}

/* Поддержка тёмной тематики проекта */
.worldrune-realm-card {
  /* чуть больше “воздуха” для постера */
  padding-top: 2rem;
}

/* Мобилки: сохраняем соотношение и читаемость */
@media (max-width: 768px) {
  .worldrune-realm-poster {
    aspect-ratio: 3/2;
  }
}
.worldrune-footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.worldrune-footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(64, 224, 208, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.worldrune-footer-logo-link:hover .worldrune-footer-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
}
/* Постер сверху карточки */
.worldrune-pillar-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 30px var(--worldrune-shadow);
  background: var(--worldrune-black-stone);
}

.worldrune-pillar-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.worldrune-pillar:hover .worldrune-pillar-poster img {
  transform: scale(1.08);
}

/* бейдж */
.worldrune-pillar-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--worldrune-turquoise);
  border-radius: 8px;
  color: var(--worldrune-text-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
/* Постер вместо иконки */
.worldrune-category-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 25px var(--worldrune-shadow);
  background: var(--worldrune-black-stone);
}

.worldrune-category-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.worldrune-review-category:hover .worldrune-category-poster img {
  transform: scale(1.08);
}
