:root {
  --phorantis-jade: #0e2f28;
  --phorantis-gold: #c2a878;
  --phorantis-purple: #3e2b42;
  --phorantis-stone: #5a5e63;
  --phorantis-parchment: #efe7d1;
  --phorantis-shadow: rgba(14, 47, 40, 0.15);
  --phorantis-glow: rgba(194, 168, 120, 0.3);
}

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

.phorantis-body {
  font-family: "Crimson Text", serif;
  background: linear-gradient(
    135deg,
    var(--phorantis-jade) 0%,
    var(--phorantis-purple) 100%
  );
  color: var(--phorantis-parchment);
  line-height: 1.6;
  overflow-x: hidden;
}

.phorantis-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 47, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--phorantis-gold);
}

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

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

.phorantis-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phorantis-logo-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--phorantis-glow);
}

.phorantis-logo-text {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--phorantis-gold);
  text-shadow: 0 0 10px rgba(194, 168, 120, 0.5);
}

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

.phorantis-nav-link {
  color: var(--phorantis-parchment);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.phorantis-nav-link:hover {
  color: var(--phorantis-gold);
  text-shadow: 0 0 5px rgba(194, 168, 120, 0.5);
}

.phorantis-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--phorantis-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

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

.phorantis-main {
  margin-top: 80px;
}

.phorantis-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phorantis-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.phorantis-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phorantis-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8) 100%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(14, 47, 40, 0.8) 100%
  );
  z-index: 1;
}
section {
  border-top: 1px solid whitesmoke;
  border-bottom: 1px solid whitesmoke;
}

.phorantis-hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.phorantis-hero-runes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.phorantis-hero-rune-left,
.phorantis-hero-rune-right {
  width: 60px;
  height: 60px;
  opacity: 0.7;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-hero-rune-right {
  animation-delay: 1.5s;
}

.phorantis-hero-title {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
  letter-spacing: 2px;
}

.phorantis-hero-subtitle {
  font-size: 1.3rem;
  color: var(--phorantis-parchment);
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
}

.phorantis-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.phorantis-btn-primary {
  background: linear-gradient(45deg, var(--phorantis-gold), #d4b886);
  color: var(--phorantis-jade);
  box-shadow: 0 5px 20px rgba(194, 168, 120, 0.3);
}

.phorantis-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 168, 120, 0.5);
}

.phorantis-btn-secondary {
  background: transparent;
  color: var(--phorantis-parchment);
  border: 2px solid var(--phorantis-gold);
}

.phorantis-btn-secondary:hover {
  background: var(--phorantis-gold);
  color: var(--phorantis-jade);
  transform: translateY(-2px);
}

.phorantis-btn-icon {
  width: 20px;
  height: 20px;
}

.phorantis-hero-artifacts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.phorantis-artifact {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  animation: phorantis-drift 8s ease-in-out infinite;
}

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

.phorantis-artifact-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.phorantis-artifact-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 4s;
}

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

.phorantis-realms {
  padding: 8rem 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(62, 43, 66, 0.1) 100%
  );
}

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

.phorantis-section-divider {
  width: 200px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.phorantis-section-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(194, 168, 120, 0.3);
}

.phorantis-section-header p {
  font-size: 1.1rem;
  color: var(--phorantis-parchment);
  opacity: 0.8;
}

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

.phorantis-realm-card {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

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

.phorantis-realm-header {
  position: relative;

  overflow: hidden;
}

.phorantis-realm-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.phorantis-realm-card:hover .phorantis-realm-bg {
  transform: scale(1.1);
}

.phorantis-realm-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(14, 47, 40, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--phorantis-gold);
}

.phorantis-crystal-icon {
  width: 30px;
  height: 30px;
}

.phorantis-realm-content {
  padding: 2rem;
}

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

