/* 
  Gospa Sinjska Website - Dark Modern Theme
  Main CSS File - Enhanced with more animations and colors
*/

/* ======= Base Styles ======= */
:root {
  --primary-color: #a87d32;
  --secondary-color: #8d6a1a;
  --dark-color: #121212;
  --darker-color: #0a0a0a;
  --light-color: #f4f4f4;
  --text-color: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
  --overlay-color: rgba(0, 0, 0, 0.7);
  --transition: all 0.3s ease-in-out;
  --cubic-bezier: cubic-bezier(0.645, 0.045, 0.355, 1);
  --fanfiction-primary: #9b6dff;
  --fanfiction-secondary: #4b0082;
  --fanfiction-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  --neon-pink: #ff00ff;
  --neon-blue: #00ffff;
  --neon-purple: #bc13fe;
  --neon-green: #39ff14;
  --vibrant-gradient: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-blue), var(--neon-green));
  --aurora-gradient: linear-gradient(to right, #ff0080, #ff8c00, #ffee00, #00ff00, #00ffff, #0000ff, #8b00ff);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--light-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--light-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(155, 109, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  animation: spinSlow 60s linear infinite;
  pointer-events: none;
}

.section-dark {
  background-color: var(--darker-color);
}

.section-dark::before {
  background: radial-gradient(ellipse at center, rgba(75, 0, 130, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

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

.divider {
  width: 10rem;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: dividerShine 3s ease-in-out infinite;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 40rem;
}

/* ======= Custom Cursor ======= */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: difference;
  backdrop-filter: invert(1);
  animation: cursorPulse 2s infinite alternate;
}

body:hover .cursor {
  opacity: 1;
}

/* ======= Loader ======= */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: var(--transition);
  animation: fadeOut 3s forwards;
}

.loader-content {
  text-align: center;
}

.loader-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  animation: pulse 1.5s infinite;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  80% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ======= Header ======= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155, 109, 255, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--light-color);
  position: relative;
  z-index: 1;
}

.logo::before {
  content: attr(text);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--primary-color);
  z-index: -1;
  animation: logoWave 2s ease-in-out infinite;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--light-color);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--primary-color);
}

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

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ======= Hero Section ======= */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://cdn.pixabay.com/photo/2016/01/22/20/42/man-1156619_1280.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxmaWx0ZXIgaWQ9Im4iPgogICAgPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNzUiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz4KICA8L2ZpbHRlcj4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbikiIG9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
  z-index: 0;
  animation: fadeInOut 10s ease-in-out infinite alternate;
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 80rem;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 7rem;
  color: var(--light-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.hero h1::before, .hero h1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  filter: blur(30px);
  opacity: 0.3;
  transform-origin: center;
  animation: titleGlow 5s ease-in-out infinite alternate;
}

.hero h1::after {
  filter: blur(50px);
  opacity: 0.2;
  animation-delay: 0.5s;
}

.hero h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: colorShift 10s linear infinite;
}

.hero p {
  font-size: 2rem;
  color: var(--light-color);
  margin-bottom: 4rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-scroll {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--light-color);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-scroll:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
}

.btn-scroll i {
  animation: bounce 2s infinite;
}

.btn-scroll::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(168, 125, 50, 0.5), transparent);
  animation: spinSlow 5s linear infinite;
  z-index: -1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ======= About Section ======= */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  opacity: 0;
  transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.image-wrapper img {
  transition: var(--transition);
}

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

