@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

@font-face {
  font-family: 'Minecraft';
  src: url('../fonts/Minecraft.ttf') format('truetype');
}

:root {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent-primary: #56d195;
  --accent-secondary: #7df5d9;
  --transition: all 0.3s ease;
  --primary: #FFA500;
  --light: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===== NAVBAR STYLES ===== */
header {
  width: 100%;
  padding: 15px 30px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(86, 209, 149, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  min-height: 75px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 1400px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.8s ease;
}

.navbar.show {
  transform: translateY(0);
  opacity: 1;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

/* Logo Styles */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.navbar-logo:hover {
  transform: translateX(5px);
}

.navbar-logo span {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-logo:hover span {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(86, 209, 149, 0.3));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-logo:hover img {
  filter: drop-shadow(0 6px 16px rgba(86, 209, 149, 0.6));
  transform: scale(1.08) rotate(5deg);
}

/* Navigation Links */
.navbar-links {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-link {
  color: var(--text-secondary);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.navbar-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(86, 209, 149, 0.1), transparent);
  transition: left 0.5s ease;
}

.navbar-link:hover::before {
  left: 100%;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-link:hover {
  color: var(--accent-secondary);
  background: rgba(86, 209, 149, 0.05);
  transform: translateY(-2px);
}

.navbar-link:hover svg {
  transform: scale(1.1);
}

.navbar-link:hover::after {
  width: 80%;
}

.shop-button {
  background: #2d7a5c;
  color: white !important;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(45, 122, 92, 0.5),
  0 0 30px rgba(45, 122, 92, 0.3),
  0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.shop-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-button:hover::before {
  opacity: 1;
}

.shop-button::after {
  display: none !important;
}

.shop-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(45, 122, 92, 0.8),
  0 0 50px rgba(45, 122, 92, 0.5),
  0 0 75px rgba(45, 122, 92, 0.3),
  0 6px 20px rgba(0, 0, 0, 0.2);
  background: #338a69;
  border-color: rgba(255, 255, 255, 0.25);
}

.shop-button:active {
  transform: translateY(-1px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.tiktok-icon {
  background: rgba(255, 0, 80, 0.1);
}

.tiktok-icon svg {
  fill: #ff0050;
}

.tiktok-icon::before {
  background: #ff0050;
}

.tiktok-icon:hover {
  box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
  background: rgba(255, 0, 80, 0.15);
}

.discord-icon {
  background: rgba(88, 101, 242, 0.1);
}

.discord-icon svg {
  fill: #5865F2;
}

.discord-icon::before {
  background: #5865F2;
}

.discord-icon:hover {
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
  background: rgba(88, 101, 242, 0.15);
}

/* Burger Menu */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(86, 209, 149, 0.1);
}

.menu-icon {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(86, 209, 149, 0.3);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  margin: 6px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(86, 209, 149, 0.3);
}

.mobile-menu-toggle.active {
  background: rgba(86, 209, 149, 0.15);
}

.mobile-menu-toggle.active .menu-icon {
  background-color: transparent;
  box-shadow: none;
}

.mobile-menu-toggle.active .menu-icon::before {
  transform: rotate(45deg) translate(6px, 6px);
  box-shadow: 0 0 12px rgba(86, 209, 149, 0.5);
}

.mobile-menu-toggle.active .menu-icon::after {
  transform: rotate(-45deg) translate(7px, -7px);
  box-shadow: 0 0 12px rgba(86, 209, 149, 0.5);
}

.menu-background {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 100;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(86, 209, 149, 0.2);
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 10px;
    text-align: center;
  }

  .navbar-link svg {
    width: 20px;
    height: 20px;
  }

  .navbar-link:hover {
    color: var(--accent-secondary);
    background: rgba(86, 209, 149, 0.1);
    transform: translateX(5px);
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-link::before {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .shop-button {
    margin-top: 15px;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .shop-button svg {
    width: 20px;
    height: 20px;
  }

  .social-icons {
    margin-left: 0;
    margin-top: 15px;
    justify-content: center;
    gap: 20px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 26px;
    height: 26px;
  }

  .logo-container img {
    width: 300px !important;
    padding: 50px;
  }

  .copy-address-box, .player-info-box {
    visibility: hidden;
  }

  .logo-container {
    margin-top: 20px;
  }

  .logo-container img {
    width: 400px !important;
  }

  .footer-render {
    display: none;
  }

  .gamemode-new-header {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .gamemode-new-grid {
    display: block !important;
    margin-bottom: 0;
  }

  .gamemode-new-card {
    max-width: 90%;
    min-width: 25%;
    margin: 20px 25px;
  }
}

@media (max-width: 1024px) {
  .parrot-render,
  .allay-render,
  .footer-render {
    display: none;
  }
}

p {
  font-size: 1.1rem;
}

h2 {
  font-size: 2.5rem !important;
  font-weight: 900;
  font-family: 'Minecraft', Arial, sans-serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 40%, var(--accent-primary) 80%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(86, 209, 149, 0.15);
  position: relative;
}

/* Old navbar styles removed - using modern navbar above */

main {
  width: 100%;
}

.logo img {
  height: 75px;
}


.logo-container {
  display: flex;
  justify-content: center;
  z-index: 3;
  margin-top: 60px;
  position: relative;
}

.logo-container img {
  width: 28rem;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 40px rgba(86, 209, 149, 0.4));
  transition: all 0.5s ease;
  animation: logoBounce 3s ease-in-out infinite;
}

.logo-container img:hover {
  animation: logoBounceHover 0.6s ease;
}

@keyframes logoBounce {
  0%, 100% {
    transform: translateY(0px);
    filter: drop-shadow(0 10px 40px rgba(86, 209, 149, 0.4));
  }
  50% {
    transform: translateY(-15px);
    filter: drop-shadow(0 15px 50px rgba(86, 209, 149, 0.6));
  }
}

@keyframes logoBounceHover {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-20px) scale(1.05);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
  75% {
    transform: translateY(-15px) scale(1.06);
  }
}

.badge {
  background-color: rgba(195, 44, 44, 0.87);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 5px;
}

.background-section {
  background: url(../img/banner_3.webp) center/cover;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 150px 20px;
  overflow: visible;
}

/* Header Particles Animation */
.header-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 22s;
}

.particle:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 30%;
  right: 25%;
  animation-delay: 9s;
  animation-duration: 16s;
}

.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  bottom: 10%;
  right: 10%;
  animation-delay: 12s;
  animation-duration: 19s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, -60px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -40px) scale(1.05);
    opacity: 0.6;
  }
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

a.disabled:hover {
  color: var(--text-secondary) !important;
}


@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }

  .nav-middle {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100; /* Added higher z-index */
  }

  .mobile-nav.show {
    display: block;
  }

  .mobile-nav a {
    display: block;
    padding: 10px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
  }

  .mobile-nav a:hover {
    color: var(--accent-secondary);
  }

  .logo-container img {
    width: 300px !important;
    padding: 50px;
  }

  .copy-address-box, .player-info-box {
    visibility: hidden;
  }

  .logo-container {
    margin-top: 20px;
  }

  .logo-container img {
    width: 400px !important;
  }

  .footer-render {
    display: none;
  }

  .gamemode-new-header {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .gamemode-new-subtitle {
    text-align: center;
    padding: 10px 0;
  }

  .gamemode-new-grid {
    display: block !important;
    margin-bottom: 0;
  }

  .gamemode-new-card {
    max-width: 90%;
    min-width: 25%;
    margin: 20px 25px;
  }

}

@media (max-width: 1024px) {
  .parrot-render,
  .allay-render,
  .footer-render {
    display: none;
  }
}

main {
  width: 100%;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.text-container {
  max-width: 600px;
}

.text-background {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
  padding: 20px; /* Add some padding */
  border-radius: 10px; /* Optional: rounded corners */
}

.character img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Animal Render */

.parrot-render {
  position: absolute;
  top: -30px;
  right: 250px;
  width: 155px;
  height: auto;
  z-index: 10;
}

.allay-render {
  position: absolute;
  bottom: -15%;
  left: 25%;
  width: 150px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 5px 20px rgba(86, 209, 149, 0.3));
  animation: allayFloat 4s ease-in-out infinite;
}

@keyframes allayFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Copy Address Box in Header */
.copy-address-box {
  position: absolute;
  left: 15rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 3;
}

.copy-address-content {
  display: inline-flex;
  align-items: center;
  background: rgba(42, 42, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(86, 209, 149, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(86, 209, 149, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.copy-address-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(86, 209, 149, 0.2), transparent);
  transition: left 0.5s;
}

.copy-address-content:hover {
  transform: translateY(-5px);
  border-color: rgba(86, 209, 149, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(86, 209, 149, 0.3);
}

.copy-address-content:hover::before {
  left: 100%;
}

.copy-address-content.copied {
  border-color: rgba(86, 209, 149, 0.8);
  animation: copyPulse 0.6s ease;
}

@keyframes copyPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.copy-address-icon {
  color: var(--accent-primary);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(86, 209, 149, 0.15);
  transition: all 0.3s ease;
}

.copy-address-content:hover .copy-address-icon {
  background: rgba(86, 209, 149, 0.25);
  transform: rotate(360deg);
}

.copy-address-text {
  margin-left: 15px;
  text-align: left;
}

.copy-address-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.copy-address-status {
  font-size: 13px;
  color: var(--accent-primary);
  font-weight: 600;
  position: relative;
}

.status-default {
  display: inline;
}

.status-copied {
  display: none;
}

.copy-address-content.copied .status-default {
  display: none;
}

.copy-address-content.copied .status-copied {
  display: inline;
}

.copy-indicator {
  margin-left: 15px;
  color: var(--accent-primary);
  font-size: 18px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.copy-address-content:hover .copy-indicator {
  opacity: 1;
  transform: scale(1.2);
}

/* Player INFO Box Header */
.player-info-box {
  position: absolute;
  right: 15rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  z-index: 3;
}

.player-info-content {
  display: inline-flex;
  align-items: center;
  background: rgba(42, 42, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(86, 209, 149, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(86, 209, 149, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.player-info-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(86, 209, 149, 0.2), transparent);
  transition: left 0.5s;
}

.player-info-content:hover {
  transform: translateY(-5px);
  border-color: rgba(86, 209, 149, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(86, 209, 149, 0.3);
}

.player-info-content:hover::before {
  left: 100%;
}

.player-info-icon {
  color: var(--accent-primary);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(86, 209, 149, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.player-info-content:hover .player-info-icon {
  background: rgba(86, 209, 149, 0.25);
}

.status-pulse {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(86, 209, 149, 0.7);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(86, 209, 149, 0);
    opacity: 0.8;
  }
}

.player-info-text {
  margin-left: 15px;
  text-align: left;
}

.player-info-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.player-info-status {
  font-size: 13px;
  color: var(--accent-primary);
  font-weight: 600;
}

.player-info-title {
  font-size: 16px;
  font-weight: bold;
}

.player-info-status {
  font-size: 14px;
  color: var(--accent-primary);
}

/* Content Section */
.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content .highlight {
  color: var(--accent-secondary);
}

.content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.gamemodes {
  padding: 40px 20px;
  background-color: var(--bg-secondary);
  text-align: center;
}

.gamemodes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gamemode {
  background-color: var(--bg-primary);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gamemode:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gamemode img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gamemode h3 {
  margin: 10px 0;
  color: var(--accent-primary);
  text-align: center;
}

/* GAMEMODE NEW */
/* Styles for gamemode-new section */
.gamemode-new {
  font-family: Arial, sans-serif;
  background-color: #1E1E1E;
  color: #FFFFFF;
  padding: 7vh 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gamemode-new-content {
  flex: 1 1 600px;
  max-width: 75%;
}

.gamemode-new-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  flex-direction: column;
  text-align: center;
}

.section-icon-wrapper {
  margin-bottom: 2rem;
}

.section-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #45b87e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(86, 209, 149, 0.4);
  animation: iconPulse 3s ease-in-out infinite;
  position: relative;
}

.section-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--accent-primary), #45b87e);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-icon:hover::before {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

.section-icon i {
  font-size: 2.5rem;
  color: #000000;
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(86, 209, 149, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 15px 50px rgba(86, 209, 149, 0.6);
    transform: scale(1.05);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gamemode-new-header h2 {
  font-weight: 500;
  font-family: 'Minecraft', Arial, sans-serif;
}

.gamemode-new-header p {
  opacity: 0.75;
  font-size: 1.25rem;
  text-align: center;
  padding: 20px 0;
  max-width: 800px;
}

.gamemode-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gamemode-new-card {
  background-color: rgba(80, 80, 80, 0.6);
  border: 2px solid var(--accent-primary);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.gamemode-new-card:hover {
  transform: scale(1.02);
}

.gamemode-new-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.gamemode-new-card p {
  line-height: 1.6;
}

.gamemode-new-image {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gamemode-new-image img {
  width: 85%;
  height: auto;
  border-radius: 10px;
}

/* CHIP CARDS */
/* Chip Cards Section */
.chip-cards {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.chip-cards-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.chip-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 0 15px;
}

.chip-card-icon {
  width: 64px;
  height: auto;
  margin-right: 15px;
  object-fit: contain;
}

.chip-card-title {
  font-size: 18px;
  margin: 0 0 10px 0;
}

.chip-card-description {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.4;
  margin: 0;
}

.about-section {
  background-color: #111111;
  padding: 4rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 20px;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(86, 209, 149, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-item:hover::before {
  transform: scaleX(1);
}

.about-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(86, 209, 149, 0.1);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
}

.about-item:hover .about-icon {
  background: rgba(86, 209, 149, 0.15);
  transform: scale(1.05);
}

.about-svg {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(79%) sepia(17%) saturate(1234%) hue-rotate(107deg) brightness(91%) contrast(88%);
  transition: all 0.3s ease;
}

.about-item:hover .about-svg {
  filter: brightness(0) saturate(100%) invert(88%) sepia(18%) saturate(1631%) hue-rotate(107deg) brightness(98%) contrast(91%);
  transform: scale(1.1);
}

.about-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.about-item:hover .about-title {
  color: var(--accent-secondary);
}

.about-text {
  color: #999999;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.about-item:hover .about-text {
  color: #b3b3b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-item {
    text-align: center;
    align-items: center;
  }
}


.dynamic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}

.dynamic-divider::before,
.dynamic-divider::after {
  content: '';
  display: inline-block;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
}

#news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Adjust the gap as needed */
}

.news {
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.news-header {
  align-items: center;
  padding: 20px 0;
}

.news-header h2 {
  font-weight: 500;
  font-family: 'Minecraft', Arial, sans-serif;
}

.news-header p {
  opacity: 0.75;
}

.news-item {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  flex: 1 1 300px;
  box-sizing: border-box;
}

.news-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-item img {
  width: 100%;
  height: 191px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.news-item h3 {
  margin: 10px 0;
  font-size: 1.4rem;
  color: var(--accent-primary);
}

.news-item p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.news-item a.read-more {
  display: inline-block;
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.news-item a.read-more:hover {
  color: var(--accent-primary);
}

.discord-button {
  z-index: 2;
  background: var(--accent-primary);
  color: black;
  padding: 12px 40px 12px 40px;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 5px 0 0 #21965f;
  text-decoration: none;
  font-weight: bold;
  margin-top: 60px;
  text-transform: uppercase;
}

.discord-button img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.discord-button:hover {
  background-color: var(--accent-primary);
  box-shadow: 0 5px 0 0 #21965f;
  transform: translateY(-2px);
}

.discord-button i {
  margin-right: 8px;
}

.shop-button {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  fill: #000000;
  color: #000000;
  background-color: var(--accent-primary);
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 5px 0 0 #21965f;
  padding: 12px 40px 12px 40px;
}

.shop-button i {
  color: black;
}

.shop-button span {
  color: black;
}

.shop-button:hover {
  background-color: var(--accent-primary);
  box-shadow: 0 5px 0 0 #21965f;
  transform: translateY(-2px);
}

footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
  border: none;

}

.join-discord {
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-quick-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0 10px;
}

.footer-quick-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-secondary);
  transition: var(--transition);
}

.footer-quick-links a:hover::after {
  width: 100%;
}

.footer-quick-links a:hover {
  color: var(--accent-secondary);
}

/* Footer Container */
.footer {
  padding: 20px;
  background-color: #1E1E1E;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
}

/* Footer Sections */
.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links-section,
.footer-history-section,
.footer-social-media-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

/* Footer Titles */
.footer-title {
  color: var(--accent-primary);
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Minecraft', Arial, sans-serif;
  font-weight: 300;
}

/* Footer Links */
.footer-link {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.footer-link:hover {
  color: var(--accent-primary);
  transition: color 0.3s;
}

.footer-render {
  position: absolute;
  width: 150px;
  height: auto;
  right: 20px;
  z-index: 1000;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/* Footer Text */
.footer-text {
  font-size: 14px;
  line-height: 1.4;
}

.footer-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  font-size: 30px;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-icon:hover {
  color: var(--accent-primary);
  transition: color 0.5s;
}

.footer-top {
  margin-bottom: 20px;
}

.footer-quick-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-quick-link {
  color: #FFFFFF;
  text-decoration: none;
}

.dynamic-divider-footer {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
  margin: 20px 0;
}

.footer-copyright {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-bottom: 20px;
}

.footer-attribution {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.footer-attribution strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .gamemodes-container,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 15px;
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.3) 0%, rgba(30, 30, 30, 0.7) 50%, #1e1e1e 100%);
  z-index: 1;
  pointer-events: none;
}

/*  TEAM SECTION   */
.team-container {
  margin-top: 8vh;
  padding: 0 20px;
}

.team-section {
  background-color: #1E1E1E;
  font-family: 'Poppins', sans-serif;
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0;
}

.team-sections-centered {
  max-width: 1200px;
  margin: 0 auto;
}

.team-search-center {
  max-width: 600px;
  margin: 30px auto 50px;
  padding: 0 20px;
}

.team-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.team-sections-wrapper {
  flex: 1;
  min-width: 0;
}

.team-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.team-search-sticky {
  position: sticky;
  top: 100px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(86, 209, 149, 0.2);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info-bar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(86, 209, 149, 0.1);
}

.team-info-bar-center .team-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.team-info-bar-center .team-info-item i {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.team-search-container {
  position: relative;
  width: 100%;
}

.team-search {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(86, 209, 149, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.team-search:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 0 20px rgba(86, 209, 149, 0.3);
}

.team-search::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.team-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 1rem;
  pointer-events: none;
}

.team-info-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.team-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-info-item i {
  color: var(--accent-primary);
}

.team-title {
  font-size: 1.8rem !important;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.team-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(86, 209, 149, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 209, 149, 0.3);
  box-shadow: 0 8px 24px rgba(86, 209, 149, 0.1);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(86, 209, 149, 0.1);
  flex-shrink: 0;
  border: 2px solid rgba(86, 209, 149, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.team-card:hover .team-avatar {
  border-color: var(--accent-primary);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(86, 209, 149, 0.3);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--text-primary);
  line-height: 1.3;
  opacity: 0.7;
  font-weight: 400;
}

.team-task {
  font-size: 0.8rem;
  color: var(--accent-primary);
  line-height: 1.4;
  margin-top: 2px;
}

.team-joined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(86, 209, 149, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(86, 209, 149, 0.15);
}

.team-joined i {
  font-size: 0.7rem;
  color: var(--accent-primary);
}

.team-joined span {
  opacity: 0.8;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-stat-value {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
}

.team-stat-label {
  font-size: 14px;
  color: #666;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .team-search-center {
    padding: 0 15px;
  }

  .team-content-wrapper {
    flex-direction: column;
  }

  .team-sidebar {
    width: 100%;
    order: -1;
  }

  .team-search-sticky {
    position: static;
  }

  .team-info-bar-center {
    flex-direction: column;
    gap: 15px;
  }

  .team-header {
    flex-direction: column;
    align-items: stretch;
  }

  .team-search-container {
    flex: 1;
    max-width: 100%;
  }

  .team-info-bar {
    justify-content: center;
    flex-wrap: wrap;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

  .team-title {
    font-size: 1.5rem;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .team-joined {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/*  JOIN NOW SECTION   */
.join-server-section {
  position: relative;
  overflow: hidden;
  padding-left: 4rem;
  padding-right: 4rem;
}

.join-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.join-server-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.join-server-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes joinShimmer {
  0%, 100% {
    transform: translateX(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translateX(100%) rotate(45deg);
    opacity: 1;
  }
}

/* Enhanced Join Section Title */
.join-server-section .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 40%, var(--accent-primary) 80%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(86, 209, 149, 0.15);
  position: relative;
  z-index: 2;
}

.join-server-section .section-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* Floating Decorative Elements for Join Section */
.join-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.4;
}

.join-decoration-1 {
  top: 12%;
  right: 8%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.15) 0%, transparent 70%);
  animation: joinFloat1 9s ease-in-out infinite;
}

.join-decoration-2 {
  bottom: 18%;
  left: 6%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(125, 245, 217, 0.12) 0%, transparent 70%);
  animation: joinFloat2 7s ease-in-out infinite reverse;
}

.join-decoration-3 {
  top: 45%;
  left: 12%;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.18) 0%, transparent 70%);
  animation: joinFloat3 11s ease-in-out infinite;
}

@keyframes joinFloat1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) translateX(10px) rotate(120deg);
  }
  66% {
    transform: translateY(8px) translateX(-12px) rotate(240deg);
  }
}

@keyframes joinFloat2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-25px) translateX(18px) scale(1.1);
  }
}

@keyframes joinFloat3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-12px) rotate(90deg) scale(0.85);
  }
  50% {
    transform: translateY(18px) rotate(180deg) scale(1.15);
  }
  75% {
    transform: translateY(-8px) rotate(270deg) scale(0.95);
  }
}

/* Edition Selector */
.edition-selector {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.edition-tabs {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 10px rgba(86, 209, 149, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.edition-tab {
  flex: 1;
  padding: 18px 30px;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.70rem;
}

.edition-tab:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.edition-tab.active {
  color: #1a1a1a;
  font-weight: 900;
}

.edition-tabs::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 8px);
  height: calc(100% - 8px);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-secondary) 100%);
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(86, 209, 149, 0.2), 0 0 8px rgba(86, 209, 149, 0.15);
  transform: translateX(0);
}

.edition-tabs.bedrock-active::before {
  transform: translateX(100%);
}

.edition-content {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.edition-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Steps */
.steps-container {
  max-width: 60rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.05) 0%, rgba(125, 245, 217, 0.02) 50%, rgba(86, 209, 149, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.step-item:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 12px rgba(86, 209, 149, 0.06);
  border: 1px solid rgba(86, 209, 149, 0.2);
}

.step-item:hover::before {
  opacity: 1;
}

.step-item:hover::after {
  width: 300px;
  height: 300px;
}


.step-content {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.step-title {
  font-weight: 800;
  font-size: 1.1rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.9rem;
}

.server-address {
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: monospace;
  border: 1px solid rgba(86, 209, 149, 0.2);
  color: var(--accent-secondary);
  font-weight: 600;
}

/* ===== DATENSCHUTZ & IMPRESSUM SPECIFIC STYLES ===== */
.datenschutz-page main,
.imprint-page main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.datenschutz-page main {
  max-width: 800px;
}

.datenschutz-page h1,
.imprint-page h1 {
  font-size: 2.5em;
  text-align: center;
}

.datenschutz-page h2,
.imprint-page h2 {
  font-size: 1.8em;
  color: var(--accent-primary);
  margin-top: 30px;
}

.imprint-page h3 {
  font-size: 1.5em;
  color: var(--accent-primary);
  margin-top: 30px;
}

.datenschutz-page p,
.imprint-page p {
  margin-bottom: 20px;
}

.datenschutz-page a,
.imprint-page a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.datenschutz-page a:hover,
.imprint-page a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.datenschutz-page footer,
.imprint-page footer {
  text-align: center;
  padding: 20px;
  background-color: var(--bg-secondary);
  margin-top: 40px;
}

.datenschutz-page .footer-links a,
.imprint-page .footer-links a {
  color: var(--accent-primary);
  margin: 0 10px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-container .shop-button {
  position: absolute;
  right: 0;
  margin-right: 35%;
}

.nav-container .headline {
  text-align: center;
}

@media (max-width: 768px) {
  .datenschutz-page main,
  .imprint-page main {
    margin: 20px;
    padding: 15px;
  }

  .imprint-page main {
    margin-left: 20px;
  }
}

/* ===== VOTE PAGE SPECIFIC STYLES ===== */
.vote-page body {
  background-color: var(--bg-primary);
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 20px;
}

.vote-page .server-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  padding: 20px;
  margin: 4.5rem auto 0;
}

.vote-page .server-box {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vote-page .server-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.vote-page .server-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.vote-page .vote-button {
  background-color: var(--accent-primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
  text-decoration: none;
}

.vote-page .vote-button:hover {
  background-color: #1ec276;
}

.vote-page .vote-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border: 2px solid white;
  position: relative;
}

.vote-page .vote-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--accent-primary);
  cursor: pointer;
  padding: 0 5px;
  transition: all 0.3s ease;
  position: relative;
  top: -1px;
}

.copy-btn:hover {
  color: var(--accent-secondary);
  transform: scale(1.2) rotate(5deg);
}

/* Image Container */
.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.image-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  transform-style: preserve-3d;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-card:hover {
  transform: rotateY(0) rotateX(0);
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(86, 209, 149, 0.2);
  transition: all 0.5s ease;
}

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  pointer-events: none;
  z-index: 2;
}

.java-glow {
  box-shadow: 0 0 15px rgba(86, 209, 149, 0.15);
  animation: pulse-glow 3s infinite alternate;
}

.bedrock-glow {
  box-shadow: 0 0 15px rgba(86, 209, 149, 0.15);
  animation: pulse-glow 4s infinite alternate-reverse;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(86, 209, 149, 0.1);
  }
  100% {
    box-shadow: 0 0 20px rgba(86, 209, 149, 0.25);
  }
}

.join-cta {
  display: flex;
  justify-content: flex-start;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 5px;
}

/* Responsive Design for Join Section */
@media (max-width: 768px) {
  .edition-tabs {
    max-width: 100%;
  }

  .step-item {
    align-items: flex-start;
  }


  .image-card {
    transform: none;
    margin-top: 20px;
  }

  .join-cta {
    justify-content: center;
  }
}

/* FEATURES BOXES */
.about-section {
  position: relative;
  overflow: hidden;
  background-color: #1E1E1E;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TUTORIAL PAGE STYLES ===== */
.tutorial-page {
  background-color: #1E1E1E;
}

.tutorial-main {
  background-color: #1E1E1E;
}

/* ===== TUTORIAL PAGE HERO SECTION ===== */
.tutorial-hero {
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%),
  url('../img/banner_3.webp') center/cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  overflow: hidden;
}

.tutorial-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(86, 209, 149, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.tutorial-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.tutorial-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.tutorial-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.2) 0%, rgba(125, 245, 217, 0.2) 100%);
  border: 3px solid rgba(86, 209, 149, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconFloat 3s ease-in-out infinite;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
  0 0 30px rgba(86, 209, 149, 0.3);
}