.phorantis-realm-content p {
  color: var(--phorantis-parchment);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.phorantis-realm-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--phorantis-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phorantis-realm-link:hover {
  color: var(--phorantis-parchment);
  text-shadow: 0 0 5px rgba(194, 168, 120, 0.5);
}

.phorantis-link-icon {
  width: 16px;
  height: 16px;
}

.phorantis-legends {
  padding: 8rem 0;
  background: rgba(14, 47, 40, 0.1);
}

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

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

.phorantis-legends-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.phorantis-legends-text p {
  font-size: 1.1rem;
  color: var(--phorantis-parchment);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.phorantis-legends-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.phorantis-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-stat-icon {
  width: 40px;
  height: 40px;
}

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

.phorantis-stat-label {
  font-size: 0.9rem;
  color: var(--phorantis-parchment);
  opacity: 0.8;
}

.phorantis-legends-visual {
  position: relative;
}

.phorantis-guardian-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--phorantis-shadow);
}

.phorantis-mystical-aura {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--phorantis-glow), transparent);
  border-radius: 25px;
  z-index: -1;
  animation: phorantis-pulse 2s ease-in-out infinite;
}

.phorantis-artifacts {
  padding: 8rem 0;
}

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

.phorantis-artifact-item {
  position: relative;
}

.phorantis-artifact-card {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.phorantis-artifact-card:hover {
  transform: translateY(-5px);
  border-color: var(--phorantis-gold);
}

.phorantis-artifact-image {
  width: 100%;

  object-fit: cover;
}

.phorantis-artifact-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    var(--phorantis-glow),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.phorantis-artifact-card:hover .phorantis-artifact-glow {
  opacity: 1;
}

.phorantis-artifact-info {
  padding: 1.5rem;
}

.phorantis-artifact-info h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-artifact-info p {
  color: var(--phorantis-parchment);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.phorantis-artifact-date {
  font-size: 0.9rem;
  color: var(--phorantis-gold);
  opacity: 0.7;
}

.phorantis-newsletter {
  background: linear-gradient(
    135deg,
    var(--phorantis-purple) 0%,
    var(--phorantis-jade) 100%
  );
  padding: 6rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.phorantis-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(194, 168, 120, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(194, 168, 120, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.phorantis-newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.phorantis-newsletter-content {
  text-align: center;
}

.phorantis-newsletter-header h3 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
}

.phorantis-newsletter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-newsletter-header p {
  font-size: 1.1rem;
  color: var(--phorantis-parchment);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.phorantis-newsletter-form {
  margin-bottom: 2rem;
}

.phorantis-form-group {
  display: flex;
  align-items: center;
  background: rgba(239, 231, 209, 0.1);
  border-radius: 50px;
  padding: 0.5rem;
  border: 2px solid rgba(194, 168, 120, 0.3);
  transition: all 0.3s ease;
}

.phorantis-form-group:focus-within {
  border-color: var(--phorantis-gold);
  box-shadow: 0 0 20px var(--phorantis-glow);
}

.phorantis-input-icon {
  width: 20px;
  height: 20px;
  margin: 0 1rem;
}

.phorantis-form-group input {
  flex: 1;
  padding: 1rem;
  background: transparent;
  border: none;
  color: var(--phorantis-parchment);
  font-size: 1rem;
  outline: none;
}

.phorantis-form-group input::placeholder {
  color: rgba(239, 231, 209, 0.6);
}

.phorantis-newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--phorantis-gold), #d4b886);
  color: var(--phorantis-jade);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.phorantis-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.4);
}

.phorantis-btn-icon {
  width: 18px;
  height: 18px;
}

.phorantis-newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.phorantis-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--phorantis-parchment);
  font-size: 0.9rem;
}

.phorantis-benefit-icon {
  width: 16px;
  height: 16px;
}

