@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap");

:root {
  --ozythra-deep-plum: #2a1b3d;
  --ozythra-silver-ice: #bfc8d9;
  --ozythra-charcoal-gray: #3b3b3b;
  --ozythra-purple-glow: #7c4c6b;
  --ozythra-golden-amber: #c9a76d;
  --ozythra-dark-shadow: #1a0f26;
  --ozythra-light-mist: #e8ecf0;
  --ozythra-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Crimson Text", serif;
  background: linear-gradient(
    135deg,
    var(--ozythra-deep-plum),
    var(--ozythra-dark-shadow)
  );
  color: var(--ozythra-silver-ice);
  line-height: 1.6;
  overflow-x: hidden;
}

.ozythra-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 15, 38, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 167, 109, 0.2);
  z-index: 1000;
  transition: var(--ozythra-transition);
}

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

.ozythra-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ozythra-golden-amber);
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--ozythra-transition);
}

.ozythra-brand-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(201, 167, 109, 0.5));
}

.ozythra-brand-link:hover {
  color: var(--ozythra-silver-ice);
  transform: translateY(-1px);
}

.ozythra-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.ozythra-nav-link {
  color: var(--ozythra-silver-ice);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;

  transition: var(--ozythra-transition);
  position: relative;
  overflow: hidden;
}

.ozythra-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 167, 109, 0.2),
    transparent
  );
  transition: var(--ozythra-transition);
}

.ozythra-nav-link:hover::before {
  left: 100%;
}

.ozythra-nav-link:hover {
  color: var(--ozythra-golden-amber);
  background: rgba(124, 76, 107, 0.1);
}

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

.ozythra-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ozythra-golden-amber);
  transition: var(--ozythra-transition);
  border-radius: 2px;
}

.ozythra-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
      ellipse at center,
      rgba(124, 76, 107, 0.1),
      transparent
    ),
    linear-gradient(
      135deg,
      var(--ozythra-deep-plum),
      var(--ozythra-dark-shadow)
    );
  overflow: hidden;
}

.ozythra-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A76D' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-16.569 13.431-30 30-30v60c-16.569 0-30-13.431-30-30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: ozythra-float 20s ease-in-out infinite;
}

@keyframes ozythra-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.ozythra-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 15, 38, 0.8),
    rgba(42, 27, 61, 0.6)
  );
  pointer-events: none;
}

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

.ozythra-hero-content {
  position: relative;
}

.ozythra-hero-mystical-border {
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  border: 2px solid rgba(201, 167, 109, 0.2);
  border-radius: 20px;
  background: rgba(26, 15, 38, 0.4);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.ozythra-hero-mystical-border::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    45deg,
    var(--ozythra-golden-amber),
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
  animation: ozythra-border-glow 3s ease-in-out infinite alternate;
}

@keyframes ozythra-border-glow {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}

.ozythra-hero-title {
  font-family: "Cinzel", serif;
  margin-bottom: 1.5rem;
}

.ozythra-hero-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--ozythra-golden-amber);
  text-shadow: 0 0 20px rgba(201, 167, 109, 0.5);
  margin-bottom: 0.5rem;
}

.ozythra-hero-title-sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
}

.ozythra-hero-description {
  font-size: 1.2rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.ozythra-hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ozythra-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--ozythra-transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.ozythra-btn-primary {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  box-shadow: 0 8px 25px rgba(124, 76, 107, 0.3);
}

.ozythra-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 76, 107, 0.4);
}

.ozythra-btn-secondary {
  background: transparent;
  color: var(--ozythra-silver-ice);
  border: 2px solid var(--ozythra-golden-amber);
}

.ozythra-btn-secondary:hover {
  background: var(--ozythra-golden-amber);
  color: var(--ozythra-deep-plum);
  transform: translateY(-3px);
}

.ozythra-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ozythra-floating-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.ozythra-floating-rune {
  position: absolute;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  opacity: 0.7;
  animation: ozythra-rune-float 6s ease-in-out infinite;
}

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

.ozythra-rune-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.ozythra-rune-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes ozythra-rune-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 1;
  }
}

.ozythra-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.ozythra-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ozythra-section-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
  position: relative;
}

.ozythra-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  border-radius: 2px;
}

.ozythra-section-subtitle {
  font-size: 1.1rem;
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.ozythra-realms-section {
  background: linear-gradient(
    135deg,
    rgba(59, 59, 59, 0.1),
    rgba(42, 27, 61, 0.1)
  );
  margin: 4rem 0;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

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

.ozythra-realm-card {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
  position: relative;
  overflow: hidden;
}

.ozythra-realm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 167, 109, 0.1),
    transparent
  );
  transition: var(--ozythra-transition);
}