/* ======= Timeline ======= */
.timeline {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  padding: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--aurora-gradient);
  transform: translateX(-50%);
  animation: colorShift 20s linear infinite;
  opacity: 0.7;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translateX(-50%);
  z-index: 1;
  border: 3px solid var(--dark-color);
  box-shadow: 0 0 0 3px var(--primary-color), 0 0 15px rgba(168, 125, 50, 0.7);
  animation: pulseGlow 2s infinite;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(168, 125, 50, 0.3);
  backdrop-filter: blur(5px);
  animation: pulseOpacity 3s infinite alternate;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 55%;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ======= Cards ======= */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.card {
  flex: 1 1 30rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 125, 50, 0.2);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400%;
  background: linear-gradient(transparent, rgba(168, 125, 50, 0.1), transparent, rgba(168, 125, 50, 0.1));
  animation: cardShine 8s linear infinite;
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: pulseGlow 2s infinite;
}

.card-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}

.card-icon i {
  position: relative;
  z-index: 2;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(168, 125, 50, 0.2), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: iconPulse 2s infinite alternate;
}

.testimonial {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.8;
}

/* ======= Gallery ======= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 25rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(168, 125, 50, 0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  transform: translate(-25%, -25%);
}

.gallery-item:hover::after {
  opacity: 0.2;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay span {
  color: var(--light-color);
  font-size: 1.6rem;
  font-weight: 600;
}

/* ======= Footer ======= */
.footer {
  background-color: var(--darker-color);
  padding: 8rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -100%;
  left: -50%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii4wNSIgbnVtT2N0YXZlcz0iMiIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
  z-index: -1;
  animation: spinSlow 120s linear infinite;
  opacity: 0.5;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 20rem;
}

.footer-logo h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.footer ul li {
  margin-bottom: 1rem;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact ul li i {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-top: 3px;
}

.footer-social ul {
  display: flex;
  gap: 1.5rem;
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social ul li a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-social ul li a i {
  font-size: 1.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 1.4rem;
}

/* ======= Back to Top ======= */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-5px);
}