.phorantis-footer {
  background: linear-gradient(180deg, var(--phorantis-jade) 0%, #0a201b 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(194, 168, 120, 0.3);
}

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

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

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

.phorantis-footer-rune {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.phorantis-footer-section p {
  color: var(--phorantis-parchment);
  opacity: 0.8;
  line-height: 1.6;
}

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

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

.phorantis-footer-links a {
  color: var(--phorantis-parchment);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.phorantis-footer-links a:hover {
  color: var(--phorantis-gold);
  opacity: 1;
}

.phorantis-footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--phorantis-parchment);
  opacity: 0.8;
}

.phorantis-contact-icon {
  width: 20px;
  height: 20px;
}

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

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

.phorantis-footer-bottom p {
  color: var(--phorantis-parchment);
  opacity: 0.6;
  font-size: 0.9rem;
}

.phorantis-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--phorantis-jade) 0%,
    var(--phorantis-purple) 100%
  );
  padding: 1.5rem;
  z-index: 10000;
  border-top: 2px solid var(--phorantis-gold);
  box-shadow: 0 -5px 20px var(--phorantis-shadow);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.phorantis-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.phorantis-cookie-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.phorantis-cookie-text h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-cookie-text p {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  font-size: 0.95rem;
}

.phorantis-cookie-actions {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.phorantis-btn-accept,
.phorantis-btn-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.phorantis-btn-accept {
  background: linear-gradient(45deg, var(--phorantis-gold), #d4b886);
  color: var(--phorantis-jade);
}

.phorantis-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.4);
}

.phorantis-btn-decline {
  background: transparent;
  color: var(--phorantis-parchment);
  border: 1px solid rgba(239, 231, 209, 0.5);
}

.phorantis-btn-decline:hover {
  background: rgba(239, 231, 209, 0.1);
}

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

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

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

@media (max-width: 768px) {
  .phorantis-nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(14, 47, 40, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .phorantis-nav-menu.active {
    left: 0;
  }

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

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

  .phorantis-hero-subtitle {
    font-size: 1.1rem;
  }

  .phorantis-hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .phorantis-legends-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phorantis-legends-stats {
    grid-template-columns: 1fr;
  }

  .phorantis-artifacts-showcase {
    grid-template-columns: 1fr;
  }

  .phorantis-form-group {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .phorantis-form-group input {
    margin-bottom: 1rem;
  }

  .phorantis-newsletter-benefits {
    flex-direction: column;
    align-items: center;
  }

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

  .phorantis-cookie-actions {
    margin-left: 0;
    justify-content: center;
  }

  .phorantis-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.phorantis-about-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--phorantis-jade) 0%,
    var(--phorantis-purple) 50%,
    var(--phorantis-jade) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.phorantis-about-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
}

.phorantis-about-rune {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-about-scroll {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(194, 168, 120, 0.3);
}

.phorantis-scroll-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.1;
  z-index: -1;
}

.phorantis-scroll-seal {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
}

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

.phorantis-origin-story {
  padding: 8rem 0;
  background: rgba(14, 47, 40, 0.1);
}

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

.phorantis-origin-visual {
  position: relative;
}

.phorantis-origin-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--phorantis-shadow);
}

.phorantis-mystical-particles {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
      circle at 20% 20%,
      var(--phorantis-glow) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      var(--phorantis-glow) 0%,
      transparent 30%
    );
  border-radius: 30px;
  z-index: -1;
  animation: phorantis-pulse 3s ease-in-out infinite;
}

.phorantis-origin-emblem {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

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

.phorantis-origin-principles {
  margin-top: 2rem;
}

.phorantis-principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-principle-item:hover {
  border-color: var(--phorantis-gold);
  box-shadow: 0 5px 20px var(--phorantis-shadow);
}

.phorantis-principle-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.phorantis-principle-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-chronicles-process {
  padding: 8rem 0;
}

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

.phorantis-step-item {
  text-align: center;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.phorantis-step-item:hover {
  transform: translateY(-10px);
  border-color: var(--phorantis-gold);
  box-shadow: 0 15px 30px var(--phorantis-shadow);
}

.phorantis-step-number {
  margin-bottom: 1.5rem;
}

.phorantis-step-rune {
  width: 60px;
  height: 60px;
  animation: phorantis-float 4s ease-in-out infinite;
}

.phorantis-step-content h3 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
}

.phorantis-step-image {
  width: 80px;
  height: 80px;
  margin: 1rem auto;
  opacity: 0.7;
}

.phorantis-guardians-vision {
  padding: 8rem 0;
  background: rgba(62, 43, 66, 0.1);
}

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

.phorantis-vision-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

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

.phorantis-vision-goals {
  margin-top: 2rem;
}

.phorantis-goal-card {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-goal-card:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(10px);
}

.phorantis-goal-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
}