.ozythra-realm-card:hover::before {
  left: 100%;
  transition-duration: 0.6s;
}

.ozythra-realm-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.2);
}

.ozythra-realm-icon {
  font-size: 2.5rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
  text-align: center;
}

.ozythra-realm-title {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
  text-align: center;
}

.ozythra-realm-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
}

.ozythra-realm-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ozythra-golden-amber);
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  width: 100%;
  transition: var(--ozythra-transition);
}

.ozythra-realm-link:hover {
  color: var(--ozythra-silver-ice);
  transform: translateX(5px);
}

.ozythra-featured-section {
  margin: 6rem 0;
}

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

.ozythra-featured-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ozythra-featured-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-featured-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.ozythra-featured-stats {
  display: flex;
  gap: 2rem;
}

.ozythra-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ozythra-stat-number {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  font-weight: 600;
}

.ozythra-stat-label {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 0.9rem;
}

.ozythra-featured-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozythra-visual-frame {
  width: 250px;
  height: 250px;
  border: 2px solid var(--ozythra-golden-amber);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle, rgba(124, 76, 107, 0.2), transparent);
}

.ozythra-visual-content {
  position: relative;
}

.ozythra-visual-icon {
  font-size: 4rem;
  color: var(--ozythra-golden-amber);
}

.ozythra-visual-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ozythra-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--ozythra-golden-amber);
  border-radius: 50%;
  animation: ozythra-particle-float 3s ease-in-out infinite;
}

.ozythra-particle:nth-child(1) {
  top: -30px;
  left: -20px;
  animation-delay: 0s;
}

.ozythra-particle:nth-child(2) {
  top: -10px;
  right: -30px;
  animation-delay: 1s;
}

.ozythra-particle:nth-child(3) {
  bottom: -20px;
  left: -15px;
  animation-delay: 2s;
}

@keyframes ozythra-particle-float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.ozythra-latest-section {
  background: rgba(59, 59, 59, 0.05);
  margin: 4rem 0;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

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

.ozythra-latest-card {
  background: rgba(26, 15, 38, 0.7);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
  position: relative;
  overflow: hidden;
}

.ozythra-latest-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.3);
}

.ozythra-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ozythra-card-category {
  background: var(--ozythra-purple-glow);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-card-date {
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
  font-size: 0.9rem;
}

.ozythra-card-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.ozythra-card-excerpt {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ozythra-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ozythra-golden-amber);
  text-decoration: none;
  font-weight: 600;
  transition: var(--ozythra-transition);
}

.ozythra-card-link:hover {
  color: var(--ozythra-silver-ice);
  transform: translateX(5px);
}

.ozythra-newsletter-section {
  margin: 6rem 0;
  position: relative;
}

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

.ozythra-newsletter-content {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 38, 0.9),
    rgba(42, 27, 61, 0.8)
  );
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.3);
  overflow: hidden;
}

.ozythra-newsletter-mystical-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(124, 76, 107, 0.1),
      transparent
    ),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A76D' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-11.046 8.954-20 20-20v40c-11.046 0-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E");
  animation: ozythra-bg-drift 15s ease-in-out infinite;
}

@keyframes ozythra-bg-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -10px) rotate(1deg);
  }
}

.ozythra-newsletter-inner {
  position: relative;
  z-index: 2;
  padding: 4rem;
  text-align: center;
}

.ozythra-newsletter-icon {
  font-size: 3rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(201, 167, 109, 0.4));
}

.ozythra-newsletter-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-newsletter-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.ozythra-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.ozythra-newsletter-input-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ozythra-newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background: rgba(59, 59, 59, 0.5);
  border: 2px solid rgba(201, 167, 109, 0.3);
  border-radius: 50px;
  color: var(--ozythra-silver-ice);
  font-size: 1rem;
  transition: var(--ozythra-transition);
}

.ozythra-newsletter-input:focus {
  outline: none;
  border-color: var(--ozythra-golden-amber);
  background: rgba(59, 59, 59, 0.7);
  box-shadow: 0 0 15px rgba(201, 167, 109, 0.2);
}

.ozythra-newsletter-input::placeholder {
  color: var(--ozythra-silver-ice);
  opacity: 0.6;
}

.ozythra-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ozythra-transition);
  font-size: 1rem;
}

.ozythra-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 76, 107, 0.4);
}

.ozythra-newsletter-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: none;
}

