
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    background-color: #000;
}

.logo-wrapper .logo {
    height: 50px;
}

.nav-links a {
    margin-left: 1.5em;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.whitelist-btn {
    background: white;
    color: black;
    padding: 0.5em 1.2em;
    border-radius: 999px;
    font-weight: bold;
    margin-left: 1.5em;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(90deg, #0f0f0f, #420707);
    padding: 4em 5%;
    gap: 2em;
    flex-wrap: wrap;
}

.hero-left img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 0 25px #00000066;
}

.hero-right {
    flex: 1;
    max-width: 760px;
}

.hero-right h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

.hero-right p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1em;
}

.discord-btn {
    display: inline-block;
    width: 23%;
    margin-top: 1.5em;
    padding: 0.8em 1.5em;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.second-image {
    margin-top: 2em;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 15px #00000044;
}


/* Center content */
.hero-section {
    justify-content: center;
    text-align: left;
    align-items: center;
}

/* Center hero-right vertically */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Improve whitelist button appearance */
.whitelist-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.6em 1.6em;
    border-radius: 999px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.whitelist-btn:hover {
    background: white;
    color: black;
}

.animated-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4em 5%;
    gap: 2em;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animated-section.left img {
    order: 1;
}
.animated-section.right img {
    order: 2;
}
.animated-section .text {
    flex: 1;
    max-width: 600px;
}
.animated-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 20px #00000066;
}
.animated-section h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: white;
}
.animated-section p {
    color: #ccc;
    font-size: 1em;
    line-height: 1.5;
}

/* animation active */
.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Naprzemienne tła i układ kolumn */
.feature.row-left {
    display: flex;
    flex-direction: row;
    background-color: #0e0e0e;
}
.feature.row-right {
    display: flex;
    flex-direction: row-reverse;
    background-color: #1c1c1c;
}
.feature img {
    max-width: 40%;
    height: auto;
    border-radius: 16px;
}
.feature .text {
    flex: 1;
    padding: 2rem;
    color: white;
}


.animated-section.reverse-layout {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .animated-section.reverse-layout {
        flex-direction: column !important;
    }
}


.animated-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2.5rem 150px;
}

.animated-section.reverse-layout {
    flex-direction: row-reverse;
}

.animated-section img {
    width: 100%;
    max-width: 47%;
    height: auto;
    border-radius: 1rem;
}

.animated-section .text {
    max-width: 35%;
}

.animated-section .text h2 {
    font-size: 2.8rem;
}

.animated-section .text p {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .animated-section,
    .animated-section.reverse-layout {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1rem;
    }

    .animated-section img,
    .animated-section .text {
        max-width: 100%;
    }
}


.animated-section.reverse-layout {
    background: linear-gradient(90deg, #0f0f0f, #420707);
}

.animated-section:not(.reverse-layout) {
    background-color: #0f0f0f;
}


.animated-section {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.reverse-layout {
    transform: translateX(80px);
}

.animated-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4em 5%;
    background-color: #0f0f0f;
    flex-wrap: wrap;
    gap: 3em;
  }
  
  .stats-left {
    max-width: 500px;
    flex: 1;
  }
  
  .stats-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .stats-left p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    flex: 2;
  }
  
  .stat-box {
    border: 1px solid #555;
    border-radius: 12px;
    padding: 1.5em;
    background-color: #121212;
    font-size: 1rem;
    text-align: left;
    color: white;
    font-weight: 500;
  }
  
  .stat-box strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3em;
  }
  
  
.cta-section {
  text-align: center;
  padding: 4em 5%;
  background-color: #0f0f1a;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2em auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

.cta-btn {
  background: transparent;
  border: 2px solid #a64dff;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #a64dff;
  color: black;
}

.site-footer {
  background-color: #0f0f1a;
  color: white;
  padding: 2em 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer img {
  height: 40px;
}

.footer-right {
  text-align: right;
  max-width: 600px;
}

.footer-right p {
  margin: 0.3em 0;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links a {
  margin-left: 1em;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.cta-section {
    text-align: center;
    padding: 4em 5%;
    background: linear-gradient(90deg, #0f0f0f, #420707);
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 2em auto;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
  }
  
  .cta-btn {
    background: transparent;
    border: 2px solid #ff4d4d;
    padding: 0.7em 1.4em;
    border-radius: 999px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #ff4d4d;
    color: black;
  }
  
  .site-footer {
    background-color: #121212;
    color: white;
    padding: 2em 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .site-footer img {
    height: 40px;
  }
  
  .footer-right {
    text-align: right;
    max-width: 600px;
  }
  
  .footer-right p {
    margin: 0.3em 0;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .footer-links a {
    margin-left: 1em;
    color: white;
    font-weight: bold;
    text-decoration: none;
  }
  