.phorantis-goal-card h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-vision-artifact {
  position: relative;
}

.phorantis-artifact-display {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--phorantis-shadow);
}

.phorantis-artifact-aura {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(
    45deg,
    var(--phorantis-glow),
    transparent,
    var(--phorantis-glow)
  );
  border-radius: 30px;
  z-index: -1;
  animation: phorantis-pulse 2s ease-in-out infinite;
}

.phorantis-contact-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--phorantis-purple) 0%,
    var(--phorantis-jade) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.phorantis-contact-portal {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-contact-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
}

.phorantis-contact-runes {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  opacity: 0.6;
}

.phorantis-contact-rune-left,
.phorantis-contact-rune-right {
  width: 50px;
  height: 50px;
  animation: phorantis-drift 6s ease-in-out infinite;
}

.phorantis-contact-rune-right {
  animation-delay: 3s;
}

.phorantis-contact-form-section {
  padding: 8rem 0;
}

.phorantis-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.phorantis-contact-scroll {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

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

.phorantis-contact-methods {
  margin-top: 2rem;
}

.phorantis-contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-contact-method:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(5px);
}

.phorantis-method-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.phorantis-method-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-contact-form-container {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(194, 168, 120, 0.2);
}

.phorantis-contact-form .phorantis-form-group {
  margin-bottom: 1.5rem;
  text-align: left;
  background: rgba(239, 231, 209, 0.1);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(194, 168, 120, 0.3);
  display: block;
}

.phorantis-contact-form .phorantis-form-group:focus-within {
  border-color: var(--phorantis-gold);
  box-shadow: 0 0 15px var(--phorantis-glow);
}

.phorantis-form-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 0.5rem;
}

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

.phorantis-contact-form input,
.phorantis-contact-form select,
.phorantis-contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(239, 231, 209, 0.1);
  border: 1px solid rgba(194, 168, 120, 0.3);
  border-radius: 10px;
  color: var(--phorantis-parchment);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.phorantis-contact-form input:focus,
.phorantis-contact-form select:focus,
.phorantis-contact-form textarea:focus {
  border-color: var(--phorantis-gold);
  box-shadow: 0 0 10px var(--phorantis-glow);
}

.phorantis-contact-form input::placeholder,
.phorantis-contact-form textarea::placeholder {
  color: rgba(239, 231, 209, 0.6);
}

.phorantis-contact-submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--phorantis-gold), #d4b886);
  color: var(--phorantis-jade);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 2rem auto 0;
  font-size: 1rem;
}

.phorantis-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(194, 168, 120, 0.4);
}

.phorantis-submit-icon {
  width: 20px;
  height: 20px;
}

.phorantis-collaboration {
  padding: 8rem 0;
  background: rgba(14, 47, 40, 0.1);
}

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

.phorantis-collaboration-card {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

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

.phorantis-role-image {
  width: 100%;

  object-fit: cover;
}

.phorantis-role-content {
  padding: 2rem;
  text-align: center;
}

.phorantis-role-emblem {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.phorantis-role-content h3 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
}

.phorantis-role-skills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.phorantis-role-skills span {
  background: rgba(194, 168, 120, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--phorantis-gold);
}

.phorantis-mystical-guidelines {
  padding: 8rem 0;
}

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

.phorantis-guidelines-visual {
  position: relative;
}

.phorantis-tome-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--phorantis-shadow);
}

.phorantis-mystical-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    transparent,
    var(--phorantis-glow),
    transparent
  );
  border-radius: 25px;
  z-index: -1;
  animation: phorantis-pulse 3s ease-in-out infinite;
}