.ozythra-newsletter-message.success {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.5);
  color: #81c784;
}

.ozythra-newsletter-message.error {
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.5);
  color: #e57373;
}

.ozythra-footer {
  background: linear-gradient(
    135deg,
    var(--ozythra-dark-shadow),
    var(--ozythra-deep-plum)
  );
  border-top: 1px solid rgba(201, 167, 109, 0.2);
  margin-top: 4rem;
}

.ozythra-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
}

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

.ozythra-footer-brand {
  max-width: 400px;
}

.ozythra-footer-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-footer-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ozythra-footer-social {
  display: flex;
  gap: 1rem;
}

.ozythra-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(59, 59, 59, 0.5);
  border: 1px solid rgba(201, 167, 109, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ozythra-golden-amber);
  cursor: pointer;
  transition: var(--ozythra-transition);
  font-size: 1.1rem;
}

.ozythra-social-icon:hover {
  background: var(--ozythra-golden-amber);
  color: var(--ozythra-deep-plum);
  transform: translateY(-2px);
}

.ozythra-footer-links {
  display: flex;
  gap: 3rem;
}

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

.ozythra-footer-heading {
  font-family: "Cinzel", serif;
  color: var(--ozythra-golden-amber);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ozythra-footer-link {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  text-decoration: none;
  transition: var(--ozythra-transition);
}

.ozythra-footer-link:hover {
  color: var(--ozythra-golden-amber);
  opacity: 1;
  transform: translateX(5px);
}

.ozythra-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 167, 109, 0.2);
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
}

.ozythra-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--ozythra-dark-shadow),
    var(--ozythra-deep-plum)
  );
  border-top: 2px solid var(--ozythra-golden-amber);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: var(--ozythra-transition);
  backdrop-filter: blur(15px);
}

.ozythra-cookie-banner.show {
  transform: translateY(0);
}

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

.ozythra-cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
}

.ozythra-cookie-icon {
  font-size: 1.5rem;
  color: var(--ozythra-golden-amber);
}

.ozythra-cookie-text span {
  color: var(--ozythra-silver-ice);
  line-height: 1.5;
}

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

.ozythra-cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ozythra-transition);
}

.ozythra-cookie-accept {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
}

.ozythra-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 76, 107, 0.4);
}

.ozythra-cookie-decline {
  background: transparent;
  color: var(--ozythra-silver-ice);
  border: 1px solid rgba(191, 200, 217, 0.5);
}

.ozythra-cookie-decline:hover {
  background: rgba(191, 200, 217, 0.1);
  border-color: var(--ozythra-silver-ice);
}

@media (max-width: 768px) {
  .ozythra-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 15, 38, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: var(--ozythra-transition);
    border-bottom: 1px solid rgba(201, 167, 109, 0.2);
  }

  .ozythra-nav-menu.active {
    transform: translateX(0);
  }

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

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

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

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

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

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

  .ozythra-hero-title-sub {
    font-size: 1.2rem;
  }

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

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

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

  .ozythra-footer-links {
    justify-content: center;
  }

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

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

  .ozythra-newsletter-input {
    min-width: 100%;
  }

  .ozythra-section-container {
    padding: 2rem 1rem;
  }

  .ozythra-newsletter-inner {
    padding: 2rem;
  }
}

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

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

  .ozythra-realms-grid {
    grid-template-columns: 1fr;
  }

  .ozythra-latest-grid {
    grid-template-columns: 1fr;
  }

  .ozythra-featured-stats {
    justify-content: center;
  }
}

.ozythra-news-hero,
.ozythra-reviews-hero,
.ozythra-about-hero,
.ozythra-contact-hero,
.ozythra-legal-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
      ellipse at center,
      rgba(124, 76, 107, 0.1),
      transparent
    ),
    linear-gradient(
      135deg,
      var(--ozythra-deep-plum),
      var(--ozythra-dark-shadow)
    );
  margin-top: 80px;
}

