body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, #0f1a24, #142f2e);
  color: #a9c9c4;
   overflow-x: hidden;
   
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%); 
  width: 90%;
  z-index: 1000;

  background: rgba(15, 26, 36, 0.6);
  backdrop-filter: blur(6px);
  padding: 20px 40px;

  border-radius: 0 0 20px 20px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); 
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
   max-width: 1200px; 
  padding: 0 40px; 
}

.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #7fffd4;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(#10262e, #021417);
  border: 2px solid #a9c9c4;
  color: #a9c9c4;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulseGlow 2s infinite;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px #7fffd4;
  }
  50% {
    box-shadow: 0 0 15px #7fffd4;
  }
  100% {
    box-shadow: 0 0 0px #7fffd4;
  }
}

.hero-banner {
  margin: 0;
  padding: 0;
  line-height: 0; 
  width: 100vw;
}

.hero-banner img {
  width: 100vw; 
  height: 100vh; 
  object-fit: cover;
  display: block;
  
}
section:not(.hero-wrapper) {
  padding: 40px 20px;
  margin: auto;
}
h2 {
  text-align: center;
  color: #ffffff;
}

.center-text {
  text-align: center;
}

.image-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.image-grid div {
  width: 30%;
  background: #1e2e30;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.image-grid img {
  width: 100%;
  border-radius: 5px;
}

footer {
  padding-top: 40px;
  background: #0d151b;
  color: #ccc;
  text-align: center;

  margin-top: 0;

}
.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;      
  height: 100vh;     
  object-fit: cover;
  z-index: 1;
}
.label-block {
  position: absolute;
  width: 300px;
  color: white;
  text-shadow: 0 1px 5px black;
  text-align: center;
  z-index: 20;
  pointer-events: auto;
}
.hero-wrapper {
  position: relative;
  width: 100vw;      
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


.label-block h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 8px;
}

.label-block p {
  font-size: 16ppx;
  line-height: 1.4;
}


.circle-spinner {
  width: 50px;
  height: 50px;
  margin: 15px auto;
  border: 4px dashed white;
  border-radius: 50%;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.left-block {
  top: 120px;
  left: 210px;
}

.right-block {
  top: 290px;
  right: 60px;
  text-align: right;
}

.center-block {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(31 47 61 / 79%); 
  color: #ffffff;
  text-align: center;
  padding: 40px 50px; 
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  width: 1000px;
  max-width: 95%;
  font-size: 18px;
  line-height: 1.6;
  pointer-events: auto;
}

.center-block:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -2px);
  transition: all 0.4s ease;
}
.side-block {
  width: 400px;
  text-align: center;
  text-shadow: 0 1px 5px black;
  position: absolute;
  pointer-events: auto;
}
.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: auto;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #570f0f;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.cta-button:hover {
  background: #7a1c1c;
}
.side-block,
.label-block,
.label-block h3,
.label-block p {
  color: #ffffff;
}
.welcome-clean {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.welcome-clean h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #7fffd4;
}

.welcome-clean p {
  font-size: 18px;
  line-height: 1.6;
}

.feature-highlight {
  background-color: #08161d00; 
  padding: 60px 20px;
  color: #ffffff;
  font-family: 'Georgia', serif;
}

.feature-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(10, 20, 25, 0.7); 
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.feature-image.wide-left {
  flex: 0 0 55%;         
  display: flex;
  justify-content: flex-end;
}

.feature-image.wide-left img {
  width: 100%;
  max-width: 600px;      
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-description {
  flex: 0 0 45%;
  color: #ffffff;
  text-align: left;
}

.feature-description h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #7fffd4;
}

.feature-description h3 {
  font-size: 24px;
  margin-top: 20px;
  color: #7fffd4;
}
.quick-start-cards {
  padding: 60px 20px;
  background: #0b151b3d;
  color: #fff;
  text-align: center;
   width: 100vw;
}

.quick-title {
  font-size: 32px;
  color: #7fffd4;
  margin-bottom: 40px;
}

.card-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px; 
}
.start-card {
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  background: #141d21;
  border-radius: 12px;
  width: 350px;
  height: 100%; 
  min-height: 420px; 
  box-shadow: 0 4px 12px rgba(0, 255, 200, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 255, 200, 0.2);
}

.start-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}


.card-content .date {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 5px;
  display: block;
}

.card-content h3 {
  font-size: 18px;
  color: #7fffd4;
  margin: 10px 0;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #b9dcdc;
}

.card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #f74848, #f74848);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(74, 158, 184, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.card-button:hover {
  background: linear-gradient(to bottom, #00f7ff, #00bfc5);
  box-shadow: 0 4px 20px rgba(0, 247, 255, 0.6);
  transform: translateY(-2px);
  color: #000;
}
.quick-start-cards {
  background: #0f1a24c7 url('../assets/images/dark-mosaic.png') repeat;
  background-size: auto;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.with-sides {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.welcome-content {
  max-width: 800px;
  z-index: 1;
}

.side-icon {
  position: absolute;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
  animation: floatIcon 6s ease-in-out infinite;
}

.side-icon.left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
}

.side-icon.right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-55%) scale(1.1);
  }
}
.flying-reviews {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 550px;
  overflow: hidden;
   width: 100vw;
}