.phorantis-guidelines-seal {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

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

.phorantis-guideline-list {
  margin-top: 2rem;
}

.phorantis-guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-guideline-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(5px);
}

.phorantis-guideline-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.phorantis-guideline-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .phorantis-about-header h1,
  .phorantis-contact-header h1 {
    font-size: 2rem;
  }

  .phorantis-origin-content,
  .phorantis-vision-content,
  .phorantis-contact-content,
  .phorantis-guidelines-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .phorantis-process-steps {
    grid-template-columns: 1fr;
  }

  .phorantis-role-skills {
    justify-content: center;
  }

  .phorantis-contact-form-container {
    padding: 1.5rem;
  }
}

.phorantis-news-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--phorantis-jade) 0%,
    var(--phorantis-purple) 50%,
    var(--phorantis-jade) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.phorantis-news-herald {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-news-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
}

.phorantis-news-ticker {
  background: rgba(239, 231, 209, 0.1);
  border-radius: 50px;
  padding: 1rem 2rem;
  margin-top: 3rem;
  border: 2px solid rgba(194, 168, 120, 0.3);
  overflow: hidden;
}

.phorantis-ticker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: phorantis-scroll 30s linear infinite;
}

.phorantis-ticker-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@keyframes phorantis-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.phorantis-featured-news {
  padding: 8rem 0;
}

.phorantis-featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.phorantis-news-card {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.phorantis-news-card:hover {
  transform: translateY(-5px);
  border-color: var(--phorantis-gold);
  box-shadow: 0 15px 30px var(--phorantis-shadow);
}

.phorantis-main-card {
  height: 500px;
}

.phorantis-news-image {
  width: 100%;

  object-fit: cover;
}

.phorantis-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent 40%, rgba(14, 47, 40, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.phorantis-news-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--phorantis-gold);
  color: var(--phorantis-jade);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  align-self: flex-start;
}

.phorantis-badge-icon {
  width: 16px;
  height: 16px;
}

.phorantis-news-content {
  padding: 1.5rem;
}

.phorantis-main-card .phorantis-news-content {
  position: relative;
  z-index: 1;
}

.phorantis-news-content h3,
.phorantis-news-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
}

.phorantis-news-content h3 {
  font-size: 1.5rem;
}

.phorantis-news-content h4 {
  font-size: 1.2rem;
}

.phorantis-news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--phorantis-gold);
  opacity: 0.8;
}

.phorantis-meta-icon {
  width: 14px;
  height: 14px;
}

.phorantis-featured-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phorantis-featured-side .phorantis-news-card {
  height: 160px;
  display: flex;
}

.phorantis-featured-side .phorantis-news-image {
  width: 120px;
  height: 100%;
  flex-shrink: 0;
}

.phorantis-featured-side .phorantis-news-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phorantis-news-categories {
  padding: 8rem 0;
  background: rgba(62, 43, 66, 0.1);
}

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

.phorantis-category-section {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-category-section:hover {
  border-color: var(--phorantis-gold);
  transform: translateY(-5px);
}

.phorantis-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.phorantis-category-icon {
  width: 50px;
  height: 50px;
}

.phorantis-category-header h3 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  font-size: 1.5rem;
}

.phorantis-news-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.1);
  transition: all 0.3s ease;
}

.phorantis-news-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(5px);
}

.phorantis-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.phorantis-item-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.phorantis-item-content p {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.phorantis-item-date {
  color: var(--phorantis-gold);
  font-size: 0.8rem;
  opacity: 0.7;
}

.phorantis-upcoming-events {
  padding: 8rem 0;
}

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

.phorantis-events-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

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

.phorantis-events-list {
  margin-top: 2rem;
}

.phorantis-event-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-event-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(10px);
}

.phorantis-event-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.phorantis-event-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-event-date {
  color: var(--phorantis-gold);
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}

.phorantis-events-visual {
  position: relative;
}

.phorantis-calendar-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--phorantis-shadow);
}

.phorantis-calendar-overlay {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--phorantis-glow), transparent);
  border-radius: 25px;
  z-index: -1;
  animation: phorantis-pulse 3s ease-in-out infinite;
}

