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

:root {
  --zephyrosk-sky-grey: #a3b5c7;
  --zephyrosk-storm-blue: #3a4f63;
  --zephyrosk-dust-white: #e6e6e6;
  --zephyrosk-amber-gold: #c9a24d;
  --zephyrosk-azure-blue: #4a90e2;
  --zephyrosk-deep-shadow: #2a3441;
  --zephyrosk-light-mist: #f5f7fa;
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  color: var(--zephyrosk-storm-blue);
  background: linear-gradient(
    135deg,
    var(--zephyrosk-light-mist) 0%,
    var(--zephyrosk-dust-white) 100%
  );
  overflow-x: hidden;
}

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

.zephyrosk-navigation {
  background: rgba(42, 52, 65, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.zephyrosk-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--zephyrosk-dust-white);
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.zephyrosk-logo i {
  margin-right: 0.5rem;
  color: var(--zephyrosk-amber-gold);
  font-size: 1.8rem;
}

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

.zephyrosk-nav-menu a {
  color: var(--zephyrosk-dust-white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.zephyrosk-nav-menu a:hover {
  background: rgba(201, 162, 77, 0.2);
  color: var(--zephyrosk-amber-gold);
  transform: translateY(-2px);
}

.zephyrosk-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.zephyrosk-nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--zephyrosk-dust-white);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.zephyrosk-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 50%,
    var(--zephyrosk-deep-shadow) 100%
  );
  overflow: hidden;
}

.zephyrosk-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/bg.jpg") center/cover;
  animation: zephyrosk-wind-flow 20s ease-in-out infinite;
}

@keyframes zephyrosk-wind-flow {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(10px) scale(1.05);
  }
}

