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

body {
  font-family: "Source Sans Pro", sans-serif;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 50%, #0d1b2a 100%);
  color: #f2f5f9;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

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

.skyralis-main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

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

.skyralis-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c9a44d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skyralis-logo i {
  font-size: 1.5rem;
  animation: skyralis-star-pulse 2s infinite;
}

@keyframes skyralis-star-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.8;
  }
}

.skyralis-nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.skyralis-nav-links a {
  color: #f2f5f9;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease;
}

.skyralis-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #5e4b8b);
  transition: width 0.3s ease;
}

.skyralis-nav-links a:hover::after {
  width: 100%;
}

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

.skyralis-nav-toggle span {
  width: 25px;
  height: 3px;
  background: #c9a44d;
  transition: all 0.3s ease;
}

.skyralis-hero-cosmos {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
}

.skyralis-hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, #f2f5f9, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(201, 164, 77, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(74, 144, 226, 0.6), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(94, 75, 139, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: skyralis-stars-drift 20s linear infinite;
}

@keyframes skyralis-stars-drift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.skyralis-hero-nebula {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(94, 75, 139, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(74, 144, 226, 0.2) 0%,
      transparent 50%
    );
  animation: skyralis-nebula-flow 15s ease-in-out infinite alternate;
}

@keyframes skyralis-nebula-flow {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.1) rotate(2deg);
  }
}

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

.skyralis-hero-title h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 50%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-hero-constellation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.skyralis-hero-constellation span {
  width: 8px;
  height: 8px;
  background: #c9a44d;
  border-radius: 50%;
  animation: skyralis-constellation-twinkle 2s infinite;
}

.skyralis-hero-constellation span:nth-child(2) {
  animation-delay: 0.5s;
}
.skyralis-hero-constellation span:nth-child(3) {
  animation-delay: 1s;
}
.skyralis-hero-constellation span:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes skyralis-constellation-twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.skyralis-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(242, 245, 249, 0.9);
  line-height: 1.8;
}

.skyralis-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.skyralis-btn-cosmic {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skyralis-btn-cosmic.skyralis-primary {
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
  border: 2px solid transparent;
}

.skyralis-btn-cosmic.skyralis-secondary {
  background: transparent;
  color: #c9a44d;
  border: 2px solid #c9a44d;
}

.skyralis-btn-cosmic:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.skyralis-hero-orbital {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.skyralis-orbit {
  position: absolute;
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 50%;
  animation: skyralis-orbit-rotation 30s linear infinite;
}

.skyralis-orbit-1 {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
}

.skyralis-orbit-2 {
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  animation-duration: 45s;
  animation-direction: reverse;
}

.skyralis-planet {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #c9a44d, #5e4b8b);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
  box-shadow: 0 0 10px rgba(201, 164, 77, 0.5);
}

@keyframes skyralis-orbit-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.skyralis-gateway-worlds {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.skyralis-section-divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #5e4b8b);
}

.skyralis-section-divider i {
  color: #c9a44d;
  font-size: 1.2rem;
}

.skyralis-section-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-worlds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.skyralis-world-portal {
  position: relative;
}

.skyralis-portal-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.skyralis-portal-frame:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 164, 77, 0.5);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.skyralis-portal-energy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(74, 144, 226, 0.1) 0%,
    transparent 70%
  );
  animation: skyralis-portal-pulse 3s ease-in-out infinite;
}

@keyframes skyralis-portal-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.skyralis-portal-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.skyralis-portal-content i {
  font-size: 3rem;
  color: #c9a44d;
  margin-bottom: 20px;
}

.skyralis-portal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f2f5f9;
}

.skyralis-portal-content p {
  margin-bottom: 25px;
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
}

.skyralis-portal-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.skyralis-portal-link:hover {
  color: #c9a44d;
}

.skyralis-mythic-essence {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  position: relative;
}

.skyralis-essence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.skyralis-essence-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skyralis-essence-orb {
  position: relative;
  width: 200px;
  height: 200px;
}

.skyralis-orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: radial-gradient(circle, #c9a44d, #5e4b8b);
  border-radius: 50%;
  animation: skyralis-orb-glow 3s ease-in-out infinite;
}