.ozythra-news-mystical-frame,
.ozythra-reviews-mystical-frame,
.ozythra-about-mystical-frame,
.ozythra-contact-mystical-border {
  position: relative;
  padding: 3rem;
  border: 2px solid rgba(201, 167, 109, 0.3);
  border-radius: 15px;
  background: rgba(26, 15, 38, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
}

.ozythra-news-title,
.ozythra-reviews-title,
.ozythra-about-title,
.ozythra-contact-title,
.ozythra-legal-title {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-news-lead,
.ozythra-reviews-lead,
.ozythra-about-lead,
.ozythra-contact-lead,
.ozythra-legal-subtitle {
  font-size: 1.2rem;
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.ozythra-legal-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
}

.ozythra-featured-news {
  margin: 4rem 0;
}

.ozythra-featured-article {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  background: rgba(26, 15, 38, 0.6);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(201, 167, 109, 0.2);
}

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

.ozythra-featured-category {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-featured-date {
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
}

.ozythra-featured-headline {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.ozythra-featured-excerpt {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.ozythra-tag {
  background: rgba(59, 59, 59, 0.5);
  color: var(--ozythra-silver-ice);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(201, 167, 109, 0.3);
}

.ozythra-featured-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozythra-visual-frame {
  max-width: 300px;
  width: 100%;
  border: 2px solid var(--ozythra-golden-amber);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(124, 76, 107, 0.2), transparent);
  position: relative;
  overflow: hidden;
}

.ozythra-featured-icon {
  font-size: 3rem;
  color: var(--ozythra-golden-amber);
  z-index: 2;
}

.ozythra-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(201, 167, 109, 0.1),
    rgba(124, 76, 107, 0.1)
  );
  animation: ozythra-visual-pulse 4s ease-in-out infinite;
}

@keyframes ozythra-visual-pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.ozythra-news-grid-section {
  margin: 4rem 0;
}

.ozythra-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.ozythra-news-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ozythra-filter-btn {
  padding: 0.7rem 1.5rem;
  background: rgba(59, 59, 59, 0.5);
  color: var(--ozythra-silver-ice);
  border: 1px solid rgba(201, 167, 109, 0.3);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--ozythra-transition);
  font-weight: 500;
}

.ozythra-filter-btn:hover,
.ozythra-filter-active {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  border-color: transparent;
}

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

.ozythra-news-card {
  background: rgba(26, 15, 38, 0.6);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
  cursor: pointer;
}

.ozythra-news-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.3);
}

.ozythra-card-visual {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ozythra-card-icon {
  font-size: 2.5rem;
  color: white;
  z-index: 2;
}

.ozythra-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 15, 38, 0.2);
}

.ozythra-card-content {
  padding: 2rem;
}

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

.ozythra-card-category {
  background: var(--ozythra-purple-glow);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-card-date {
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
  font-size: 0.9rem;
}

.ozythra-card-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.ozythra-card-excerpt {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ozythra-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ozythra-read-time {
  color: var(--ozythra-silver-ice);
  opacity: 0.6;
  font-size: 0.9rem;
}

.ozythra-card-arrow {
  color: var(--ozythra-golden-amber);
  transition: var(--ozythra-transition);
}

.ozythra-news-card:hover .ozythra-card-arrow {
  transform: translateX(5px);
}

.ozythra-trending-section {
  margin: 6rem 0;
  background: rgba(59, 59, 59, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

.ozythra-trending-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.ozythra-topic-item {
  background: rgba(26, 15, 38, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--ozythra-transition);
}

.ozythra-topic-item:hover {
  transform: translateY(-3px);
  border-color: var(--ozythra-golden-amber);
}

.ozythra-topic-rank {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  font-weight: 600;
  min-width: 60px;
}

.ozythra-topic-content {
  flex: 1;
}

.ozythra-topic-title {
  font-family: "Cinzel", serif;
  color: var(--ozythra-silver-ice);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ozythra-topic-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ozythra-topic-engagement {
  color: var(--ozythra-golden-amber);
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-featured-review {
  margin: 4rem 0;
}

.ozythra-featured-review-card {
  background: rgba(26, 15, 38, 0.6);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(201, 167, 109, 0.2);
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 3rem;
  align-items: center;
}

.ozythra-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.ozythra-review-badge {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-review-date {
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
}

.ozythra-review-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ozythra-rating-stars {
  display: flex;
  gap: 0.2rem;
}

.ozythra-rating-stars i {
  color: var(--ozythra-golden-amber);
  font-size: 1.1rem;
}

.ozythra-rating-value {
  color: var(--ozythra-golden-amber);
  font-weight: 600;
  font-size: 1.1rem;
}

.ozythra-review-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.ozythra-review-excerpt {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.ozythra-review-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ozythra-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.ozythra-highlight-icon {
  color: var(--ozythra-golden-amber);
  font-size: 0.9rem;
}

.ozythra-highlight-item:has(.fa-minus) .ozythra-highlight-icon {
  color: #e57373;
}

.ozythra-review-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozythra-visual-container {
  width: 180px;
  height: 180px;
  border: 2px solid var(--ozythra-golden-amber);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(124, 76, 107, 0.2), transparent);
  position: relative;
}

.ozythra-review-icon {
  font-size: 3rem;
  color: var(--ozythra-golden-amber);
  z-index: 2;
}

.ozythra-visual-effects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.ozythra-effect-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--ozythra-golden-amber);
  border-radius: 50%;
  animation: ozythra-effect-float 4s ease-in-out infinite;
}

.ozythra-effect-particle:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.ozythra-effect-particle:nth-child(2) {
  top: 70%;
  right: 25%;
  animation-delay: 1.5s;
}

.ozythra-effect-particle:nth-child(3) {
  bottom: 30%;
  left: 60%;
  animation-delay: 3s;
}

@keyframes ozythra-effect-float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.ozythra-review-categories {
  margin: 4rem 0;
}

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

.ozythra-category-card {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  text-align: center;
  transition: var(--ozythra-transition);
  position: relative;
  overflow: hidden;
}

.ozythra-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 167, 109, 0.1),
    transparent
  );
  transition: var(--ozythra-transition);
}

.ozythra-category-card:hover::before {
  left: 100%;
  transition-duration: 0.6s;
}

.ozythra-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.2);
}