/* ======= Media Queries ======= */
@media screen and (max-width: 1024px) {
  html {
    font-size: 56.25%;
  }
  
  .hero h1 {
    font-size: 6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
  
  .hero h1 {
    font-size: 5rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--darker-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 99;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: block;
    z-index: 100;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  
  .row {
    flex-direction: column;
  }
  
  .row.reverse {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-dot {
    left: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 5rem);
    left: 5rem !important;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.6rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ======= Animation Classes ======= */
.fade-in {
  animation: fadeIn 1s forwards;
}

.fade-in-up {
  animation: fadeInUp 1s forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s forwards;
}

.fade-in-right {
  animation: fadeInRight 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Global Animations */
@keyframes colorShift {
  0% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(180deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(155, 109, 255, 0.5); }
  50% { box-shadow: 0 0 30px rgba(155, 109, 255, 0.8), 0 0 60px rgba(155, 109, 255, 0.4); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rainbowText {
  0% { color: var(--neon-pink); }
  25% { color: var(--neon-purple); }
  50% { color: var(--neon-blue); }
  75% { color: var(--neon-green); }
  100% { color: var(--neon-pink); }
}

/* ======= Fanfiction Section ======= */
.fanfiction-section {
  position: relative;
  background-color: #000;
  min-height: 100vh;
  overflow: hidden;
  color: var(--light-color);
  padding: 15rem 0;
  background: linear-gradient(to bottom, #000510, #0a0028, #10002e, #000510);
}

.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stars, .stars2, .stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, white, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 40px 70px, white, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 50px 160px, white, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 40px, white, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 130px 80px, white, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 160px 120px, white, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: zoom 5s infinite;
  opacity: 0;
}

.stars {
  background-position: 0 0;
  animation: zoom 15s infinite;
  opacity: 0.5;
}

.stars2 {
  background-position: 100px 50px;
  animation: zoom 30s infinite;
  opacity: 0.3;
}

.stars3 {
  background-position: 50px 100px;
  animation: zoom 45s infinite;
  opacity: 0.2;
}

.shooting-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white, 0 0 20px var(--neon-blue), 0 0 40px var(--neon-purple);
  animation: shootingStar 6s linear infinite;
  opacity: 0;
}

.shooting-star:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 35%;
  left: 85%;
  animation-delay: 3s;
}

.shooting-star:nth-child(3) {
  top: 70%;
  left: 70%;
  animation-delay: 6s;
}

.shooting-star:nth-child(4) {
  top: 55%;
  left: 20%;
  animation-delay: 9s;
}

@keyframes shootingStar {
  0% {
    transform: translate(0, 0) rotate(315deg) scale(0);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  10% {
    transform: translate(-300px, 300px) rotate(315deg) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(-300px, 300px) rotate(315deg) scale(1);
    opacity: 0;
  }
}

.cosmic-dust {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(1px 1px at 10px 10px, var(--neon-pink) 50%, transparent 100%),
    radial-gradient(1px 1px at 20px 50px, var(--neon-purple) 50%, transparent 100%),
    radial-gradient(1px 1px at 30px 100px, var(--neon-blue) 50%, transparent 100%),
    radial-gradient(1px 1px at 40px 150px, var(--neon-green) 50%, transparent 100%);
  background-repeat: repeat;
  background-size: 250px 250px;
  opacity: 0.05;
  animation: cosmicDust 30s linear infinite;
}

@keyframes cosmicDust {
  from { transform: translateY(0); }
  to { transform: translateY(-250px); }
}

.fanfiction-section .container {
  position: relative;
  z-index: 1;
}

.glow-text {
  color: white;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--fanfiction-primary), 0 0 20px var(--fanfiction-primary), 0 0 25px var(--fanfiction-primary);
  animation: glow 2s ease-in-out infinite alternate, floatAnimation 6s ease-in-out infinite;
  position: relative;
}

.glow-text::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(15px);
  color: var(--fanfiction-primary);
  opacity: 0.7;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--fanfiction-primary), 0 0 20px var(--fanfiction-primary);
  }
  to {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--fanfiction-primary), 0 0 40px var(--fanfiction-primary);
  }
}

.glow-divider {
  background: var(--fanfiction-gradient);
  box-shadow: 0 0 10px 2px var(--fanfiction-primary);
  height: 5px;
  position: relative;
  animation: pulseGlow 2s infinite alternate, floatAnimation 4s ease-in-out infinite;
}

.glow-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 25px;
  background: var(--fanfiction-gradient);
  filter: blur(15px);
  opacity: 0.3;
  animation: pulseGlow 3s infinite alternate;
}

.fanfiction-wrapper {
  max-width: 100rem;
  margin: 0 auto;
}

.fanfiction-intro {
  text-align: center;
  margin-bottom: 5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(155, 109, 255, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: floatAnimation 6s ease-in-out infinite;
}

.animated-text {
  font-size: 2rem;
  line-height: 1.8;
  animation: textFade 5s infinite, floatAnimation 8s ease-in-out infinite;
  position: relative;
}

.animated-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--aurora-gradient);
  animation: colorShift 10s linear infinite;
}

@keyframes textFade {
  0%, 100% { color: var(--light-color); }
  50% { color: var(--fanfiction-primary); }
}

.fanfiction-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-bottom: 8rem;
}

.fanfiction-card {
  position: relative;
  max-width: 80rem;
  min-height: 35rem;
  border-radius: 15px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  border: 1px solid rgba(155, 109, 255, 0.2);
}

.fanfiction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--aurora-gradient);
  opacity: 0.1;
  border-radius: 15px;
  z-index: -1;
  animation: colorShift 15s linear infinite;
}

.fanfiction-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 49.5%, rgba(255, 255, 255, 0.2) 49.5%, rgba(255, 255, 255, 0.2) 50.5%, transparent 50.5%);
  background-size: 15px 15px;
  border-radius: 15px;
  z-index: -1;
  animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 400px 400px; }
}

.card-left {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.7);
  transform: perspective(1000px) rotateY(-5deg);
}

.card-right {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.7);
  transform: perspective(1000px) rotateY(5deg);
}