@keyframes skyralis-orb-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 164, 77, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 164, 77, 0.8),
      0 0 60px rgba(74, 144, 226, 0.3);
  }
}

.skyralis-orb-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.skyralis-ring {
  position: absolute;
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  animation: skyralis-ring-rotation 15s linear infinite;
}

.skyralis-ring-1 {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.skyralis-ring-2 {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.skyralis-ring-3 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation-duration: 25s;
}

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

.skyralis-essence-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.skyralis-essence-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c9a44d;
  border-radius: 50%;
  animation: skyralis-particle-float 4s ease-in-out infinite;
}

.skyralis-essence-particles span:nth-child(1) {
  top: 20%;
  left: 80%;
  animation-delay: 0s;
}
.skyralis-essence-particles span:nth-child(2) {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
}
.skyralis-essence-particles span:nth-child(3) {
  top: 80%;
  left: 70%;
  animation-delay: 2s;
}
.skyralis-essence-particles span:nth-child(4) {
  top: 30%;
  left: 20%;
  animation-delay: 3s;
}
.skyralis-essence-particles span:nth-child(5) {
  top: 70%;
  left: 90%;
  animation-delay: 0.5s;
}

@keyframes skyralis-particle-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

.skyralis-essence-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #f2f5f9;
}

.skyralis-essence-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(242, 245, 249, 0.9);
}

.skyralis-essence-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skyralis-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.skyralis-feature-item i {
  color: #c9a44d;
  font-size: 1.3rem;
  width: 30px;
}

.skyralis-subscription-cosmos {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 50%, #0d1b2a 100%);
  position: relative;
}

.skyralis-subscription-wrapper {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 30px;
  padding: 60px 40px;
  overflow: hidden;
}

.skyralis-subscription-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.skyralis-cosmic-dust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      1px 1px at 20px 30px,
      rgba(201, 164, 77, 0.4),
      transparent
    ),
    radial-gradient(1px 1px at 40px 70px, rgba(74, 144, 226, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(94, 75, 139, 0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: skyralis-dust-drift 25s linear infinite;
}

@keyframes skyralis-dust-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-150px);
  }
}

.skyralis-subscription-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.skyralis-subscription-header {
  margin-bottom: 40px;
}

.skyralis-subscription-header i {
  font-size: 3rem;
  color: #c9a44d;
  margin-bottom: 20px;
  display: block;
}

.skyralis-subscription-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #f2f5f9;
}

.skyralis-subscription-header p {
  font-size: 1.1rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-subscription-form {
  max-width: 500px;
  margin: 0 auto;
}

.skyralis-form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.skyralis-form-group input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 50px;
  background: rgba(13, 27, 42, 0.8);
  color: #f2f5f9;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.skyralis-form-group input:focus {
  outline: none;
  border-color: #c9a44d;
  box-shadow: 0 0 20px rgba(201, 164, 77, 0.2);
}

.skyralis-form-group input::placeholder {
  color: rgba(242, 245, 249, 0.5);
}

.skyralis-submit-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.skyralis-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.skyralis-form-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 10px;
  display: none;
}

.skyralis-form-message.success {
  background: rgba(74, 144, 226, 0.2);
  color: #4a90e2;
  border: 1px solid rgba(74, 144, 226, 0.3);
}

.skyralis-form-message.error {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.skyralis-main-footer {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.skyralis-footer-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      1px 1px at 25px 35px,
      rgba(242, 245, 249, 0.3),
      transparent
    ),
    radial-gradient(1px 1px at 60px 80px, rgba(201, 164, 77, 0.4), transparent);
  background-repeat: repeat;
  background-size: 100px 120px;
}

.skyralis-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.skyralis-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.skyralis-footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #c9a44d;
}