.ozythra-category-icon {
  font-size: 2.5rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-category-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
}

.ozythra-category-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.ozythra-category-stats {
  color: var(--ozythra-golden-amber);
  font-weight: 600;
}

.ozythra-category-count {
  font-size: 0.9rem;
}

.ozythra-recent-reviews {
  margin: 4rem 0;
}

.ozythra-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.ozythra-review-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.ozythra-review-card {
  background: rgba(26, 15, 38, 0.6);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
  cursor: pointer;
}

.ozythra-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.3);
}

.ozythra-card-image {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ozythra-card-icon-bg {
  font-size: 3rem;
  color: white;
  z-index: 2;
}

.ozythra-card-rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(26, 15, 38, 0.9);
  color: var(--ozythra-golden-amber);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.ozythra-card-content {
  padding: 2rem;
}

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

.ozythra-card-genre {
  background: var(--ozythra-purple-glow);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ozythra-card-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.ozythra-rating-text {
  color: var(--ozythra-golden-amber);
  font-size: 0.9rem;
  font-weight: 600;
}

.ozythra-review-methodology {
  margin: 6rem 0;
  background: rgba(59, 59, 59, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

.ozythra-methodology-content {
  text-align: center;
}

.ozythra-methodology-header {
  margin-bottom: 3rem;
}

.ozythra-methodology-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-methodology-subtitle {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 1.1rem;
}

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

.ozythra-method-item {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
}

.ozythra-method-item:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.2);
}

.ozythra-method-icon {
  font-size: 2.5rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-method-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
}

.ozythra-method-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  line-height: 1.6;
}

.ozythra-mission-section {
  margin: 4rem 0;
}

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

.ozythra-mission-icon {
  font-size: 3rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-mission-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 2rem;
}

.ozythra-mission-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.ozythra-mission-orb {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozythra-orb-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  z-index: 3;
}

.ozythra-orb-ring {
  position: absolute;
  border: 2px solid var(--ozythra-golden-amber);
  border-radius: 50%;
  opacity: 0.4;
}

.ozythra-ring-1 {
  width: 190px;
  height: 190px;
  animation: ozythra-ring-rotate 10s linear infinite;
}

.ozythra-ring-2 {
  width: 220px;
  height: 220px;
  animation: ozythra-ring-rotate 15s linear infinite reverse;
}

.ozythra-ring-3 {
  width: 250px;
  height: 250px;
  animation: ozythra-ring-rotate 20s linear infinite;
}

@keyframes ozythra-ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ozythra-philosophy-section {
  margin: 6rem 0;
  background: rgba(59, 59, 59, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

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

.ozythra-philosophy-card {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  text-align: center;
  transition: var(--ozythra-transition);
}

.ozythra-philosophy-card:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.2);
}

.ozythra-philosophy-symbol {
  font-size: 3rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
  display: block;
}

.ozythra-philosophy-heading {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
}

.ozythra-philosophy-text {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  line-height: 1.6;
}

.ozythra-journey-section {
  margin: 6rem 0;
}

.ozythra-journey-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.ozythra-journey-timeline {
  position: relative;
}

.ozythra-journey-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--ozythra-golden-amber),
    var(--ozythra-purple-glow)
  );
}

.ozythra-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 4rem;
}

.ozythra-timeline-marker {
  position: absolute;
  left: 12px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--ozythra-golden-amber);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(201, 167, 109, 0.5);
}