.tutorial-icon-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: rotateBorder 3s linear infinite;
  z-index: -1;
}

.tutorial-icon-circle:hover::before {
  opacity: 0.3;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tutorial-icon-circle i {
  font-size: 32px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 15px rgba(86, 209, 149, 0.8));
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(86, 209, 149, 0.8));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(125, 245, 217, 1));
  }
}

.tutorial-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulseIcon 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulseIcon {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}

.tutorial-icon-wrapper:hover .tutorial-icon-circle {
  border-color: rgba(86, 209, 149, 0.8);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
  0 0 50px rgba(86, 209, 149, 0.6);
  transform: translateY(-5px) scale(1.1);
}

.tutorial-icon-wrapper:hover .tutorial-icon-circle i {
  transform: scale(1.15);
}

.tutorial-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight-lyndara {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: glowPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(86, 209, 149, 0.5));
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 25px rgba(86, 209, 149, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(125, 245, 217, 0.8));
  }
}

.tutorial-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tutorial-hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.tutorial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 1.2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.tutorial-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.tutorial-btn:hover::before {
  left: 100%;
}

.tutorial-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.tutorial-btn:hover::after {
  width: 300px;
  height: 300px;
}

.tutorial-btn i {
  font-size: 16px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.tutorial-btn span {
  position: relative;
  z-index: 1;
}

.tutorial-btn:hover i {
  transform: scale(1.3) rotate(5deg);
}

.tutorial-btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #000000;
  border: 2px solid transparent;
  box-shadow: 0 6px 0 0 #21965f,
  0 12px 35px rgba(86, 209, 149, 0.4);
}