.phorantis-reviews-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--phorantis-purple) 0%,
    var(--phorantis-jade) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.phorantis-reviews-judgment {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-reviews-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
}

.phorantis-reviews-criteria {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.phorantis-criteria-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(239, 231, 209, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.3);
  transition: all 0.3s ease;
}

.phorantis-criteria-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateY(-5px);
}

.phorantis-criteria-icon {
  width: 30px;
  height: 30px;
}

.phorantis-criteria-item span {
  color: var(--phorantis-parchment);
  font-size: 0.9rem;
  font-weight: 600;
}

.phorantis-featured-reviews {
  padding: 8rem 0;
}

.phorantis-featured-review-main {
  margin-bottom: 4rem;
}

.phorantis-main-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: 400px;
}

.phorantis-review-image-container {
  position: relative;
}

.phorantis-review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.phorantis-review-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--phorantis-gold);
  color: var(--phorantis-jade);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.phorantis-rating-seal {
  width: 20px;
  height: 20px;
}

.phorantis-review-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phorantis-review-content h3 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.phorantis-review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.phorantis-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  background: rgba(239, 231, 209, 0.1);
}

.phorantis-highlight-icon {
  width: 12px;
  height: 12px;
}

.phorantis-review-categories {
  padding: 8rem 0;
  background: rgba(14, 47, 40, 0.1);
}

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

.phorantis-category-column {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-category-column:hover {
  border-color: var(--phorantis-gold);
  transform: translateY(-5px);
}

.phorantis-category-crystal {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.phorantis-category-column h3 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.phorantis-mini-review {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.1);
  transition: all 0.3s ease;
}

.phorantis-mini-review:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(5px);
}

.phorantis-mini-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.phorantis-mini-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.phorantis-mini-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.phorantis-mini-seal {
  width: 16px;
  height: 16px;
}