.zephyrosk-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.zephyrosk-hero-content h1 {
  font-family: "Crimson Text", serif;
  font-size: 3.5rem;
  color: var(--zephyrosk-dust-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.zephyrosk-hero-content p {
  font-size: 1.2rem;
  color: var(--zephyrosk-dust-white);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.zephyrosk-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.zephyrosk-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.zephyrosk-btn-primary {
  background: linear-gradient(45deg, var(--zephyrosk-amber-gold), #d4b55a);
  color: var(--zephyrosk-deep-shadow);
  box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
}

.zephyrosk-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 77, 0.4);
}

.zephyrosk-btn-outline {
  background: transparent;
  color: var(--zephyrosk-dust-white);
  border: 2px solid var(--zephyrosk-amber-gold);
}

.zephyrosk-btn-outline:hover {
  background: var(--zephyrosk-amber-gold);
  color: var(--zephyrosk-deep-shadow);
  transform: translateY(-3px);
}

.zephyrosk-floating-elements {
  position: relative;
  height: 400px;
}

.zephyrosk-wind-symbol {
  position: absolute;
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  opacity: 0.7;
  animation: zephyrosk-float 6s ease-in-out infinite;
}

.zephyrosk-wind-symbol:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.zephyrosk-wind-symbol:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.zephyrosk-wind-symbol:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

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

.zephyrosk-featured-section {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

.zephyrosk-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-section-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-section-header p {
  font-size: 1.1rem;
  color: var(--zephyrosk-sky-grey);
  max-width: 600px;
  margin: 0 auto;
}

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

.zephyrosk-featured-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
}

.zephyrosk-featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zephyrosk-card-header h3,
.zephyrosk-card-header h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-card-category {
  display: inline-block;
  background: var(--zephyrosk-azure-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.zephyrosk-card-link {
  color: var(--zephyrosk-azure-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.zephyrosk-card-link:hover {
  color: var(--zephyrosk-amber-gold);
  transform: translateX(5px);
}

.zephyrosk-essence-section {
  padding: 5rem 0;
  background: white;
}

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

.zephyrosk-essence-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-essence-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.zephyrosk-essence-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zephyrosk-essence-feature:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateX(10px);
}

.zephyrosk-essence-feature i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.5rem;
}

.zephyrosk-mystic-circle {
  width: 300px;
  height: 300px;
  border: 3px solid var(--zephyrosk-azure-blue);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation: zephyrosk-circle-rotate 30s linear infinite;
}

@keyframes zephyrosk-circle-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.zephyrosk-circle-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--zephyrosk-amber-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  animation: zephyrosk-counter-rotate 30s linear infinite;
}

@keyframes zephyrosk-counter-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.zephyrosk-circle-element:nth-child(1) {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-circle-element:nth-child(2) {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.zephyrosk-circle-element:nth-child(3) {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-circle-element:nth-child(4) {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.zephyrosk-winds-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-sky-grey) 0%,
    var(--zephyrosk-azure-blue) 100%
  );
}

.zephyrosk-winds-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-winds-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.zephyrosk-winds-header p {
  color: var(--zephyrosk-dust-white);
  font-size: 1.1rem;
}

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

.zephyrosk-wind-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-wind-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(201, 162, 77, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.zephyrosk-wind-card:hover::before {
  opacity: 1;
  animation: zephyrosk-wind-sweep 0.8s ease-out;
}

@keyframes zephyrosk-wind-sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.zephyrosk-wind-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.zephyrosk-wind-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.zephyrosk-wind-card h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-wind-card h4 {
  color: var(--zephyrosk-azure-blue);
  margin-bottom: 1rem;
}

.zephyrosk-newsletter-section {
  background: linear-gradient(
    135deg,
    var(--zephyrosk-storm-blue) 0%,
    var(--zephyrosk-deep-shadow) 100%
  );
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.zephyrosk-newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="0.8" fill="rgba(255,255,255,0.08)"/><circle cx="30" cy="80" r="0.6" fill="rgba(255,255,255,0.06)"/></svg>')
    repeat;
  animation: zephyrosk-stars-twinkle 10s ease-in-out infinite;
}

@keyframes zephyrosk-stars-twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

.zephyrosk-newsletter-content {
  text-align: center;
  color: white;
}

.zephyrosk-newsletter-content h3 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.zephyrosk-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.zephyrosk-input-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--zephyrosk-storm-blue);
}

.zephyrosk-input-group input::placeholder {
  color: var(--zephyrosk-sky-grey);
}

.zephyrosk-input-group button {
  padding: 1rem 2rem;
  background: var(--zephyrosk-amber-gold);
  color: var(--zephyrosk-deep-shadow);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zephyrosk-input-group button:hover {
  background: #d4b55a;
  transform: translateY(-2px);
}

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

.zephyrosk-newsletter-message.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.zephyrosk-newsletter-message.error {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

.zephyrosk-footer {
  background: var(--zephyrosk-deep-shadow);
  color: var(--zephyrosk-dust-white);
  padding: 3rem 0 1rem;
}

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

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

.zephyrosk-footer-brand h3 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.zephyrosk-footer-column h4 {
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
  font-family: "Crimson Text", serif;
}

.zephyrosk-footer-column ul {
  list-style: none;
}

.zephyrosk-footer-column ul li {
  margin-bottom: 0.5rem;
}

.zephyrosk-footer-column ul li a {
  color: var(--zephyrosk-dust-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.zephyrosk-footer-column ul li a:hover {
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--zephyrosk-storm-blue);
  opacity: 0.8;
}

.zephyrosk-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--zephyrosk-deep-shadow);
  color: white;
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.zephyrosk-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.zephyrosk-btn-secondary {
  background: transparent;
  color: var(--zephyrosk-dust-white);
  border: 1px solid var(--zephyrosk-sky-grey);
}

.zephyrosk-btn-secondary:hover {
  background: var(--zephyrosk-sky-grey);
  color: var(--zephyrosk-deep-shadow);
}

@media (max-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }
  .zephyrosk-floating-elements {
    display: none;
  }
  .zephyrosk-nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--zephyrosk-deep-shadow);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .zephyrosk-nav-menu.active {
    left: 0;
    top: 102px;
  }

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

  .zephyrosk-hero-container {
    margin-top: 40px;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .zephyrosk-hero-content h1 {
    font-size: 2.5rem;
  }

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

  .zephyrosk-essence-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zephyrosk-winds-grid {
    grid-template-columns: 1fr;
  }

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

  .zephyrosk-footer-links {
    grid-template-columns: 1fr;
  }

  .zephyrosk-input-group {
    flex-direction: column;
  }

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

  .zephyrosk-hero-buttons {
    justify-content: center;
  }
}

.zephyrosk-about-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 100%
  );
  text-align: center;
  color: white;
}

.zephyrosk-about-hero h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-mission-section {
  padding: 5rem 0;
  background: white;
}

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

.zephyrosk-mission-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.zephyrosk-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zephyrosk-pillar:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateX(10px);
}

.zephyrosk-pillar i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.5rem;
}

.zephyrosk-mythology-circle {
  width: 350px;
  height: 350px;
  border: 3px solid var(--zephyrosk-azure-blue);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation: zephyrosk-mythology-spin 25s linear infinite;
}

@keyframes zephyrosk-mythology-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.zephyrosk-myth-element {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--zephyrosk-amber-gold), #d4b55a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  animation: zephyrosk-counter-mythology 25s linear infinite;
  box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

@keyframes zephyrosk-counter-mythology {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.zephyrosk-myth-1 {
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-myth-2 {
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}
.zephyrosk-myth-3 {
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-myth-4 {
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.zephyrosk-central-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--zephyrosk-storm-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zephyrosk-amber-gold);
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.zephyrosk-philosophy-section {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

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

.zephyrosk-philosophy-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-philosophy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(74, 144, 226, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.zephyrosk-philosophy-card:hover::before {
  opacity: 1;
  animation: zephyrosk-card-sweep 0.8s ease-out;
}

@keyframes zephyrosk-card-sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.zephyrosk-philosophy-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zephyrosk-philosophy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.zephyrosk-philosophy-card h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-journey-section {
  padding: 5rem 0;
  background: white;
}

.zephyrosk-journey-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-journey-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-journey-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.zephyrosk-journey-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--zephyrosk-azure-blue);
  transform: translateX(-50%);
}

.zephyrosk-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.zephyrosk-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.zephyrosk-timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--zephyrosk-amber-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 2rem;
  z-index: 2;
  position: relative;
}

.zephyrosk-timeline-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.zephyrosk-timeline-content h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-values-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-sky-grey) 0%,
    var(--zephyrosk-azure-blue) 100%
  );
  text-align: center;
}