.skyralis-footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-footer-section p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.skyralis-footer-cosmic-element {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skyralis-footer-cosmic-element i {
  color: #4a90e2;
  font-size: 1.5rem;
  animation: skyralis-moon-phase 4s ease-in-out infinite;
}

@keyframes skyralis-moon-phase {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.skyralis-footer-section ul {
  list-style: none;
}

.skyralis-footer-section ul li {
  margin-bottom: 10px;
}

.skyralis-footer-section ul li a {
  color: rgba(242, 245, 249, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.skyralis-footer-section ul li a:hover {
  color: #4a90e2;
}

.skyralis-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.skyralis-footer-bottom p {
  color: rgba(242, 245, 249, 0.6);
}

.skyralis-footer-constellation {
  display: flex;
  gap: 8px;
}

.skyralis-footer-constellation span {
  width: 6px;
  height: 6px;
  background: #4a90e2;
  border-radius: 50%;
  animation: skyralis-footer-twinkle 3s infinite;
}

.skyralis-footer-constellation span:nth-child(2) {
  animation-delay: 0.6s;
}
.skyralis-footer-constellation span:nth-child(3) {
  animation-delay: 1.2s;
}
.skyralis-footer-constellation span:nth-child(4) {
  animation-delay: 1.8s;
}
.skyralis-footer-constellation span:nth-child(5) {
  animation-delay: 2.4s;
}

@keyframes skyralis-footer-twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.skyralis-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.98),
    rgba(27, 42, 65, 0.98)
  );
  border-top: 2px solid rgba(74, 144, 226, 0.3);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  backdrop-filter: blur(20px);
}

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

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

.skyralis-cookie-text {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.skyralis-cookie-text i {
  color: #c9a44d;
  font-size: 1.5rem;
}

.skyralis-cookie-text p {
  color: #f2f5f9;
  margin: 0;
  line-height: 1.5;
}

.skyralis-cookie-actions {
  display: flex;
  gap: 15px;
}

.skyralis-cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skyralis-cookie-btn.skyralis-accept {
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
}

.skyralis-cookie-btn.skyralis-decline {
  background: transparent;
  color: #c9a44d;
  border: 2px solid #c9a44d;
}

.skyralis-cookie-btn:hover {
  transform: translateY(-2px);
}

.skyralis-about-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  text-align: center;
}

.skyralis-about-header h1 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-cosmic-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.skyralis-cosmic-separator span {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #5e4b8b);
}

.skyralis-cosmic-separator i {
  color: #c9a44d;
  font-size: 1.5rem;
}

.skyralis-about-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-mission-nebula {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.skyralis-mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.skyralis-mission-sphere {
  position: relative;
  width: 250px;
  height: 250px;
}

.skyralis-sphere-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: linear-gradient(135deg, #c9a44d, #5e4b8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201, 164, 77, 0.5);
}

.skyralis-sphere-core i {
  font-size: 2.5rem;
  color: #f2f5f9;
}

.skyralis-sphere-orbit {
  position: absolute;
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.skyralis-orbit-slow {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  animation: skyralis-orbit-rotation 20s linear infinite;
}

.skyralis-orbit-medium {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation: skyralis-orbit-rotation 15s linear infinite reverse;
}

.skyralis-orbit-fast {
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  animation: skyralis-orbit-rotation 10s linear infinite;
}

.skyralis-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #4a90e2;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
}

.skyralis-mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #f2f5f9;
}

.skyralis-mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(242, 245, 249, 0.9);
}

.skyralis-cosmic-values {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
}

.skyralis-values-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-values-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-values-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
}

.skyralis-values-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}

.skyralis-value-star {
  text-align: center;
  position: relative;
}

.skyralis-star-core {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skyralis-star-core::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(201, 164, 77, 0.3);
  border-radius: 50%;
  animation: skyralis-star-pulse 3s ease-in-out infinite;
}

@keyframes skyralis-star-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.skyralis-star-core i {
  font-size: 2rem;
  color: #f2f5f9;
}

.skyralis-star-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #c9a44d;
}

.skyralis-star-content p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.7;
}

.skyralis-contact-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  text-align: center;
}