.tutorial-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 0 #21965f,
  0 16px 45px rgba(86, 209, 149, 0.6);
}

.tutorial-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 0 #21965f,
  0 10px 30px rgba(86, 209, 149, 0.4);
}

.tutorial-btn-primary:focus-visible {
  outline: 3px solid var(--accent-secondary);
  outline-offset: 4px;
}

.tutorial-btn-secondary {
  background: rgba(42, 42, 42, 0.7);
  backdrop-filter: blur(20px);
  color: var(--text-primary);
  border: 2px solid rgba(86, 209, 149, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
  0 0 20px rgba(86, 209, 149, 0.1);
}

.tutorial-btn-secondary:hover {
  background: rgba(86, 209, 149, 0.15);
  border-color: rgba(86, 209, 149, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
  0 0 40px rgba(86, 209, 149, 0.3);
}

.tutorial-btn-secondary:active {
  transform: translateY(-1px);
}

.tutorial-btn-secondary:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 4px;
}

.tutorial-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: scrollFade 2.5s ease-in-out infinite;
}

.tutorial-scroll-indicator span {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-icon i {
  font-size: 20px;
  color: var(--accent-primary);
  animation: arrowBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(86, 209, 149, 0.6));
}

@keyframes scrollFade {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

/* Responsive Tutorial Hero Section */
@media (max-width: 1024px) {
  .tutorial-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .tutorial-hero {
    min-height: 90vh;
    padding: 30px 20px;
  }

  .tutorial-hero-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .tutorial-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 45px;
  }

  .tutorial-hero-subtitle br {
    display: none;
  }

  .tutorial-hero-buttons {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-bottom: 60px;
  }

  .tutorial-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 35px;
  }

  .tutorial-icon-circle {
    width: 70px;
    height: 70px;
  }

  .tutorial-icon-circle i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .tutorial-hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .tutorial-hero-subtitle {
    font-size: 1rem;
  }

  .tutorial-btn {
    font-size: 0.95rem;
    padding: 14px 30px;
  }

  .tutorial-icon-circle {
    width: 60px;
    height: 60px;
  }

  .tutorial-icon-circle i {
    font-size: 24px;
  }
}