.phorantis-mini-rating span {
  color: var(--phorantis-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.phorantis-mini-content p {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.phorantis-mini-date {
  color: var(--phorantis-gold);
  font-size: 0.75rem;
  opacity: 0.7;
}

.phorantis-review-methodology {
  padding: 8rem 0;
}

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

.phorantis-methodology-visual {
  position: relative;
}

.phorantis-scroll-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--phorantis-shadow);
}

.phorantis-mystical-essence {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(
    45deg,
    var(--phorantis-glow),
    transparent,
    var(--phorantis-glow)
  );
  border-radius: 30px;
  z-index: -1;
  animation: phorantis-pulse 2s ease-in-out infinite;
}

.phorantis-methodology-seal {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

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

.phorantis-evaluation-aspects {
  margin-top: 2rem;
}

.phorantis-aspect-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-aspect-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateX(5px);
}

.phorantis-aspect-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.phorantis-aspect-content h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-aspect-weight {
  color: var(--phorantis-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.phorantis-legal-hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(
    135deg,
    var(--phorantis-jade) 0%,
    var(--phorantis-purple) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.phorantis-legal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  animation: phorantis-float 3s ease-in-out infinite;
}

.phorantis-legal-header h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: var(--phorantis-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(194, 168, 120, 0.5);
}

.phorantis-last-updated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: rgba(239, 231, 209, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(194, 168, 120, 0.3);
}

.phorantis-update-icon {
  width: 20px;
  height: 20px;
}

.phorantis-legal-content {
  padding: 8rem 0;
}

.phorantis-legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.phorantis-legal-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-section-seal {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

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

.phorantis-legal-section h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--phorantis-gold);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.phorantis-legal-section h4 {
  font-family: "Cinzel", serif;
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-legal-section p {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.phorantis-legal-list {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  margin: 1rem 0;
  padding-left: 2rem;
}

.phorantis-legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.phorantis-subsection {
  margin: 2rem 0;
}

.phorantis-definitions-grid,
.phorantis-prohibited-grid,
.phorantis-usage-grid,
.phorantis-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.phorantis-definition-item,
.phorantis-prohibited-item,
.phorantis-usage-item,
.phorantis-right-item {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  transition: all 0.3s ease;
}

.phorantis-definition-item:hover,
.phorantis-prohibited-item:hover,
.phorantis-usage-item:hover,
.phorantis-right-item:hover {
  border-color: var(--phorantis-gold);
  transform: translateY(-3px);
}

.phorantis-def-icon,
.phorantis-prohibit-icon,
.phorantis-usage-icon,
.phorantis-right-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
}

.phorantis-permitted-list,
.phorantis-protection-list,
.phorantis-liability-list {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-permitted-list li,
.phorantis-protection-list li,
.phorantis-liability-list li {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.phorantis-ip-details {
  margin: 2rem 0;
}

.phorantis-ip-item {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-disclaimer-box {
  background: rgba(194, 168, 120, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--phorantis-gold);
}

.phorantis-modification-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.phorantis-mod-step {
  text-align: center;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-mod-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}

.phorantis-terms-contact,
.phorantis-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.phorantis-cookie-categories {
  margin: 2rem 0;
}

.phorantis-cookie-category {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

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

.phorantis-cookie-icon {
  width: 40px;
  height: 40px;
}

.phorantis-cookie-necessity {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.phorantis-cookie-category .phorantis-cookie-necessity {
  background: var(--phorantis-gold);
  color: var(--phorantis-jade);
}

.phorantis-cookie-examples {
  margin-top: 1rem;
}

.phorantis-cookie-examples h4 {
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-cookie-examples ul {
  color: var(--phorantis-parchment);
  opacity: 0.9;
  padding-left: 1.5rem;
}

.phorantis-third-party-services {
  margin: 2rem 0;
}

.phorantis-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-service-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.phorantis-service-purpose {
  color: var(--phorantis-gold);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.5rem;
  display: block;
}

.phorantis-control-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.phorantis-control-method {
  text-align: center;
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.phorantis-control-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}

.phorantis-browser-instructions {
  margin: 2rem 0;
}

.phorantis-browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.phorantis-browser-item {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  text-align: center;
}

.phorantis-browser-item h5 {
  color: var(--phorantis-gold);
  margin-bottom: 0.5rem;
}

.phorantis-browser-item p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.phorantis-impact-scenarios,
.phorantis-retention-timeline,
.phorantis-update-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.phorantis-impact-item,
.phorantis-retention-item,
.phorantis-update-step {
  background: rgba(239, 231, 209, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(194, 168, 120, 0.2);
  text-align: center;
}

.phorantis-impact-icon,
.phorantis-retention-icon,
.phorantis-update-icon {
  width: 35px;
  height: 35px;
  margin: 0 auto 1rem;
}

.phorantis-retention-duration {
  color: var(--phorantis-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}

.phorantis-cookie-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .phorantis-legal-header h1 {
    font-size: 2rem;
  }

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

  .phorantis-main-review {
    grid-template-columns: 1fr;
  }

  .phorantis-featured-side .phorantis-news-card {
    flex-direction: column;
    height: auto;
  }

  .phorantis-featured-side .phorantis-news-image {
    width: 100%;
    height: 150px;
  }

  .phorantis-events-content,
  .phorantis-methodology-content {
    grid-template-columns: 1fr;
  }

  .phorantis-news-ticker {
    padding: 0.8rem 1rem;
  }

  .phorantis-ticker-content {
    font-size: 0.9rem;
  }

  .phorantis-legal-section {
    padding: 1.5rem;
  }

  .phorantis-definitions-grid,
  .phorantis-prohibited-grid,
  .phorantis-usage-grid,
  .phorantis-rights-grid {
    grid-template-columns: 1fr;
  }

  .phorantis-modification-process,
  .phorantis-control-methods,
  .phorantis-browser-grid,
  .phorantis-impact-scenarios,
  .phorantis-retention-timeline,
  .phorantis-update-process {
    grid-template-columns: 1fr;
  }

  .phorantis-cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