.skyralis-contact-header h1 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-contact-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-contact-portal {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-contact-layout {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.skyralis-contact-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.skyralis-communication-array {
  position: relative;
  width: 200px;
  height: 200px;
}

.skyralis-array-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: linear-gradient(135deg, #c9a44d, #5e4b8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.skyralis-array-center i {
  font-size: 1.8rem;
  color: #f2f5f9;
}

.skyralis-signal-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.skyralis-signal-ring {
  position: absolute;
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: skyralis-signal-pulse 2s ease-out infinite;
}

.skyralis-ring-1 {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}

.skyralis-ring-2 {
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  animation-delay: 0.7s;
}

.skyralis-ring-3 {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  animation-delay: 1.4s;
}

@keyframes skyralis-signal-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.skyralis-transmission-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.skyralis-transmission-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #c9a44d;
  border-radius: 50%;
  animation: skyralis-dot-float 3s ease-in-out infinite;
}

.skyralis-transmission-dots span:nth-child(1) {
  top: 20%;
  left: 80%;
}
.skyralis-transmission-dots span:nth-child(2) {
  top: 80%;
  left: 20%;
  animation-delay: 0.8s;
}
.skyralis-transmission-dots span:nth-child(3) {
  top: 30%;
  left: 10%;
  animation-delay: 1.6s;
}
.skyralis-transmission-dots span:nth-child(4) {
  top: 70%;
  left: 90%;
  animation-delay: 2.4s;
}

@keyframes skyralis-dot-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) scale(1.3);
    opacity: 1;
  }
}

.skyralis-contact-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f2f5f9;
}

.skyralis-contact-form {
  max-width: 500px;
}

.skyralis-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.skyralis-form-field {
  margin-bottom: 25px;
}

.skyralis-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #c9a44d;
  font-weight: 600;
}

.skyralis-form-field input,
.skyralis-form-field textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 10px;
  background: rgba(13, 27, 42, 0.8);
  color: #f2f5f9;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
}

.skyralis-form-field input:focus,
.skyralis-form-field textarea:focus {
  outline: none;
  border-color: #c9a44d;
  box-shadow: 0 0 15px rgba(201, 164, 77, 0.2);
}

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

.skyralis-submit-cosmic {
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.skyralis-submit-cosmic:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

.skyralis-contact-channels {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
}

.skyralis-channels-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-channels-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-channels-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
}

.skyralis-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.skyralis-channel-card {
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.skyralis-channel-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 164, 77, 0.4);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.skyralis-channel-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skyralis-channel-icon i {
  font-size: 2rem;
  color: #f2f5f9;
}

.skyralis-channel-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #c9a44d;
}

.skyralis-channel-card p {
  margin-bottom: 20px;
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
}

.skyralis-channel-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.skyralis-channel-link:hover {
  color: #c9a44d;
}

.skyralis-channel-info {
  color: #c9a44d;
  font-weight: 600;
}

.skyralis-news-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  text-align: center;
}

.skyralis-news-header h1 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-news-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-featured-chronicles {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-chronicles-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-chronicles-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-chronicles-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
}

.skyralis-chronicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.skyralis-chronicle-card {
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.skyralis-chronicle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 77, 0.4);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.skyralis-chronicle-card.skyralis-featured {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    rgba(201, 164, 77, 0.1),
    rgba(94, 75, 139, 0.1)
  );
  border-color: rgba(201, 164, 77, 0.3);
}

.skyralis-chronicle-cosmic-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(201, 164, 77, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.skyralis-chronicle-content {
  position: relative;
  z-index: 2;
}

.skyralis-chronicle-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.skyralis-chronicle-date {
  color: #4a90e2;
  font-weight: 600;
}

.skyralis-chronicle-category {
  color: #c9a44d;
  font-weight: 600;
  padding: 5px 15px;
  background: rgba(201, 164, 77, 0.2);
  border-radius: 15px;
  font-size: 0.9rem;
}

.skyralis-chronicle-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
  line-height: 1.4;
}

.skyralis-chronicle-card p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skyralis-chronicle-stars {
  display: flex;
  gap: 5px;
}

.skyralis-chronicle-stars i {
  color: #c9a44d;
  font-size: 0.9rem;
}

.skyralis-news-constellation {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
}

.skyralis-constellation-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-constellation-header h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f2f5f9;
}