.card-center {
  align-self: center;
  background: rgba(0, 0, 0, 0.8);
  transform: perspective(1000px) rotateX(3deg);
}

.fanfiction-card:hover {
  transform: perspective(1000px) scale(1.03) translateY(-10px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px var(--fanfiction-primary);
  z-index: 2;
  animation: pulseGlow 2s infinite;
}

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

.fanfiction-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fanfiction-title h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: white;
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: colorShift 10s linear infinite;
}

.author {
  font-style: italic;
  color: var(--fanfiction-primary);
}

.fanfiction-excerpt {
  position: relative;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  margin-bottom: 2rem;
  min-height: 15rem;
  overflow: hidden;
  border: 1px solid rgba(155, 109, 255, 0.1);
  animation: pulseOpacity 4s infinite alternate;
}

.fanfiction-excerpt p {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.animated-light {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(175, 139, 255, 0.8) 0%, rgba(155, 109, 255, 0.4) 30%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  animation: light 5s infinite, floatAnimation 8s ease-in-out infinite alternate;
  filter: blur(8px);
}

@keyframes light {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8) translate(50px, 50px);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2) translate(0, 0);
  }
}

.battle-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2017/08/22/11/56/maria-2668774_1280.jpg') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
  animation: battle 8s infinite, colorShift 15s linear infinite;
  filter: hue-rotate(0deg) contrast(1.2) brightness(0.8) blur(3px);
}

@keyframes battle {
  0%, 100% {
    opacity: 0.05;
    filter: hue-rotate(0deg) blur(5px);
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    filter: hue-rotate(45deg) blur(2px);
    transform: scale(1.1);
  }
}

.miracle-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue), transparent);
  animation: miracle 5s infinite, colorShift 15s linear infinite;
  filter: blur(5px);
}

@keyframes miracle {
  0%, 100% {
    opacity: 0.1;
    background-position: 0% 50%;
  }
  50% {
    opacity: 0.3;
    background-position: 100% 50%;
  }
}

.btn-fanfiction {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--fanfiction-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  outline: none;
  z-index: 1;
  border: 1px solid rgba(155, 109, 255, 0.3);
}

.btn-fanfiction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--fanfiction-secondary), var(--fanfiction-primary));
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
  background: var(--aurora-gradient);
  animation: colorShift 5s linear infinite;
}

.btn-fanfiction:hover {
  box-shadow: 0 0 15px var(--fanfiction-primary);
  transform: translateY(-3px);
  color: white;
}

.btn-fanfiction:hover::before {
  opacity: 1;
}

.btn-fanfiction::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(155, 109, 255, 0.5), transparent);
  animation: spinSlow 5s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-fanfiction:hover::after {
  opacity: 1;
}

.fanfiction-submit {
  text-align: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.fanfiction-submit h3 {
  margin-bottom: 2rem;
}

.fanfiction-submit p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.btn-submit {
  padding: 1.5rem 4rem;
  background: var(--fanfiction-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(155, 109, 255, 0.3);
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--fanfiction-primary);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--aurora-gradient);
  animation: colorShift 5s linear infinite;
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(155, 109, 255, 0.5), transparent);
  animation: spinSlow 5s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit:hover::after {
  opacity: 1;
}

.pulsate {
  animation: pulsate 2s infinite, rainbowText 5s infinite;
}

@keyframes pulsate {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 var(--fanfiction-primary);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--fanfiction-primary);
  }
}

/* Story Modal Styles */
.story-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.story-modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 7% auto;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.95), rgba(25, 20, 50, 0.95));
  border-radius: 15px;
  border: 1px solid rgba(155, 109, 255, 0.3);
  box-shadow: 0 0 30px rgba(155, 109, 255, 0.3), 0 0 100px rgba(155, 109, 255, 0.1);
  transform: translateY(50px);
  opacity: 0;
  animation: modalFadeIn 0.5s forwards;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii4wNSIgbnVtT2N0YXZlcz0iMiIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1Ii8+PC9zdmc+');
  z-index: -1;
  opacity: 0.5;
  border-radius: inherit;
}