/* Erste 3 Cards nehmen je 2 Spalten (= 1/3 der Breite) */
.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 2;
}

/* Letzte 2 Cards: zentriert mit je 2 Spalten, 1 Spalte Abstand links/rechts */
.feature-card:nth-child(4) {
  grid-column: 2 / 4;
}

.feature-card:nth-child(5) {
  grid-column: 4 / 6;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.08) 0%, rgba(125, 245, 217, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(86, 209, 149, 0.2);
  border: 1px solid rgba(86, 209, 149, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  width: 250px;
  height: 250px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.2) 0%, rgba(125, 245, 217, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 5px 20px rgba(86, 209, 149, 0.2);
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-8px) rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(86, 209, 149, 0.4);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--accent-primary);
  transition: all 0.3s ease;
  animation: iconBounce 2s ease-in-out infinite;
}

.feature-card:hover .feature-icon i {
  color: var(--accent-secondary);
  transform: scale(1.2);
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 50%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex-grow: 1;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent-primary);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.feature-hover-content {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s;
}

.feature-card:hover .feature-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.features-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 40%, var(--accent-primary) 80%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.features-section .section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.features-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.5;
}

.features-decoration-1 {
  top: 15%;
  right: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.2) 0%, transparent 70%);
  animation: featuresFloat1 8s ease-in-out infinite;
}