.skyralis-constellation-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.skyralis-nav-star {
  padding: 12px 25px;
  background: transparent;
  color: rgba(242, 245, 249, 0.7);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.skyralis-nav-star.active,
.skyralis-nav-star:hover {
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
  border-color: transparent;
}

.skyralis-news-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.skyralis-news-node {
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.skyralis-news-node:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 77, 0.4);
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
}

.skyralis-node-energy {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(201, 164, 77, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.skyralis-node-content {
  position: relative;
  z-index: 2;
}

.skyralis-node-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.skyralis-node-meta span:first-child {
  color: #4a90e2;
  font-weight: 600;
}

.skyralis-node-meta span:last-child {
  color: #c9a44d;
  background: rgba(201, 164, 77, 0.2);
  padding: 3px 10px;
  border-radius: 10px;
}

.skyralis-news-node h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f2f5f9;
  line-height: 1.4;
}

.skyralis-news-node p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.skyralis-reviews-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  text-align: center;
}

.skyralis-reviews-header h1 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-reviews-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.skyralis-featured-analysis {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-analysis-header {
  text-align: center;
  margin-bottom: 80px;
}

.skyralis-analysis-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f2f5f9;
}

.skyralis-analysis-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
}

.skyralis-featured-review {
  max-width: 900px;
  margin: 0 auto;
}

.skyralis-review-cosmos {
  background: linear-gradient(
    135deg,
    rgba(201, 164, 77, 0.1),
    rgba(94, 75, 139, 0.1)
  );
  border: 2px solid rgba(201, 164, 77, 0.3);
  border-radius: 25px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.skyralis-review-visual {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 150px;
  height: 150px;
}

.skyralis-review-nebula {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(201, 164, 77, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: skyralis-review-pulse 4s ease-in-out infinite;
}

@keyframes skyralis-review-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.skyralis-review-rating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.skyralis-cosmic-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a44d;
  margin-bottom: 10px;
}

.skyralis-rating-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.skyralis-rating-stars i {
  color: #c9a44d;
  font-size: 1rem;
}

.skyralis-review-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.skyralis-review-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.skyralis-review-date {
  color: #4a90e2;
  font-weight: 600;
}

.skyralis-review-genre {
  color: #c9a44d;
  background: rgba(201, 164, 77, 0.2);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 600;
}

.skyralis-review-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #f2f5f9;
  line-height: 1.4;
}

.skyralis-review-content p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.skyralis-review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.skyralis-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
}

.skyralis-highlight i {
  color: #4a90e2;
  font-size: 1.1rem;
}

.skyralis-highlight span {
  color: #f2f5f9;
  font-weight: 500;
  font-size: 0.9rem;
}

.skyralis-review-constellation {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
}

.skyralis-constellation-header h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f2f5f9;
  text-align: center;
}