.ozythra-timeline-title {
  font-family: "Cinzel", serif;
  color: var(--ozythra-golden-amber);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ozythra-timeline-text {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  line-height: 1.6;
}

.ozythra-journey-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 2rem;
}

.ozythra-journey-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.ozythra-stat-group {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 15, 38, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(201, 167, 109, 0.2);
}

.ozythra-stat-value {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ozythra-stat-label {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 0.9rem;
}

.ozythra-community-section {
  margin: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 38, 0.8),
    rgba(42, 27, 61, 0.6)
  );
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.3);
}

.ozythra-community-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ozythra-community-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-community-subtitle {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ozythra-community-invitation {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.ozythra-invitation-text {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.7;
}

.ozythra-invitation-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ozythra-invitation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--ozythra-transition);
  border: 2px solid transparent;
}

.ozythra-invitation-btn:first-child {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
}

.ozythra-invitation-btn:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 76, 107, 0.4);
}

.ozythra-btn-secondary {
  background: transparent;
  color: var(--ozythra-silver-ice);
  border: 2px solid var(--ozythra-golden-amber);
}

.ozythra-btn-secondary:hover {
  background: var(--ozythra-golden-amber);
  color: var(--ozythra-deep-plum);
  transform: translateY(-3px);
}

.ozythra-contact-main {
  margin: 4rem 0;
}

.ozythra-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.ozythra-form-header {
  margin-bottom: 2rem;
}

.ozythra-form-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-form-subtitle {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 1.1rem;
}

.ozythra-contact-form {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
}

.ozythra-form-group {
  margin-bottom: 2rem;
}

.ozythra-form-label {
  display: block;
  color: var(--ozythra-silver-ice);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ozythra-form-input,
.ozythra-form-select,
.ozythra-form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(59, 59, 59, 0.5);
  border: 2px solid rgba(201, 167, 109, 0.3);
  border-radius: 10px;
  color: var(--ozythra-silver-ice);
  font-size: 1rem;
  transition: var(--ozythra-transition);
  font-family: "Crimson Text", serif;
}

.ozythra-form-input:focus,
.ozythra-form-select:focus,
.ozythra-form-textarea:focus {
  outline: none;
  border-color: var(--ozythra-golden-amber);
  background: rgba(59, 59, 59, 0.7);
  box-shadow: 0 0 15px rgba(201, 167, 109, 0.2);
}

.ozythra-form-input::placeholder,
.ozythra-form-textarea::placeholder {
  color: var(--ozythra-silver-ice);
  opacity: 0.6;
}

.ozythra-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ozythra-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ozythra-transition);
  font-size: 1rem;
  font-family: "Crimson Text", serif;
}

.ozythra-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 76, 107, 0.4);
}

.ozythra-form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: none;
}

.ozythra-form-message.success {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid rgba(46, 125, 50, 0.5);
  color: #81c784;
}

.ozythra-form-message.error {
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.5);
  color: #e57373;
}

.ozythra-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ozythra-info-card {
  background: rgba(26, 15, 38, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  transition: var(--ozythra-transition);
}

.ozythra-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 10px 30px rgba(124, 76, 107, 0.2);
}

.ozythra-info-icon {
  font-size: 2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-info-title {
  font-family: "Cinzel", serif;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.ozythra-info-text {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.ozythra-info-link {
  color: var(--ozythra-golden-amber);
  text-decoration: none;
  font-weight: 600;
  transition: var(--ozythra-transition);
}

.ozythra-info-link:hover {
  color: var(--ozythra-silver-ice);
}

.ozythra-info-detail {
  color: var(--ozythra-silver-ice);
  opacity: 0.7;
  font-size: 0.9rem;
}

.ozythra-collaboration-section {
  margin: 6rem 0;
  background: rgba(59, 59, 59, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.1);
}

.ozythra-collaboration-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ozythra-collaboration-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1rem;
}

.ozythra-collaboration-subtitle {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 1.1rem;
}

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

.ozythra-collab-item {
  background: rgba(26, 15, 38, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  text-align: center;
  transition: var(--ozythra-transition);
}

.ozythra-collab-item:hover {
  transform: translateY(-5px);
  border-color: var(--ozythra-golden-amber);
  box-shadow: 0 15px 40px rgba(124, 76, 107, 0.2);
}

.ozythra-collab-icon {
  font-size: 2.5rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-collab-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--ozythra-silver-ice);
  margin-bottom: 1rem;
}

.ozythra-collab-desc {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  line-height: 1.6;
}

.ozythra-faq-section {
  margin: 6rem 0;
}

.ozythra-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ozythra-faq-item {
  background: rgba(26, 15, 38, 0.6);
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  overflow: hidden;
  transition: var(--ozythra-transition);
}

.ozythra-faq-item:hover {
  border-color: var(--ozythra-golden-amber);
}

.ozythra-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--ozythra-transition);
}