.zephyrosk-values-content h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.zephyrosk-values-content p {
  color: var(--zephyrosk-dust-white);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.zephyrosk-values-hexagon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.zephyrosk-value-hex {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 auto;
}

.zephyrosk-value-hex:hover {
  transform: translateY(-10px) scale(1.05);
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.zephyrosk-value-hex i {
  font-size: 2rem;
  color: var(--zephyrosk-azure-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-value-hex span {
  font-weight: 600;
  color: var(--zephyrosk-storm-blue);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .zephyrosk-mission-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zephyrosk-timeline-item {
    flex-direction: column !important;
    text-align: center;
  }

  .zephyrosk-timeline-item:nth-child(even) {
    flex-direction: column !important;
  }

  .zephyrosk-journey-timeline::before {
    display: none;
  }

  .zephyrosk-timeline-icon {
    margin: 0 0 1rem 0;
  }

  .zephyrosk-values-hexagon {
    grid-template-columns: repeat(2, 1fr);
  }

  .zephyrosk-about-hero h1 {
    font-size: 2.5rem;
  }
}

.zephyrosk-contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 100%
  );
  text-align: center;
  color: white;
}

.zephyrosk-contact-hero h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-contact-main {
  padding: 5rem 0;
  background: white;
}

.zephyrosk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.zephyrosk-contact-info h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.zephyrosk-contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zephyrosk-contact-method:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateX(10px);
}

.zephyrosk-method-icon {
  width: 60px;
  height: 60px;
  background: var(--zephyrosk-amber-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.zephyrosk-method-content h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-contact-method:hover .zephyrosk-method-content h4 {
  color: white;
}

.zephyrosk-method-content a {
  color: var(--zephyrosk-azure-blue);
  text-decoration: none;
  font-weight: 600;
}

.zephyrosk-contact-method:hover .zephyrosk-method-content a {
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-contact-form-container {
  background: var(--zephyrosk-light-mist);
  border-radius: 20px;
  padding: 2rem;
}

.zephyrosk-contact-form {
  max-width: 100%;
}

.zephyrosk-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.zephyrosk-form-header h3 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.zephyrosk-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.zephyrosk-form-group label {
  display: block;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.zephyrosk-form-group input,
.zephyrosk-form-group select,
.zephyrosk-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--zephyrosk-dust-white);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--zephyrosk-storm-blue);
}

.zephyrosk-form-group input:focus,
.zephyrosk-form-group select:focus,
.zephyrosk-form-group textarea:focus {
  outline: none;
  border-color: var(--zephyrosk-azure-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.zephyrosk-form-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zephyrosk-amber-gold);
  transition: width 0.3s ease;
}

.zephyrosk-form-group input:focus + .zephyrosk-form-focus,
.zephyrosk-form-group select:focus + .zephyrosk-form-focus,
.zephyrosk-form-group textarea:focus + .zephyrosk-form-focus {
  width: 100%;
}

.zephyrosk-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

.zephyrosk-contact-message.success {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.zephyrosk-contact-message.error {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid #f44336;
}

.zephyrosk-contact-reasons {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

.zephyrosk-reasons-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-reasons-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

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

.zephyrosk-reason-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-reason-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(201, 162, 77, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.zephyrosk-reason-card:hover::before {
  opacity: 1;
  animation: zephyrosk-reason-sweep 0.8s ease-out;
}

@keyframes zephyrosk-reason-sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.zephyrosk-reason-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zephyrosk-reason-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.zephyrosk-reason-card h4 {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-contact-cta {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-storm-blue) 0%,
    var(--zephyrosk-deep-shadow) 100%
  );
  position: relative;
  overflow: hidden;
}

.zephyrosk-cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.zephyrosk-cta-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-cta-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.zephyrosk-cta-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.zephyrosk-floating-feather,
.zephyrosk-floating-scroll,
.zephyrosk-floating-star {
  position: absolute;
  color: rgba(201, 162, 77, 0.3);
  font-size: 3rem;
  animation: zephyrosk-cta-float 8s ease-in-out infinite;
}

.zephyrosk-floating-feather {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.zephyrosk-floating-scroll {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.zephyrosk-floating-star {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes zephyrosk-cta-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .zephyrosk-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .zephyrosk-contact-hero h1 {
    font-size: 2.5rem;
  }

  .zephyrosk-contact-methods {
    margin-bottom: 2rem;
  }
}

.zephyrosk-news-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 100%
  );
  text-align: center;
  color: white;
}

.zephyrosk-news-hero h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-news-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.zephyrosk-stat {
  text-align: center;
}

.zephyrosk-stat-number {
  display: block;
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.zephyrosk-breaking-news {
  padding: 5rem 0;
  background: white;
}

.zephyrosk-breaking-header {
  margin-bottom: 2rem;
}

.zephyrosk-breaking-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.zephyrosk-breaking-header i {
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-breaking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.zephyrosk-breaking-main {
  background: var(--zephyrosk-light-mist);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.zephyrosk-breaking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #ff4444, #ff6666);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: zephyrosk-pulse-red 2s ease-in-out infinite;
}

@keyframes zephyrosk-pulse-red {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }
}

.zephyrosk-breaking-main h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-breaking-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--zephyrosk-sky-grey);
  font-size: 0.9rem;
}

.zephyrosk-breaking-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zephyrosk-breaking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zephyrosk-trending-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.zephyrosk-trending-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.zephyrosk-trending-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.zephyrosk-trending-item span {
  color: var(--zephyrosk-azure-blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.zephyrosk-news-categories {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

.zephyrosk-categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-categories-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

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

.zephyrosk-category-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
}

.zephyrosk-category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.zephyrosk-category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.zephyrosk-category-card h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-category-news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zephyrosk-mini-news {
  padding: 1rem;
  background: var(--zephyrosk-light-mist);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.zephyrosk-mini-news:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
}

.zephyrosk-mini-news h5 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.zephyrosk-mini-news:hover h5 {
  color: white;
}

.zephyrosk-mini-news p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.zephyrosk-mini-news span {
  font-size: 0.8rem;
  color: var(--zephyrosk-azure-blue);
  font-weight: 600;
}

.zephyrosk-mini-news:hover span {
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-industry-insights {
  padding: 5rem 0;
  background: white;
}

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

.zephyrosk-insights-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-insights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.zephyrosk-insight-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zephyrosk-insight-item:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateX(10px);
}

.zephyrosk-insight-item i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.zephyrosk-insight-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-insight-item:hover h4 {
  color: white;
}

.zephyrosk-crystal-ball {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(74, 144, 226, 0.3) 100%
  );
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zephyrosk-prophecy-swirl {
  width: 100px;
  height: 100px;
  background: var(--zephyrosk-amber-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 2;
  box-shadow: 0 0 30px rgba(201, 162, 77, 0.5);
}

.zephyrosk-prediction-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.zephyrosk-ring-1 {
  width: 150px;
  height: 150px;
  top: -75px;
  left: -75px;
  animation-delay: 0s;
}

.zephyrosk-ring-2 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation-delay: 1s;
}

.zephyrosk-ring-3 {
  width: 250px;
  height: 250px;
  top: -125px;
  left: -125px;
  animation-delay: 2s;
}

@keyframes zephyrosk-ring-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.zephyrosk-news-timeline {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

.zephyrosk-timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-timeline-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-news-timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.zephyrosk-news-timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--zephyrosk-azure-blue);
  transform: translateX(-50%);
}

.zephyrosk-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.zephyrosk-timeline-left {
  justify-content: flex-end;
}

.zephyrosk-timeline-right {
  justify-content: flex-start;
}

.zephyrosk-timeline-date {
  background: var(--zephyrosk-amber-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin: 0 2rem;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.zephyrosk-timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transition: all 0.3s ease;
}

.zephyrosk-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.zephyrosk-timeline-content h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-timeline-category {
  display: inline-block;
  background: var(--zephyrosk-azure-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .zephyrosk-news-hero h1 {
    font-size: 2.5rem;
  }

  .zephyrosk-news-stats {
    gap: 1.5rem;
  }

  .zephyrosk-breaking-content {
    grid-template-columns: 1fr;
  }

  .zephyrosk-insights-content {
    grid-template-columns: 1fr;
  }

  .zephyrosk-timeline-left,
  .zephyrosk-timeline-right {
    flex-direction: column;
    text-align: center;
  }

  .zephyrosk-news-timeline-container::before {
    display: none;
  }

  .zephyrosk-timeline-date {
    margin: 0 0 1rem 0;
  }
}

.zephyrosk-reviews-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 100%
  );
  text-align: center;
  color: white;
}

.zephyrosk-reviews-hero h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-review-philosophy {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.zephyrosk-philosophy-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--zephyrosk-dust-white);
}

.zephyrosk-philosophy-point i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.2rem;
}

.zephyrosk-featured-reviews {
  padding: 5rem 0;
  background: white;
}

.zephyrosk-featured-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-featured-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

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

.zephyrosk-featured-review {
  background: var(--zephyrosk-light-mist);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.zephyrosk-review-masterpiece::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
}

.zephyrosk-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: var(--zephyrosk-deep-shadow);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.zephyrosk-review-header h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  color: var(--zephyrosk-storm-blue);
  flex: 1;
}

.zephyrosk-review-score {
  text-align: center;
  margin-left: 1rem;
}

.zephyrosk-score-number {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--zephyrosk-amber-gold);
  display: block;
  line-height: 1;
}