@keyframes modalFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px var(--fanfiction-primary);
  animation: colorShift 5s linear infinite;
}

.close-modal:hover {
  color: var(--fanfiction-primary);
  transform: rotate(90deg);
}

.story-container {
  color: var(--light-color);
}

.story-container h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px var(--fanfiction-primary);
  background: var(--vibrant-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: colorShift 8s linear infinite;
}

.story-container span {
  display: block;
  font-style: italic;
  margin-bottom: 3rem;
  color: var(--fanfiction-primary);
}

.story-container p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Form Styles */
.submit-content {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--light-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(155, 109, 255, 0.3);
  border-radius: 5px;
  color: var(--light-color);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  position: relative;
  transition: all 0.5s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fanfiction-primary);
  box-shadow: 0 0 10px rgba(155, 109, 255, 0.5);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

/* Media Queries for Fanfiction Section */
@media screen and (max-width: 768px) {
  .fanfiction-card {
    padding: 2rem;
  }
  
  .card-left,
  .card-right,
  .card-center {
    align-self: center;
    transform: none !important;
  }
  
  .fanfiction-card:hover {
    transform: scale(1.03) translateY(-5px) !important;
  }
  
  .modal-content {
    width: 95%;
    padding: 3rem 2rem;
    margin: 10% auto;
  }
}

@media screen and (max-width: 480px) {
  .fanfiction-section {
    padding: 10rem 0;
  }
  
  .fanfiction-title h3 {
    font-size: 2.2rem;
  }
  
  .animated-text {
    font-size: 1.6rem;
  }
  
  .btn-fanfiction,
  .btn-submit {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}

/* New Aurora Border effect for all sections */
.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--aurora-gradient);
  opacity: 0.3;
  animation: colorShift 15s linear infinite;
}

.section-dark::after {
  opacity: 0.2;
}

/* New Floating elements */
.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(155, 109, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  animation: floatAnimation 15s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}

.float-1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  animation-duration: 25s;
  background: radial-gradient(circle, rgba(155, 109, 255, 0.2) 0%, transparent 70%);
}

.float-2 {
  top: 60%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation-duration: 20s;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(255, 109, 195, 0.2) 0%, transparent 70%);
}

.float-3 {
  bottom: 30%;
  left: 20%;
  width: 150px;
  height: 150px;
  animation-duration: 15s;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(109, 213, 255, 0.2) 0%, transparent 70%);
}

/* Holy Light Effect */
.holy-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent 70%);
  filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  animation: holyLight 20s ease-in-out infinite;
}

@keyframes holyLight {
  0%, 100% { opacity: 0; width: 30%; }
  50% { opacity: 0.3; width: 70%; }
}

/* New Text Effects */
@keyframes glitchText {
  0% { text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); }
  14% { text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75), -0.05em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em 0.05em 0 rgba(0, 0, 255, 0.75); }
  15% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); }
  49% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75), 0.025em 0.025em 0 rgba(0, 255, 0, 0.75), -0.05em -0.05em 0 rgba(0, 0, 255, 0.75); }
  50% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75); }
  99% { text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75), 0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75); }
  100% { text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75), -0.025em -0.025em 0 rgba(0, 255, 0, 0.75), -0.025em -0.05em 0 rgba(0, 0, 255, 0.75); }
}

.glitch-text {
  animation: glitchText 3s infinite;
}

.rainbow-border {
  position: relative;
}

.rainbow-border::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--aurora-gradient);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  animation: colorShift 5s linear infinite;
}

.rainbow-border:hover::before {
  opacity: 1;
}

/* Animated backgrounds */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
  animation: patternMove 20s linear infinite;
}