.features-decoration-2 {
  bottom: 20%;
  left: 8%;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(125, 245, 217, 0.2) 0%, transparent 70%);
  animation: featuresFloat2 6s ease-in-out infinite reverse;
}

.features-decoration-3 {
  top: 30%;
  left: 15%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.25) 0%, transparent 70%);
  animation: featuresFloat3 10s ease-in-out infinite;
}

@keyframes featuresFloat1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
  }
  66% {
    transform: translateY(15px) translateX(-15px) rotate(240deg);
  }
}

@keyframes featuresFloat2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) translateX(25px) scale(1.1);
  }
}

@keyframes featuresFloat3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(90deg) scale(0.9);
  }
  50% {
    transform: translateY(10px) rotate(180deg) scale(1.1);
  }
  75% {
    transform: translateY(-25px) rotate(270deg) scale(0.95);
  }
}

/* ===================================
   DISCORD SECTION
   =================================== */

.discord-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.discord-container {
  max-width: 1200px;
  margin: 0 auto;
}

.discord-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discord-text {
  padding: 20px;
}

.discord-text .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.discord-highlight {
  color: #5865F2;
  -webkit-text-fill-color: #5865F2;
  text-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.discord-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.discord-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.discord-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(88, 101, 242, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(88, 101, 242, 0.2);
  transition: var(--transition);
}

.discord-feature:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.4);
  transform: translateY(-3px);
}