.zephyrosk-score-stars {
  color: var(--zephyrosk-amber-gold);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

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

.zephyrosk-highlight {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.zephyrosk-highlight-excellent {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.zephyrosk-highlight-good {
  background: rgba(74, 144, 226, 0.2);
  color: var(--zephyrosk-azure-blue);
}

.zephyrosk-review-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--zephyrosk-sky-grey);
  font-size: 0.9rem;
}

.zephyrosk-review-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zephyrosk-review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zephyrosk-quick-review {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.zephyrosk-quick-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.zephyrosk-quick-review h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.zephyrosk-quick-score {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--zephyrosk-azure-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.zephyrosk-quick-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.zephyrosk-quick-tags span {
  background: var(--zephyrosk-light-mist);
  color: var(--zephyrosk-storm-blue);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
}

.zephyrosk-review-methodology {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

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

.zephyrosk-methodology-text h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1.5rem;
}

.zephyrosk-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.zephyrosk-criteria-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.zephyrosk-criteria-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.zephyrosk-criteria-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.zephyrosk-criteria-content h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-judgment-wheel {
  width: 300px;
  height: 300px;
  border: 3px solid var(--zephyrosk-azure-blue);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation: zephyrosk-judgment-rotate 20s linear infinite;
}

@keyframes zephyrosk-judgment-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.zephyrosk-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--zephyrosk-amber-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 2;
}

.zephyrosk-wheel-section {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--zephyrosk-azure-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  animation: zephyrosk-counter-judgment 20s linear infinite;
}

@keyframes zephyrosk-counter-judgment {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.zephyrosk-section-story {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-section-art {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.zephyrosk-section-gameplay {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.zephyrosk-section-atmosphere {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.zephyrosk-genre-reviews {
  padding: 5rem 0;
  background: white;
}

.zephyrosk-genre-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-genre-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

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

.zephyrosk-genre-card {
  background: var(--zephyrosk-light-mist);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zephyrosk-genre-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
}

.zephyrosk-genre-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: white;
}

.zephyrosk-genre-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--zephyrosk-azure-blue),
    var(--zephyrosk-amber-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.zephyrosk-genre-card h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-genre-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--zephyrosk-sky-grey);
}

.zephyrosk-genre-highlights {
  margin-top: 1.5rem;
}

.zephyrosk-genre-game {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.zephyrosk-genre-game:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
}

.zephyrosk-game-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.zephyrosk-game-score {
  background: var(--zephyrosk-amber-gold);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
}

.zephyrosk-recent-reviews {
  padding: 5rem 0;
  background: var(--zephyrosk-light-mist);
}

.zephyrosk-recent-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zephyrosk-recent-header h2 {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-recent-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.zephyrosk-review-item {
  display: flex;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.zephyrosk-review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.zephyrosk-review-info {
  flex: 1;
}

.zephyrosk-review-info h4 {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-review-tags {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.zephyrosk-review-tags span {
  background: var(--zephyrosk-azure-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
}

.zephyrosk-review-date {
  color: var(--zephyrosk-sky-grey);
  font-size: 0.9rem;
}

.zephyrosk-review-rating {
  text-align: center;
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zephyrosk-rating-number {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--zephyrosk-amber-gold);
  line-height: 1;
}

.zephyrosk-rating-label {
  color: var(--zephyrosk-azure-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .zephyrosk-reviews-hero h1 {
    font-size: 2.5rem;
  }

  .zephyrosk-review-philosophy {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

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

  .zephyrosk-methodology-content {
    grid-template-columns: 1fr;
  }

  .zephyrosk-review-item {
    flex-direction: column;
    text-align: center;
  }

  .zephyrosk-review-rating {
    margin-left: 0;
    margin-top: 1rem;
  }

  .zephyrosk-review-header {
    flex-direction: column;
    text-align: center;
  }

  .zephyrosk-review-score {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.zephyrosk-legal-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(
    135deg,
    var(--zephyrosk-azure-blue) 0%,
    var(--zephyrosk-storm-blue) 100%
  );
  text-align: center;
  color: white;
}

.zephyrosk-legal-hero h1 {
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-legal-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.zephyrosk-legal-content {
  padding: 5rem 0;
  background: white;
}

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

.zephyrosk-legal-nav {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.zephyrosk-legal-nav h3 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

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

.zephyrosk-legal-nav ul li {
  margin-bottom: 0.5rem;
}

.zephyrosk-legal-nav ul li a {
  color: var(--zephyrosk-azure-blue);
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.zephyrosk-legal-nav ul li a:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateX(5px);
}

.zephyrosk-legal-text {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zephyrosk-legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--zephyrosk-dust-white);
}

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

.zephyrosk-legal-section h2 {
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 1rem;
}

.zephyrosk-legal-section h3 {
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  color: var(--zephyrosk-azure-blue);
  margin: 1.5rem 0 1rem 0;
}

.zephyrosk-legal-section h4 {
  color: var(--zephyrosk-storm-blue);
  margin: 1rem 0 0.5rem 0;
}

.zephyrosk-legal-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.zephyrosk-legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.zephyrosk-legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

.zephyrosk-use-item {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.zephyrosk-use-item:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateY(-5px);
}

.zephyrosk-use-item i {
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-use-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-use-item:hover h4 {
  color: white;
}

.zephyrosk-sharing-list,
.zephyrosk-rights-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.zephyrosk-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.zephyrosk-sharing-item,
.zephyrosk-right-item {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.zephyrosk-right-item {
  text-align: center;
}

.zephyrosk-sharing-item:hover,
.zephyrosk-right-item:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateY(-5px);
}

.zephyrosk-right-item i {
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-sharing-item h4,
.zephyrosk-right-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-sharing-item:hover h4,
.zephyrosk-right-item:hover h4 {
  color: white;
}

.zephyrosk-contact-info {
  margin: 2rem 0;
}

.zephyrosk-contact-method {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--zephyrosk-light-mist);
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.zephyrosk-contact-method:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
}

.zephyrosk-contact-method i {
  font-size: 1.5rem;
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-contact-method h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-contact-method:hover h4 {
  color: white;
}

.zephyrosk-contact-method a {
  color: var(--zephyrosk-azure-blue);
  text-decoration: none;
  font-weight: 600;
}

.zephyrosk-contact-method:hover a {
  color: var(--zephyrosk-amber-gold);
}

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

.zephyrosk-cookie-item,
.zephyrosk-usage-item,
.zephyrosk-management-option {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.zephyrosk-cookie-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.zephyrosk-usage-item,
.zephyrosk-management-option {
  text-align: center;
}

.zephyrosk-cookie-item:hover,
.zephyrosk-usage-item:hover,
.zephyrosk-management-option:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateY(-5px);
}

.zephyrosk-cookie-item i,
.zephyrosk-usage-item i,
.zephyrosk-management-option i {
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-cookie-item h4,
.zephyrosk-usage-item h4,
.zephyrosk-management-option h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-cookie-item:hover h4,
.zephyrosk-usage-item:hover h4,
.zephyrosk-management-option:hover h4 {
  color: white;
}

.zephyrosk-cookie-types {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.zephyrosk-cookie-type {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.zephyrosk-cookie-type:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

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

.zephyrosk-cookie-header h3 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.zephyrosk-cookie-header i {
  color: var(--zephyrosk-amber-gold);
}

.zephyrosk-cookie-status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.zephyrosk-essential {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.zephyrosk-optional {
  background: rgba(74, 144, 226, 0.2);
  color: var(--zephyrosk-azure-blue);
}

.zephyrosk-cookie-type ul {
  margin-top: 1rem;
}

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

.zephyrosk-browser-item {
  background: var(--zephyrosk-light-mist);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.zephyrosk-browser-item h5 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

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

.zephyrosk-consent-item {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.zephyrosk-consent-item:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateY(-5px);
}

.zephyrosk-consent-item i {
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-consent-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-consent-item:hover h4 {
  color: white;
}

.zephyrosk-consent-note,
.zephyrosk-update-commitment {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.zephyrosk-consent-note i,
.zephyrosk-update-commitment i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.zephyrosk-terms-highlight {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--zephyrosk-amber-gold);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.zephyrosk-terms-highlight i {
  color: var(--zephyrosk-amber-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.zephyrosk-service-grid,
.zephyrosk-content-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.zephyrosk-service-item,
.zephyrosk-principle-item {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.zephyrosk-service-item:hover,
.zephyrosk-principle-item:hover {
  background: var(--zephyrosk-azure-blue);
  color: white;
  transform: translateY(-5px);
}

.zephyrosk-service-item i {
  font-size: 2rem;
  color: var(--zephyrosk-amber-gold);
  margin-bottom: 1rem;
}

.zephyrosk-service-item h4,
.zephyrosk-principle-item h4 {
  font-family: "Crimson Text", serif;
  color: var(--zephyrosk-storm-blue);
  margin-bottom: 0.5rem;
}

.zephyrosk-service-item:hover h4,
.zephyrosk-principle-item:hover h4 {
  color: white;
}

.zephyrosk-prohibited-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.zephyrosk-prohibited-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--zephyrosk-light-mist);
  padding: 1rem;
  border-radius: 10px;
}

.zephyrosk-prohibited-item i {
  color: #f44336;
  font-size: 1.2rem;
}

.zephyrosk-liability-note {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.zephyrosk-liability-note i {
  color: var(--zephyrosk-azure-blue);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.zephyrosk-terms-footer {
  background: var(--zephyrosk-light-mist);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .zephyrosk-legal-content {
    grid-template-columns: 1fr;
  }

  .zephyrosk-legal-nav {
    position: static;
    order: 2;
    margin-top: 2rem;
  }

  .zephyrosk-legal-hero h1 {
    font-size: 2.5rem;
  }

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

  .zephyrosk-use-grid,
  .zephyrosk-rights-grid,
  .zephyrosk-cookie-explanation,
  .zephyrosk-usage-grid,
  .zephyrosk-management-options,
  .zephyrosk-consent-info,
  .zephyrosk-service-grid,
  .zephyrosk-content-principles,
  .zephyrosk-browser-instructions {
    grid-template-columns: 1fr;
  }
}

/* Базовые */
.zephyrosk-nav-menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.zephyrosk-nav-item {
}
.zephyrosk-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  color: var(--torvethis-mist, #e5e5e5);
  font-weight: 600;
  transition: color 0.25s ease, transform 0.2s ease;
  z-index: 0; /* важно: квадрат будет под текстом */
}
.zephyrosk-nav-link:hover {
  color: var(--torvethis-gold, #c6a756);
}

/* Квадрат-подсветка для активного пункта */
.zephyrosk-nav-item.is-active .zephyrosk-nav-link {
  color: var(--torvethis-white, #fff);
}

.zephyrosk-nav-item.is-active .nav-square {
  --size: 38px; /* можно 42px, см. адаптив ниже */
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%) rotate(8deg);
  border-radius: 10px; /* мягкий квадрат */
  background: linear-gradient(
    135deg,
    rgba(198, 167, 86, 0.18),
    rgba(59, 110, 145, 0.18)
  );
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 1px rgba(198, 167, 86, 0.35) inset,
    0 8px 24px rgba(198, 167, 86, 0.18), 0 4px 14px rgba(59, 110, 145, 0.18);
  backdrop-filter: blur(6px);
  z-index: -1; /* уводим под текст */
}

/* Необычный “свечащийся контур” поверх */
.zephyrosk-nav-item.is-active .nav-square::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(198, 167, 86, 0.65),
    rgba(59, 110, 145, 0.65),
    rgba(198, 167, 86, 0.65)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px; /* толщина “неон-рамки” */
  opacity: 0.55;
  filter: blur(0.2px);
  pointer-events: none;
}

/* Подгоняем текст, чтобы он был поверх квадрата */
.zephyrosk-nav-item.is-active .nav-label {
  position: relative;
  z-index: 1;
}

/* Адаптив — на мобилках квадрат чуть больше */
@media (max-width: 768px) {
  .zephyrosk-nav-item.is-active .nav-square {
    --size: 44px;
  }
}

/* Опционально: hover-эффект квадрата у остальных пунктов (легкий) */
.zephyrosk-nav-item:not(.is-active) .zephyrosk-nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(8deg);
  border-radius: 10px;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: -1;
}
.zephyrosk-nav-item:not(.is-active) .zephyrosk-nav-link:hover::before {
  width: 34px;
  height: 34px;
  background: linear-gradient(
    135deg,
    rgba(198, 167, 86, 0.1),
    rgba(59, 110, 145, 0.1)
  );
}

/* Контейнер */
.zephyrosk-navigation {
  background: rgba(45, 27, 61, 0.95);
  border-bottom: 2px solid var(--torvethis-gold, #c6a756);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

/* Лого */
.zephyrosk-logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--torvethis-gold, #c6a756);
  text-decoration: none;
}

.zephyrosk-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

/* Меню */
.zephyrosk-nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.zephyrosk-nav-link {
  position: relative;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--torvethis-mist, #e5e5e5);
  transition: color 0.25s ease;
}

.zephyrosk-nav-link:hover {
  color: var(--torvethis-gold, #c6a756);
}

/* АКТИВНЫЙ пункт */
.zephyrosk-nav-item.is-active .zephyrosk-nav-link {
  color: var(--torvethis-white, #fff);
  font-weight: 700;
}

.zephyrosk-nav-item.is-active .zephyrosk-nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(198, 167, 86, 0.25),
    rgba(59, 110, 145, 0.25)
  );
  border: 2px solid var(--torvethis-gold, #c6a756);
  box-shadow: 0 0 15px rgba(198, 167, 86, 0.6), 0 0 30px rgba(59, 110, 145, 0.4);
  z-index: -1;
  transform: rotate(3deg);
}

/* -------- Base layout -------- */
.zephyrosk-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--torvethis-mist, #e5e5e5);
}
.zephyrosk-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}
@media (max-width: 980px) {
  .zephyrosk-hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -------- Background image + overlays -------- */
.zephyrosk-hero-background {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  animation: zephyrosk-parallax 30s ease-in-out infinite alternate;
}
@keyframes zephyrosk-parallax {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-12px);
  }
}

/* soft gradient veil for readability */
.zephyrosk-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      1200px 600px at 15% 25%,
      rgba(59, 110, 145, 0.36),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(45, 27, 61, 0.65) 0%,
      rgba(26, 15, 36, 0.85) 70%,
      rgba(26, 15, 36, 0.95) 100%
    );
}

/* subtle film grain */
.zephyrosk-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/ %3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* flowing particles (wind) */
.zephyrosk-hero-particles {
  position: absolute;
  inset: -20% -10% 0 -10%;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(
        8px 8px at 50% 50%,
        rgba(198, 167, 86, 0.45),
        transparent 60%
      )
      0 0/160px 160px,
    radial-gradient(
        6px 6px at 20% 30%,
        rgba(59, 110, 145, 0.45),
        transparent 60%
      )
      80px 40px/180px 180px,
    radial-gradient(
        5px 5px at 70% 60%,
        rgba(255, 255, 255, 0.35),
        transparent 60%
      )
      40px 120px/220px 220px;
  animation: zephyrosk-wind 22s linear infinite;
  filter: blur(0.3px);
}
@keyframes zephyrosk-wind {
  0% {
    transform: translateX(-6%) translateY(0);
  }
  100% {
    transform: translateX(6%) translateY(-12px);
  }
}

/* -------- Glass card -------- */
.zephyrosk-hero-card {
  padding: clamp(1rem, 2.5vw, 2rem);
  background: rgba(45, 27, 61, 0.45);
  border: 1px solid rgba(198, 167, 86, 0.35);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: left;
}
@media (max-width: 980px) {
  .zephyrosk-hero-card {
    text-align: center;
  }
}

/* -------- Typography -------- */
.zephyrosk-hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 0.6rem;
  background: linear-gradient(45deg, #c6a756, #3b6e91 60%, #dad3b2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(198, 167, 86, 0.25);
  animation: zephyrosk-glow 4.5s ease-in-out infinite alternate;
}
@keyframes zephyrosk-glow {
  0% {
    text-shadow: 0 0 14px rgba(198, 167, 86, 0.28), 0 0 0 rgba(59, 110, 145, 0);
  }
  100% {
    text-shadow: 0 0 18px rgba(198, 167, 86, 0.35),
      0 0 30px rgba(59, 110, 145, 0.25);
  }
}
.zephyrosk-hero-subtitle {
  color: var(--torvethis-silver, #9fa3b1);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  margin: 0 0 1rem;
}

/* -------- Buttons -------- */
.zephyrosk-hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .zephyrosk-hero-buttons {
    justify-content: center;
  }
}

.zephyrosk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}
.zephyrosk-btn-primary {
  background: linear-gradient(45deg, #c6a756, #3b6e91);
  color: #fff;
  box-shadow: 0 12px 28px rgba(198, 167, 86, 0.25);
}
.zephyrosk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(198, 167, 86, 0.34);
}

.zephyrosk-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 167, 86, 0.55);
  color: #fff;
}
.zephyrosk-btn-outline:hover {
  background: #3b6e91;
  border-color: #3b6e91;
  color: #fff;
  transform: translateY(-2px);
}

/* -------- Floating “wind” elements -------- */
.zephyrosk-hero-visual {
  position: relative;
}
.zephyrosk-floating-elements {
  position: relative;
  width: 100%;
  height: 320px;
}
.zephyrosk-wind-symbol {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 26px;
  background: linear-gradient(
    140deg,
    rgba(198, 167, 86, 0.22),
    rgba(59, 110, 145, 0.22)
  );
  border: 1px solid rgba(198, 167, 86, 0.38);
  box-shadow: 0 14px 34px rgba(59, 110, 145, 0.22),
    0 6px 16px rgba(198, 167, 86, 0.18);
  filter: saturate(110%);
  backdrop-filter: blur(6px);
  animation: zephyrosk-float 6s ease-in-out infinite;
}
.zs-1 {
  left: 10%;
  top: 14%;
  animation-delay: 0.2s;
  transform: rotate(-8deg);
}
.zs-2 {
  right: 8%;
  top: 36%;
  animation-delay: 0.6s;
  transform: rotate(6deg);
}
.zs-3 {
  left: 32%;
  bottom: 4%;
  animation-delay: 1s;
  transform: rotate(-2deg);
}

@keyframes zephyrosk-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--rot, 0deg) + 2deg));
  }
}

/* -------- A11y / motion respect -------- */
@media (prefers-reduced-motion: reduce) {
  .zephyrosk-hero-background,
  .zephyrosk-hero-particles,
  .zephyrosk-wind-symbol,
  .zephyrosk-hero-title {
    animation: none !important;
  }
}
.zephyrosk-category-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(45, 27, 61, 0.5);
  border: 1px solid rgba(198, 167, 86, 0.35);
}

.zephyrosk-category-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.zephyrosk-category-card:hover .zephyrosk-category-poster img {
  transform: scale(1.07);
}

.zephyrosk-category-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(26, 15, 36, 0.7);
  border: 1px solid rgba(198, 167, 86, 0.6);
  color: var(--torvethis-gold, #c6a756);
  backdrop-filter: blur(4px);
  font-weight: 600;
}
.zephyrosk-genre-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(45, 27, 61, 0.5);
  border: 1px solid rgba(198, 167, 86, 0.35);
}

.zephyrosk-genre-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.zephyrosk-genre-card:hover .zephyrosk-genre-poster img {
  transform: scale(1.07);
}

.zephyrosk-genre-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 999px;
  background: rgba(26, 15, 36, 0.7);
  border: 1px solid rgba(198, 167, 86, 0.6);
  color: var(--torvethis-gold, #c6a756);
  backdrop-filter: blur(4px);
  font-weight: 600;
}
/* визуал справа */
.zephyrosk-mission-image {
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(198, 167, 86, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 25px rgba(198, 167, 86, 0.25);
}
.zephyrosk-mission-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.zephyrosk-mission-image:hover img {
  transform: scale(1.05);
}

/* pillars */
.zephyrosk-mission-pillars {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.zephyrosk-pillar {
  text-align: center;
  flex: 1;
}
.zephyrosk-pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(198, 167, 86, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  background: rgba(45, 27, 61, 0.6);
}
.zephyrosk-pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zephyrosk-pillar h4 {
  margin-bottom: 0.4rem;
  color: var(--torvethis-gold, #c6a756);
}
.zephyrosk-pillar p {
  font-size: 0.9rem;
  color: var(--torvethis-silver, #9fa3b1);
}