.ozythra-faq-question:hover {
  background: rgba(59, 59, 59, 0.2);
}

.ozythra-faq-question h3 {
  font-family: "Cinzel", serif;
  color: var(--ozythra-golden-amber);
  margin: 0;
  font-size: 1.1rem;
}

.ozythra-faq-question i {
  color: var(--ozythra-golden-amber);
  transition: var(--ozythra-transition);
}

.ozythra-faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  line-height: 1.6;
}

.ozythra-legal-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.ozythra-legal-nav {
  position: sticky;
  top: 120px;
  background: rgba(26, 15, 38, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
}

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

.ozythra-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ozythra-nav-link {
  color: var(--ozythra-silver-ice);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--ozythra-transition);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.ozythra-nav-link:hover {
  color: var(--ozythra-golden-amber);
  transform: translateX(5px);
  border-bottom-color: rgba(201, 167, 109, 0.3);
}

.ozythra-legal-main {
  background: rgba(26, 15, 38, 0.6);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(201, 167, 109, 0.2);
}

.ozythra-legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 167, 109, 0.2);
}

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

.ozythra-legal-heading {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--ozythra-golden-amber);
  margin-bottom: 1.5rem;
}

.ozythra-legal-subheading {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--ozythra-silver-ice);
  margin: 2rem 0 1rem;
}

.ozythra-legal-text {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.ozythra-legal-list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.ozythra-legal-list li {
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.ozythra-legal-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--ozythra-golden-amber);
  font-weight: bold;
}

.ozythra-legal-link {
  color: var(--ozythra-golden-amber);
  text-decoration: none;
  transition: var(--ozythra-transition);
  border-bottom: 1px solid transparent;
}

.ozythra-legal-link:hover {
  color: var(--ozythra-silver-ice);
  border-bottom-color: var(--ozythra-silver-ice);
}

.ozythra-contact-details {
  background: rgba(59, 59, 59, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 167, 109, 0.2);
  margin: 1.5rem 0;
}

.ozythra-contact-details p {
  margin: 0.5rem 0;
  color: var(--ozythra-silver-ice);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .ozythra-legal-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ozythra-legal-nav {
    position: static;
    order: 2;
  }

  .ozythra-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .ozythra-community-invitation {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ozythra-invitation-actions {
    justify-content: center;
  }

  .ozythra-journey-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ozythra-mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ozythra-featured-article {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ozythra-featured-review-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .ozythra-legal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ozythra-legal-main {
    padding: 2rem;
  }

  .ozythra-nav-list {
    flex-direction: column;
  }

  .ozythra-journey-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ozythra-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .ozythra-news-header {
    flex-direction: column;
    text-align: center;
  }

  .ozythra-reviews-header {
    flex-direction: column;
    text-align: center;
  }
}

.ozythra-contact-hero-content,
.ozythra-about-hero-content,
.ozythra-news-hero-content,
.ozythra-reviews-hero-content,
.ozythra-legal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.ozythra-realm-poster {
  width: 100%;

  object-fit: contain; /* иконка вписывается */
  filter: drop-shadow(0 0 10px rgba(201, 167, 109, 0.5));
  transition: transform 0.3s ease;
}

.ozythra-realm-card:hover .ozythra-realm-poster {
  transform: scale(1.1);
}
.ozythra-visual-poster {
  width: 100%;

  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(201, 167, 109, 0.5));
  transition: transform 0.3s ease;
}

.ozythra-visual-frame:hover .ozythra-visual-poster {
  transform: scale(1.1) rotate(3deg);
}
.ozythra-mission-poster {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 167, 109, 0.5));
  transition: transform 0.3s ease;
}

.ozythra-mission-text:hover .ozythra-mission-poster {
  transform: scale(1.1);
}

.ozythra-mission-visual-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(124, 76, 107, 0.6));
  z-index: 3;
  position: relative;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
.ozythra-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ozythra-card-visual {
  overflow: hidden;
  border-bottom: 2px solid rgba(201, 167, 109, 0.2);
  position: relative;
}