.discord-feature i {
  font-size: 1.5rem;
  color: #5865F2;
}

.discord-feature span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.discord-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #5865F2;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
  background: #4752C4;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
}

.discord-join-btn i {
  font-size: 1.5rem;
}

.discord-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.discord-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(88, 101, 242, 0.3));
  animation: discordFloat 6s ease-in-out infinite;
}

@keyframes discordFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .discord-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .discord-text .section-title {
    text-align: center;
  }

  .discord-description {
    text-align: center;
  }

  .discord-features {
    grid-template-columns: 1fr;
  }

  .discord-join-btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .discord-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .discord-section {
    padding: 60px 20px;
  }

  .discord-text .section-title {
    font-size: 1.8rem;
  }

  .discord-description {
    font-size: 1rem;
  }

  .discord-join-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== TUTORIAL - ERSTE SCHRITTE SECTION ===== */
.steps-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.steps-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.steps-header {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
}

.steps-header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.steps-label-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.steps-label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: 6px 16px;
  border: 1px solid rgba(86, 209, 149, 0.2);
  border-radius: 20px;
  background: rgba(86, 209, 149, 0.05);
}

.steps-header-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 1px;
  color: #fff;
}

.steps-header-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto 40px auto;
  text-align: center;
  display: block;
}

.steps-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-header p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.step-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 16px;
  position: relative;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  will-change: transform;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(86, 209, 149, 0.3);
  box-shadow: 0 12px 40px rgba(86, 209, 149, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:focus-within {
  border-color: rgba(86, 209, 149, 0.4);
  box-shadow: 0 0 0 3px rgba(86, 209, 149, 0.1);
}


.step-icon-wrapper {
  margin-bottom: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 8px 24px rgba(86, 209, 149, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-card:hover .step-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(86, 209, 149, 0.4);
}

.step-icon i {
  font-size: 26px;
  color: #fff;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.step-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
}

.step-list-icon {
  color: var(--accent-primary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.step-feature-list strong,
.list-label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.list-value {
  color: var(--accent-primary);
  font-weight: 600;
}

.step-tip,
.step-secret-tip,
.step-community-tip {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(86, 209, 149, 0.08);
  border-left: 3px solid var(--accent-primary);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tip-icon,
.secret-tip-icon,
.community-tip-icon {
  color: var(--accent-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tip-text,
.secret-tip-text,
.community-tip-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.5;
}

.edition-selector-enhanced {
  margin: 20px 0;
}

.edition-tabs-enhanced {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.edition-tab-enhanced {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.edition-tab-enhanced:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(86, 209, 149, 0.3);
}

.edition-tab-enhanced.active {
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.2), rgba(125, 245, 217, 0.15));
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.edition-tab-enhanced:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.edition-content-enhanced {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.edition-content-enhanced.active {
  display: block;
}

.edition-info-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 12px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-section {
    padding: 60px 16px;
  }

  .steps-header h2 {
    font-size: 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .steps-header h2 {
    font-size: 26px;
  }

  .steps-header p {
    font-size: 14px;
  }

  .step-title {
    font-size: 20px;
  }

  .edition-tabs-enhanced {
    flex-direction: column;
  }
}

/* ===== MODERNE TIMELINE STYLES ===== */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding: 20px 0;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(86, 209, 149, 0.2) 5%,
    rgba(86, 209, 149, 0.4) 50%,
    rgba(86, 209, 149, 0.2) 95%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(86, 209, 149, 0.3);
}

.step-card-modern {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
  border: 1px solid rgba(86, 209, 149, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card-modern:hover::before {
  opacity: 1;
  animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.step-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(86, 209, 149, 0.5);
  box-shadow:
    0 20px 60px rgba(86, 209, 149, 0.25),
    0 0 80px rgba(86, 209, 149, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.step-number-badge {
  position: absolute;
  left: 50%;
  top: 3rem;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #56d195 0%, #7df5d9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #1e1e1e;
  box-shadow:
    0 10px 40px rgba(86, 209, 149, 0.6),
    0 0 0 6px #1e1e1e,
    0 0 0 8px rgba(86, 209, 149, 0.4),
    inset 0 4px 12px rgba(255, 255, 255, 0.5),
    inset 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.badge-number {
  position: relative;
  z-index: 2;
  font-family: 'Press Start 2P', 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.badge-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(86, 209, 149, 0.8), transparent 60%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
  animation: pulse-glow 3.5s ease-in-out infinite;
  border-radius: 50%;
  filter: blur(12px);
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.step-card-modern:hover .step-number-badge {
  transform: translateX(-50%) scale(1.15) rotate(5deg);
  box-shadow:
    0 15px 60px rgba(86, 209, 149, 0.8),
    0 0 0 6px #1e1e1e,
    0 0 0 8px rgba(86, 209, 149, 0.6),
    inset 0 4px 16px rgba(255, 255, 255, 0.6),
    inset 0 -4px 16px rgba(0, 0, 0, 0.4);
}

.step-card-modern:hover .badge-glow {
  opacity: 1;
}

.step-content-wrapper {
  display: flex;
  gap: 24px;
  padding: 140px 32px 32px;
  align-items: flex-start;
}

.step-icon-wrapper-modern {
  position: relative;
  flex-shrink: 0;
}

.step-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.25), rgba(125, 245, 217, 0.15));
  border: 2px solid rgba(86, 209, 149, 0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(86, 209, 149, 0.15);
}

.step-icon-modern i {
  font-size: 36px;
  color: var(--accent-primary);
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(86, 209, 149, 0.3));
}

.icon-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--accent-primary);
  border-radius: 18px;
  opacity: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
}

.step-card-modern:hover .step-icon-modern {
  transform: translateY(-6px) rotate(-5deg);
  box-shadow: 0 16px 48px rgba(86, 209, 149, 0.3);
  border-color: rgba(86, 209, 149, 0.6);
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.3), rgba(125, 245, 217, 0.2));
}

.step-card-modern:hover .step-icon-modern i {
  transform: scale(1.15);
  color: var(--accent-secondary);
  filter: drop-shadow(0 4px 8px rgba(125, 245, 217, 0.5));
}

.step-text-content {
  flex: 1;
  min-width: 0;
}

.step-title-modern {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.step-description-modern {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

.text-highlight {
  color: var(--accent-primary);
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.6;
  border-radius: 2px;
}

.step-card-modern:hover .text-highlight {
  color: var(--accent-secondary);
}

.step-card-modern:hover .text-highlight::after {
  opacity: 1;
  height: 3px;
}

/* Edition Selector Modern */
.edition-selector-modern {
  margin: 20px 0;
}

.edition-tabs-modern {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
  border-radius: 10px;
}

.edition-tab-modern {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.edition-tab-modern:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.edition-tab-modern.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 6px 16px rgba(86, 209, 149, 0.3);
  transform: translateY(-1px);
}

.edition-content-modern {
  display: none;
  animation: fadeInScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.edition-content-modern.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.connection-info {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(86, 209, 149, 0.2);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.info-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
}

.info-value {
  color: var(--accent-primary);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  background: rgba(86, 209, 149, 0.1);
  border: 1px solid rgba(86, 209, 149, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--accent-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

.copy-btn:hover {
  background: rgba(86, 209, 149, 0.2);
  transform: scale(1.05);
}

/* Feature Highlights */
.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(86, 209, 149, 0.05);
  border-left: 3px solid var(--accent-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(86, 209, 149, 0.1);
  transform: translateX(6px);
}

.highlight-item i {
  color: var(--accent-primary);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item strong {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.highlight-item code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-primary);
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

/* Step Tips Modern */
.step-tip-modern {
  margin-top: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.15), rgba(125, 245, 217, 0.08));
  border: 1px solid rgba(86, 209, 149, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-tip-modern i {
  color: var(--accent-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-tip-modern span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

.step-secret-tip-modern {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 10px;
  display: flex;
  gap: 14px;
}

.step-secret-tip-modern i {
  color: #FFA500;
  font-size: 22px;
  flex-shrink: 0;
}

.step-secret-tip-modern strong {
  color: #FFA500;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.step-secret-tip-modern p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Economy Grid */
.economy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.economy-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(86, 209, 149, 0.2);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.economy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.economy-card:hover {
  border-color: rgba(86, 209, 149, 0.5);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(86, 209, 149, 0.2);
}

.economy-card:hover::before {
  opacity: 1;
}

.economy-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.25), rgba(125, 245, 217, 0.15));
  border: 1px solid rgba(86, 209, 149, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.economy-card:hover .economy-icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.3), rgba(125, 245, 217, 0.2));
  border-color: rgba(86, 209, 149, 0.5);
}

.economy-icon i {
  color: var(--accent-primary);
  font-size: 22px;
  transition: all 0.3s ease;
}

.economy-card:hover .economy-icon i {
  color: var(--accent-secondary);
  transform: scale(1.05);
}

.economy-card h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.economy-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.economy-card code {
  background: rgba(86, 209, 149, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-primary);
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

/* Claim Steps */
.claim-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.claim-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  border-radius: 10px;
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
  position: relative;
}

.claim-step:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  border-left-color: var(--accent-secondary);
  transform: translateX(4px);
  box-shadow: -4px 4px 20px rgba(86, 209, 149, 0.15);
}

.claim-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.claim-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

.claim-step strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.claim-commands {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.command-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(86, 209, 149, 0.25);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.command-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.command-item:hover {
  border-color: rgba(86, 209, 149, 0.5);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  transform: translateX(6px);
  box-shadow: -4px 4px 24px rgba(86, 209, 149, 0.2);
}

.command-item:hover::before {
  opacity: 1;
}

.command-item code {
  background: rgba(86, 209, 149, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--accent-primary);
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 600;
}

.command-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Community Features */
.community-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.community-feature {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(86, 209, 149, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.community-feature:hover {
  border-color: rgba(86, 209, 149, 0.3);
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(6px);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(86, 209, 149, 0.2), rgba(125, 245, 217, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper i {
  color: var(--accent-primary);
  font-size: 24px;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.feature-link {
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-link:hover {
  color: var(--accent-secondary);
  transform: translateX(3px);
}

.step-community-tip-modern {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(125, 245, 217, 0.15), rgba(86, 209, 149, 0.08));
  border: 1px solid rgba(86, 209, 149, 0.3);
  border-radius: 10px;
  display: flex;
  gap: 14px;
}

.step-community-tip-modern i {
  color: var(--accent-secondary);
  font-size: 22px;
  flex-shrink: 0;
}

.step-community-tip-modern strong {
  color: var(--accent-secondary);
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.step-community-tip-modern p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Modern Design */
@media (max-width: 1200px) {
  .steps-timeline::before {
    left: 50%;
  }

  .step-number-badge {
    width: 64px;
    height: 64px;
  }

  .badge-number {
    font-size: 22px;
  }

  .step-card-modern:hover .step-number-badge {
    transform: translateX(-50%) scale(1.12) rotate(4deg);
  }

  .step-content-wrapper {
    padding: 120px 28px 28px;
  }
}

@media (max-width: 768px) {
  .steps-timeline {
    gap: 24px;
  }

  .steps-timeline::before {
    display: none;
  }

  /* Badge auf Mobile komplett ausblenden */
  .step-number-badge {
    display: none !important;
  }

  .badge-glow {
    display: none !important;
  }

  .step-content-wrapper {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }

  .step-icon-wrapper-modern {
    align-self: flex-start;
  }

  .step-icon-modern {
    width: 68px;
    height: 68px;
  }

  .step-icon-modern i {
    font-size: 30px;
  }

  .step-title-modern {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .step-description-modern {
    font-size: 15px;
    line-height: 1.6;
  }

  .economy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .edition-tabs-modern {
    flex-direction: column;
    gap: 8px;
  }

  .community-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .feature-highlights {
    gap: 10px;
  }

  .highlight-item {
    padding: 12px;
    gap: 12px;
  }

  .highlight-item i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .step-content-wrapper {
    padding: 20px 16px;
    gap: 16px;
  }

  .step-icon-modern {
    width: 60px;
    height: 60px;
  }

  .step-icon-modern i {
    font-size: 26px;
  }

  .step-title-modern {
    font-size: 20px;
  }

  .step-description-modern {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.faq-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
}

.faq-header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.faq-label-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.faq-label-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: 6px 16px;
  border: 1px solid rgba(86, 209, 149, 0.2);
  border-radius: 20px;
  background: rgba(86, 209, 149, 0.05);
}

.faq-header-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 1px;
  color: #fff;
}

.faq-header-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  align-items: start;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.faq-item:hover {
  border-color: rgba(86, 209, 149, 0.2);
  box-shadow: 0 8px 30px rgba(86, 209, 149, 0.1);
}

.faq-item.active {
  border-color: rgba(86, 209, 149, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(86, 209, 149, 0.05);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: -2px;
}

.faq-question-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(86, 209, 149, 0.4);
}

.faq-question-icon i {
  font-size: 18px;
  color: #fff;
}

.faq-question-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.95);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-toggle-icon i {
  font-size: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
  opacity: 1;
}

.faq-answer-content {
  padding: 4px 24px 24px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
  animation: fadeIn 0.4s ease;
}

.faq-answer-content p {
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.8);
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.faq-answer-content li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.75);
}

.faq-answer-content li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.faq-answer-content code {
  background: rgba(86, 209, 149, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--accent-primary);
  border: 1px solid rgba(86, 209, 149, 0.2);
}

.faq-tip,
.faq-warning {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.faq-tip {
  background: rgba(86, 209, 149, 0.08);
  border-left: 3px solid var(--accent-primary);
}

.faq-warning {
  background: rgba(255, 165, 0, 0.08);
  border-left: 3px solid #ff9500;
}

.faq-tip i {
  color: var(--accent-primary);
  margin-top: 2px;
}

.faq-warning i {
  color: #ff9500;
  margin-top: 2px;
}

.faq-footer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.faq-footer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(86, 209, 149, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.faq-footer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.faq-footer-icon {
  font-size: 48px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(86, 209, 149, 0.4));
}

.faq-footer-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.faq-footer-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 30px 0;
}

.faq-footer-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-footer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.faq-footer-btn:hover::before {
  left: 100%;
}

.faq-btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  border: 2px solid transparent;
}

.faq-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(86, 209, 149, 0.4);
}

.faq-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(86, 209, 149, 0.3);
}

.faq-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  background: rgba(86, 209, 149, 0.1);
  box-shadow: 0 12px 35px rgba(86, 209, 149, 0.2);
}

/* Responsive Anpassungen für FAQ */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-header-title {
    font-size: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-footer-card {
    padding: 30px 24px;
  }

  .faq-footer-buttons {
    flex-direction: column;
    width: 100%;
  }

  .faq-footer-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-header-title {
    font-size: 26px;
  }

  .faq-header-subtitle {
    font-size: 14px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-question-icon {
    width: 36px;
    height: 36px;
  }

  .faq-question-icon i {
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 18px 18px 18px;
    font-size: 13px;
  }

  .faq-footer-card {
    padding: 24px 20px;
  }

  .faq-footer-title {
    font-size: 22px;
  }

  .faq-footer-text {
    font-size: 14px;
  }
}