.review {
  position: absolute;
  max-width: 260px;
  padding: 18px 24px;
  background: rgba(20, 28, 38, 0.85);
  border: 1px solid #7fffd4;
  border-radius: 14px;
  color: #ffffff;
  font-style: italic;
  font-size: 17px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  animation: float 7s ease-in-out infinite;
  transition: transform 0.3s;
}


@keyframes float {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0.9; }
  50%  { transform: translateY(-15px) rotate(2deg); opacity: 1; }
  100% { transform: translateY(0px) rotate(-2deg); opacity: 0.9; }
}
.site-footer {
  background: #0f1a24;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #1e2b36;
  margin-top: 60px;
  color: #bbb;
  font-family: 'Georgia', serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-links a {
  color: #e9e9e9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 5px #42f3d1;
}

.footer-note {
  font-size: 14px;
  opacity: 0.6;
}
.contact-enhanced {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(to right, #0a1f2600, #112c3400);
  padding: 60px 40px;
  border-top: 2px solid #1e2b3600;
  border-bottom: 2px solid #1e2b3600;
  gap: 40px;
  color: #e0f8ff;
  font-family: 'Georgia', serif;
}

.contact-box {
  flex: 1 1 300px;
  background: rgba(14, 30, 40, 0.9);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
  border-left: 4px solid #7fffd4;
}

.contact-box h3 {
  font-size: 24px;
  color: #00ffc3;
  margin-bottom: 20px;
}

.contact-box p {
  margin: 12px 0;
  font-size: 17px;
}

.contact-box i {
  color: #7fffd4;
  margin-right: 10px;
}

.contact-message {
  flex: 2 1 500px;
  background: rgba(10, 25, 35, 0.85);
  padding: 30px;
  border-radius: 16px;
  box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.contact-message h3 {
  font-size: 24px;
  color: #42f3d1;
  margin-bottom: 20px;
}

.contact-message p {
  font-size: 17px;
  line-height: 1.6;
}

.epic-intro {
  background: #00423f0a;
  padding: 80px 40px;
  color: #f5f5f5;
  text-align: center;
  font-family: 'Georgia', serif;
}

.epic-intro h2 {
  color: #056d8df1;
  font-size: 32px;
  margin-bottom: 30px;
}

.epic-intro p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.7;
  font-size: 18px;
}
.custom-align {
  padding: 40px 20px;
}

.left-align h2,
.left-align p {
  text-align: left;
  margin-left: 10%;
  margin-right: 10%;
}

.right-align h2,
.right-align p {
  text-align: right;
  margin-left: 10%;
  margin-right: 10%;
}
.donate-item {
  background: rgba(20, 32, 37, 0.9);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(127, 255, 212, 0.1);
  transition: all 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.donate-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(127, 255, 212, 0.05), transparent);
  animation: hoverGlow 6s linear infinite;
  pointer-events: none;
}

.donate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.2);
  border-color: rgba(127, 255, 212, 0.3);
}

@keyframes hoverGlow {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.donate-section {
  background: url('../assets/images/12.webp') repeat;
  background-size: 300px;
  position: relative;
  padding: 80px 40px;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.05);
  z-index: 1;
}

.donate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15, 20, 25, 0.534), rgba(15, 20, 25, 0.95));
  z-index: 0;
}

.donate-section > * {
  position: relative;
  z-index: 2;
}

.donation-grid {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.support-marquee {
  background: linear-gradient(to right, #0f1a24, #112c34);
  padding: 20px 0;
  overflow: hidden;
  border-top: 2px solid rgba(127, 255, 212, 0.2);
  border-bottom: 2px solid rgba(127, 255, 212, 0.2);
}

.marquee-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #7fffd4;
  animation: marquee-scroll 20s linear infinite;
  text-shadow: 0 0 6px rgba(0, 255, 204, 0.2);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: rgba(10, 20, 25, 0.95);
  border: 1px solid rgba(127, 255, 212, 0.2);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 255, 204, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  animation: fadeIn 0.8s ease;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  color: #d9ffff;
}

.cookie-banner a {
  color: #7fffd4;
  text-decoration: underline;
}

.cookie-banner button {
  background: linear-gradient(to right, #00f7ff, #00bfc5);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background: linear-gradient(to right, #00bfc5, #00f7ff);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .about-wrapper,
  .feature-flex,
  .contact-enhanced {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .feature-image img,
  .about-images img {
    max-width: 100%;
    height: auto;
  }

  .contact-box,
  .contact-message {
    width: 100%;
  }

  .start-card {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-logo {
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(127, 255, 212, 0.15));
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 1;
}
.dark-section {
  background-color: rgba(20, 30, 40, 0.9); /* почти чёрный с прозрачностью */
  padding: 60px 30px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  color: #e0e0e0;
}

.dark-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
}

.highlight {
  color: #39e59b; /* зелёный акцент как в заголовке Eternal */
}

.dark-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: 2px solid #39e59b;
  color: #39e59b;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #39e59b;
  color: #0f1a20;
}

.tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.dark-list {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.dark-list li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}