.ozythra-news-card:hover .ozythra-card-poster {
  transform: scale(1.08);
}
.ozythra-review-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.ozythra-visual-container {
  width: 220px;
  height: 220px;
  overflow: hidden;
  border: 2px solid var(--ozythra-golden-amber);
  border-radius: 15px;
  position: relative;
  background: rgba(26, 15, 38, 0.4);
}

.ozythra-visual-container:hover .ozythra-review-poster {
  transform: scale(1.05);
}

/* highlights */
.ozythra-highlight-item {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.ozythra-highlight-item.positive {
  color: #81c784;
  background: rgba(46, 125, 50, 0.1);
  border-left: 3px solid #81c784;
}

.ozythra-highlight-item.negative {
  color: #e57373;
  background: rgba(211, 47, 47, 0.1);
  border-left: 3px solid #e57373;
}
.ozythra-category-image {
  width: 100%;

  margin: 0 auto 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--ozythra-golden-amber);
  box-shadow: 0 8px 20px rgba(124, 76, 107, 0.25);
}

.ozythra-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ozythra-category-card:hover .ozythra-category-image img {
  transform: scale(1.08);
}
.ozythra-card-image {
  position: relative;

  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.ozythra-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ozythra-review-card:hover .ozythra-card-poster {
  transform: scale(1.08);
}

.ozythra-card-rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ozythra-golden-amber);
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Контейнер-герой */
.ozythra-featured-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 109, 0.22);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  isolation: isolate;
  min-height: 420px;
}

/* Постер */
.ozythra-hero-media {
  position: absolute;
  inset: 0;
  display: block;
}
.ozythra-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ozythra-featured-hero:hover .ozythra-hero-media img {
  transform: scale(1.06);
}
/* Виньетка + легкий шум для кинематографичности */
.ozythra-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 100% at 70% 40%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.55) 65%
    ),
    linear-gradient(135deg, rgba(26, 15, 38, 0.45), rgba(42, 27, 61, 0.35));
}
.ozythra-hero-noise {
  position: absolute;
  inset: -50%;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift 12s linear infinite;
}
@keyframes noiseShift {
  to {
    transform: translate3d(-5%, 3%, 0);
  }
}

/* Стеклянная карточка */
.ozythra-hero-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: min(8vw, 4rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(26, 15, 38, 0.72),
    rgba(26, 15, 38, 0.55)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 167, 109, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Градиентная «неоновая» рамка вокруг всего блока */
.ozythra-hero-border {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  z-index: 1;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(201, 167, 109, 0.55),
    rgba(124, 76, 107, 0.55),
    rgba(201, 167, 109, 0.55)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 3.5s ease-in-out infinite alternate;
}
@keyframes borderGlow {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.65;
  }
}

/* Мета */
.ozythra-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.ozythra-chip {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.ozythra-chip--gradient {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  box-shadow: 0 6px 18px rgba(124, 76, 107, 0.35);
}
.ozythra-hero-date {
  color: var(--ozythra-silver-ice);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Заголовок/текст */
.ozythra-hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--ozythra-golden-amber);
  line-height: 1.2;
  margin: 0.25rem 0 1rem;
  text-shadow: 0 0 18px rgba(201, 167, 109, 0.25);
}
.ozythra-hero-excerpt {
  color: var(--ozythra-silver-ice);
  opacity: 0.92;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

/* Теги */
.ozythra-hero-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.ozythra-hero-tags .ozythra-tag {
  background: rgba(59, 59, 59, 0.45);
  border: 1px solid rgba(201, 167, 109, 0.25);
  color: var(--ozythra-silver-ice);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Кнопки */
.ozythra-hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.ozythra-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s var(--ozythra-transition),
    box-shadow 0.25s var(--ozythra-transition);
  border: 2px solid transparent;
}
.ozythra-hero-btn--primary {
  background: linear-gradient(
    135deg,
    var(--ozythra-purple-glow),
    var(--ozythra-golden-amber)
  );
  color: #fff;
  box-shadow: 0 10px 26px rgba(124, 76, 107, 0.35);
}
.ozythra-hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(124, 76, 107, 0.45);
}
.ozythra-hero-btn--ghost {
  background: transparent;
  color: var(--ozythra-silver-ice);
  border-color: var(--ozythra-golden-amber);
}
.ozythra-hero-btn--ghost:hover {
  background: var(--ozythra-golden-amber);
  color: var(--ozythra-deep-plum);
  transform: translateY(-2px);
}

/* Адаптив */
@media (max-width: 768px) {
  .ozythra-featured-hero {
    min-height: 380px;
  }
  .ozythra-hero-card {
    margin: 1rem;
  }
}