.skyralis-filter-cosmos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.skyralis-filter-star {
  padding: 12px 25px;
  background: transparent;
  color: rgba(242, 245, 249, 0.7);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.skyralis-filter-star.active,
.skyralis-filter-star:hover {
  background: linear-gradient(135deg, #4a90e2, #5e4b8b);
  color: #f2f5f9;
  border-color: transparent;
}

.skyralis-reviews-galaxy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.skyralis-review-star {
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.skyralis-review-star:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 77, 0.4);
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
}

.skyralis-star-energy {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(201, 164, 77, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.skyralis-star-content {
  position: relative;
  z-index: 2;
}

.skyralis-star-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.skyralis-star-meta span {
  color: #4a90e2;
  font-weight: 600;
  font-size: 0.9rem;
}

.skyralis-mini-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skyralis-mini-rating span {
  color: #c9a44d !important;
  font-weight: 700;
  font-size: 1.2rem;
}

.skyralis-mini-stars {
  display: flex;
  gap: 2px;
}

.skyralis-mini-stars i {
  color: #c9a44d;
  font-size: 0.8rem;
}

.skyralis-review-star h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f2f5f9;
  line-height: 1.4;
}

.skyralis-review-star p {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.skyralis-star-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.skyralis-star-tags span {
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.2);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.skyralis-legal-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at center, #1b2a41 0%, #0d1b2a 70%);
  text-align: center;
}

.skyralis-legal-header h1 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f2f5f9 0%, #c9a44d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skyralis-legal-header p {
  font-size: 1.2rem;
  color: rgba(242, 245, 249, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
}

.skyralis-legal-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.skyralis-legal-meta span {
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
}

.skyralis-legal-content {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a41 100%);
}

.skyralis-legal-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

.skyralis-legal-nav {
  position: sticky;
  top: 120px;
  height: fit-content;
  background: linear-gradient(
    135deg,
    rgba(94, 75, 139, 0.1),
    rgba(74, 144, 226, 0.1)
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
}

.skyralis-legal-nav ul {
  list-style: none;
}

.skyralis-legal-nav ul li {
  margin-bottom: 10px;
}

.skyralis-legal-nav ul li a {
  color: rgba(242, 245, 249, 0.7);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.skyralis-legal-nav ul li a:hover {
  background: rgba(74, 144, 226, 0.2);
  color: #f2f5f9;
}

.skyralis-legal-text {
  max-width: 800px;
}

.skyralis-legal-section {
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(13, 27, 42, 0.3);
  border: 1px solid rgba(74, 144, 226, 0.1);
  border-radius: 15px;
}

.skyralis-legal-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #c9a44d;
  border-bottom: 2px solid rgba(201, 164, 77, 0.3);
  padding-bottom: 15px;
}

.skyralis-legal-section h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #4a90e2;
}

.skyralis-legal-section p {
  color: rgba(242, 245, 249, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.skyralis-legal-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.skyralis-legal-section ul li {
  color: rgba(242, 245, 249, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

.skyralis-legal-section strong {
  color: #c9a44d;
  font-weight: 600;
}

@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }

  .skyralis-nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: left 0.3s ease;
    backdrop-filter: blur(20px);
  }

  .skyralis-nav-links.active {
    left: 0;
  }

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

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

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

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

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

  .skyralis-hero-content p {
    font-size: 1.1rem;
  }

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

  .skyralis-worlds-grid {
    grid-template-columns: 1fr;
  }

  .skyralis-essence-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .skyralis-mission-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .skyralis-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skyralis-values-constellation {
    grid-template-columns: 1fr;
  }

  .skyralis-channels-grid {
    grid-template-columns: 1fr;
  }

  .skyralis-chronicles-grid {
    gap: 30px;
  }

  .skyralis-chronicle-card {
    padding: 30px 25px;
  }

  .skyralis-news-matrix {
    grid-template-columns: 1fr;
  }

  .skyralis-reviews-galaxy {
    grid-template-columns: 1fr;
  }

  .skyralis-featured-review .skyralis-review-cosmos {
    padding: 30px 25px;
  }

  .skyralis-review-visual {
    position: static;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
  }

  .skyralis-review-content {
    max-width: 100%;
    text-align: center;
  }

  .skyralis-review-highlights {
    justify-content: center;
  }

  .skyralis-legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skyralis-legal-nav {
    position: static;
  }

  .skyralis-legal-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .skyralis-legal-nav ul li {
    margin: 0;
  }

  .skyralis-legal-section {
    padding: 25px 20px;
  }

  .skyralis-form-group {
    flex-direction: column;
  }

  .skyralis-form-grid {
    grid-template-columns: 1fr;
  }

  .skyralis-cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .skyralis-cookie-text {
    flex-direction: column;
    gap: 15px;
  }

  .skyralis-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .skyralis-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .skyralis-section-header h2 {
    font-size: 2.2rem;
  }

  .skyralis-about-header h1,
  .skyralis-contact-header h1,
  .skyralis-news-header h1,
  .skyralis-reviews-header h1,
  .skyralis-legal-header h1 {
    font-size: 2.5rem;
  }

  .skyralis-essence-content h2,
  .skyralis-mission-content h2,
  .skyralis-contact-form-section h2 {
    font-size: 2rem;
  }

  .skyralis-orbit-1,
  .skyralis-orbit-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .skyralis-container {
    padding: 0 15px;
  }

  .skyralis-hero-title h1 {
    font-size: 2rem;
  }

  .skyralis-subscription-wrapper {
    padding: 40px 20px;
  }

  .skyralis-portal-content {
    padding: 25px;
  }

  .skyralis-chronicle-card {
    padding: 25px 20px;
  }

  .skyralis-review-star {
    padding: 25px 20px;
  }

  .skyralis-legal-section {
    padding: 20px 15px;
  }

  .skyralis-channel-card {
    padding: 30px 20px;
  }
}

/* Навигация */
.skyralis-main-nav {
  background: linear-gradient(135deg, #0b0f1a, #1a1f2e);
  border-bottom: 3px solid #4a90e2; /* бордер снизу */
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Контейнер */
.skyralis-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Лого */
.skyralis-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a90e2;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.skyralis-logo:hover {
  transform: scale(1.05);
}
.skyralis-logo-img {
  height: 40px;
  width: auto;
}

/* Ссылки */
.skyralis-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.skyralis-nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
.skyralis-nav-links a:hover,
.skyralis-nav-links a.active {
  color: #4a90e2;
}
.skyralis-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #4a90e2;
  transition: width 0.3s ease;
}
.skyralis-nav-links a:hover::after,
.skyralis-nav-links a.active::after {
  width: 100%;
}

/* Мобильное меню */
.skyralis-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.skyralis-nav-toggle span {
  width: 25px;
  height: 3px;
  background: #4a90e2;
}

/* адаптив */
@media (max-width: 768px) {
  .skyralis-nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0b0f1a;
    padding: 1rem;
  }
  .skyralis-nav-links.show {
    display: flex;
  }
  .skyralis-nav-toggle {
    display: flex;
  }
}
/* базовое */
.skyralis-main-nav {
  background: linear-gradient(135deg, #0b0f1a, #1a1f2e);
  border-bottom: 3px solid #4a90e2;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.skyralis-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skyralis-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a90e2;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.skyralis-logo-img {
  height: 40px;
  width: auto;
}

/* ссылки десктоп */
.skyralis-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.skyralis-nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.skyralis-nav-links a:hover,
.skyralis-nav-links a.active {
  color: #4a90e2;
}
.skyralis-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #4a90e2;
  transition: width 0.25s;
}
.skyralis-nav-links a:hover::after,
.skyralis-nav-links a.active::after {
  width: 100%;
}

/* бургер */
.skyralis-nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.skyralis-nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background: #4a90e2;
  transition: 0.25s;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  /* показываем бургер, прячем ссылки */
  .skyralis-nav-toggle {
    display: block;
  }
  .skyralis-nav-links {
    position: fixed;
    inset: 64px 0 0 0; /* ниже хедера */
    background: #0b0f1a;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    padding: 1rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .skyralis-nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .skyralis-nav-links li a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.05rem;
  }

  /* анимация иконки-бургера в крест */
  .skyralis-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .skyralis-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .skyralis-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* блокируем прокрутку, когда меню открыто */
  body.menu-open {
    overflow: hidden;
  }
}
.skyralis-portal-img {
  width: 100%;

  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.skyralis-portal-content:hover .skyralis-portal-img {
  transform: scale(1.05);
}

section {
  border-top: 1px solid wheat;
  border-bottom: 1px solid wheat;
}
.skyralis-mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.skyralis-mission-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(74, 144, 226, 0.4);
  transition: transform 0.5s ease;
}

.skyralis-mission-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.skyralis-mission-image:hover img {
  transform: scale(1.05);
}

.skyralis-mission-content h2 {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #4a90e2;
}

.skyralis-mission-content p {
  margin-bottom: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* адаптив */
@media (max-width: 768px) {
  .skyralis-mission-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .skyralis-mission-image {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
}

.skyralis-value-star {
  background: rgba(15, 15, 35, 0.8);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skyralis-value-star:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.skyralis-star-core {
  margin-bottom: 1rem;
}

.skyralis-star-core img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #4a90e2;
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
  transition: transform 0.3s ease;
}

.skyralis-value-star:hover .skyralis-star-core img {
  transform: scale(1.1);
}

.skyralis-star-content h3 {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.skyralis-star-content p {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 0.95rem;
}
