    :root {
      --color-primary: #C8FF00;
      --color-yellow: #FFE500;
      --color-bg-dark: #0a0a0a;
      --color-bg-section: #1a1a1a;
      --font-display: 'Bebas Neue', sans-serif;
      --font-primary: 'Montserrat', sans-serif;
    }

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

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: var(--font-primary);
      background: var(--color-bg-dark);
      color: white;
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      background: url('/images/homepage/hero_farm.jpg') center/cover no-repeat;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      padding-top: 80px;
    }

    .hero::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 300px;
      background: url('/images/homepage/Banner_Nero.png') center bottom no-repeat;
      background-size: 100% 100%;
      z-index: 1;
      pointer-events: none;
    }

    .hero-discover {
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-primary);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 12px;
      color: white;
      z-index: 2;
      text-transform: uppercase;
      opacity: 0.85;
    }

    .hero-title {
      font-family: var(--font-primary);
      color: white;
      line-height: 0.95;
      position: relative;
      z-index: 2;
      max-width: 100%;
      margin: 0 auto;
    }

    .hero-title-small {
      font-size: clamp(1rem, 2vw, 1.5rem);
      display: block;
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
      font-weight: 300;
      text-transform: lowercase;
      color: white;
      opacity: 0.9;
    }

    .hero-title-main {
      font-family: var(--font-display);
      font-size: clamp(5rem, 15vw, 13rem);
      font-style: italic;
      display: block;
      line-height: 0.95;
      margin: 1rem 0;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
      color: white;
      text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.8);
      -webkit-text-stroke: 3px white;
      paint-order: stroke fill;
    }

    .hero-title-bottom {
      font-size: clamp(1rem, 2vw, 1.5rem);
      display: block;
      margin-top: 1.5rem;
      letter-spacing: 1px;
      font-weight: 300;
      color: white;
      opacity: 0.9;
    }

    .hero-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 3rem;
      padding: 1rem 2.5rem;
      background: var(--color-primary);
      color: #000;
      font-family: var(--font-primary);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      border-radius: 50px;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(200, 255, 0, 0.3);
    }

    .hero-cta-button:hover {
      background: var(--color-yellow);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(200, 255, 0, 0.5);
    }

    .hero-cta-button i {
      font-size: 1.3rem;
    }

    /* Deutschland Section */
    .deutschland-section {
      background: #2E2E2E;
      padding: 3rem 3rem;
      text-align: center;
      position: relative;
    }

    .deutschland-section::after {
      content: "";
      position: absolute;
      bottom: -300px;
      left: 0;
      right: 0;
      height: 300px;
      background: url('/images/homepage/Banner_Nero.png') center bottom no-repeat;
      background-size: 100% 100%;
      transform: scaleY(-1);
      z-index: 1;
      pointer-events: none;
    }

    .deutschland-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      color: var(--color-yellow);
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .deutschland-text {
      max-width: 900px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      line-height: 1.9;
      font-weight: 300;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4rem);
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 4rem;
      font-weight: 400;
    }

    /* Features Section */
    .features-section {
      background: url('/images/homepage/second.jpg') center/cover fixed;
      position: relative;
      padding: 8rem 2rem;
      margin-top: 0; /* seam element provides spacing */
    }

    .features-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0; /* disabled, replaced by seam element */
      pointer-events: none;
    }

    .features-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      z-index: 1;
      pointer-events: none;
    }

    .features-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }

    .features-slider-container {
      position: relative;
      margin-top: 4rem;
      padding: 0 120px;
    }

    .swiper {
      width: 100%;
      padding: 20px 0 60px 0;
    }

    .swiper-slide {
      height: auto;
      display: flex;
    }

    .feature-card {
      background: rgba(0, 0, 0, 0.7);
      border: 2px solid rgba(200, 255, 0, 0.15);
      padding: 3rem 2.5rem;
      text-align: left;
      transition: all 0.3s ease;
      border-radius: 4px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .feature-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(200, 255, 0, 0.2);
      background: rgba(0, 0, 0, 0.8);
    }

    .feature-icon {
      font-size: 3.2rem;
      color: var(--color-primary);
      background: rgba(200, 255, 0, 0.08);
      width: 85px;
      height: 85px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.8rem;
      border-radius: 4px;
      border: 2px solid rgba(200, 255, 0, 0.2);
    }

    .feature-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1.2rem;
      font-weight: 400;
    }

    .feature-text {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1.8rem;
      line-height: 1.8;
      font-weight: 300;
    }

    /* Swiper Navigation */
    .swiper-button-next,
    .swiper-button-prev {
      width: 60px;
      height: 60px;
      background: rgba(200, 255, 0, 0.1);
      border: 2px solid var(--color-primary);
      border-radius: 50%;
      color: var(--color-primary);
      transition: all 0.3s ease;
    }

    .swiper-button-next {
      right: 0;
    }

    .swiper-button-prev {
      left: 0;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 1.5rem;
      font-weight: 900;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--color-primary);
      color: #000;
      transform: scale(1.1);
    }

    .swiper-button-disabled {
      opacity: 0.3;
    }

    /* Swiper Pagination */
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(200, 255, 0, 0.3);
      opacity: 1;
      transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
      background: var(--color-primary);
      width: 30px;
      border-radius: 6px;
    }

    /* Map Section */
    .map-section {
      background: url('/images/homepage/second.jpg') center/cover fixed;
      padding: 8rem 2rem;
      text-align: center;
      position: relative;
      margin-top: 0;
    }

    .map-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0;
      z-index: 1;
      pointer-events: none;
    }

    .map-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0;
      background: none;
      pointer-events: none;
    }

    .map-title {
      font-family: var(--font-display);
      font-size: clamp(5rem, 12vw, 9rem);
      text-transform: uppercase;
      letter-spacing: 8px;
      margin-bottom: 1rem;
      text-shadow: 0 0 40px rgba(200, 255, 0, 0.4);
      font-weight: 400;
    }

    .map-subtitle {
      font-size: 0.85rem;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 4rem;
      font-weight: 600;
    }

    .map-container {
      max-width: 1100px;
      margin: 0 auto;
      border: 3px solid rgba(200, 255, 0, 0.3);
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }

    .map-image {
      width: 100%;
      height: 600px;
      background: url('/images/homepage/map-overview.png') center/contain no-repeat;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* Server Info Section */
    .server-info-section {
      background: url('/images/homepage/second.jpg') center/cover fixed;
      padding: 6rem 2rem;
      text-align: center;
      position: relative;
    }

    .server-stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .server-card {
      background: rgba(0, 0, 0, 0.6);
      padding: 2rem;
      border-radius: 15px;
      border: 2px solid rgba(200, 255, 0, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .server-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-yellow));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .server-card:hover {
      border-color: var(--color-primary);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(200, 255, 0, 0.3);
    }

    .server-card:hover::before {
      opacity: 1;
    }

    .server-card-icon {
      font-size: 3rem;
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .server-card-title {
      font-family: var(--font-primary);
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 1rem;
    }

    .server-card-value {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-primary);
      font-weight: 700;
      margin: 0;
      line-height: 1;
    }

    .server-status-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
    }

    .status-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #666;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      animation: pulse 2s ease-in-out infinite;
    }

    .status-dot.online {
      background: #00ff00;
      box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    }

    .status-dot.offline {
      background: #ff0000;
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
      animation: none;
    }

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

    .player-list {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .player-item {
      background: rgba(255, 255, 255, 0.05);
      padding: 0.75rem 1rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: #ddd;
      border-left: 3px solid var(--color-primary);
    }

    .player-item i {
      color: var(--color-primary);
      font-size: 1.1rem;
    }

    .player-item span:first-of-type {
      flex: 1;
      text-align: left;
      font-weight: 500;
    }

    .player-uptime {
      font-size: 0.85rem;
      color: #888;
      font-weight: 400;
    }

    /* Community Section */    /* Community Section */
    .community-section {
      background: url('/images/homepage/second.jpg') center/cover fixed;
      padding: 8rem 2rem;
      text-align: center;
      position: relative;
      margin-top: 0;
    }

    .community-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0;
      z-index: 1;
      pointer-events: none;
    }

    .community-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: #2E2E2E;
      z-index: 0;
      pointer-events: none;
    }

    .community-glow {
      content: "";
      position: absolute;
      top: -20%;
      right: -5%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      z-index: 1;
    }

    .community-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      margin: 0 auto;
    }

    .community-title {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 7vw, 5.5rem);
      text-transform: uppercase;
      letter-spacing: 5px;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }

    .community-text {
      font-size: 1.15rem;
      margin-bottom: 3rem;
      line-height: 1.8;
      font-weight: 300;
    }

    .btn-discord {
      background: white;
      color: #7C3AED;
      padding: 1.4rem 3.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: none;
      cursor: pointer;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      transition: all 0.3s ease;
      text-decoration: none;
      border-radius: 4px;
    }

    .btn-discord:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
      background: #f8f8f8;
    }

    /* Footer */
    .footer {
      background: #2E2E2E;
      padding: 3.5rem 2rem;
      text-align: center;
      color: #666;
      font-size: 0.85rem;
    }

    .footer a {
      color: var(--color-primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer a:hover {
      color: var(--color-yellow);
      text-decoration: underline;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(5px);
      animation: fadeIn 0.3s ease;
    }

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

    .modal-content {
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      margin: 5% auto;
      padding: 3rem;
      border: 2px solid var(--color-primary);
      border-radius: 15px;
      width: 90%;
      max-width: 900px;
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(200, 255, 0, 0.3);
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      color: #aaa;
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-size: 3rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      line-height: 1;
    }

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

    .modal-content h2 {
      text-align: center;
    }

    .modal-content h3 {
      border-bottom: 2px solid var(--color-primary);
      padding-bottom: 0.5rem;
    }

    .modal-content h4 {
      margin-bottom: 0.5rem;
    }

    .modal-content p {
      color: #ddd;
      margin-bottom: 1rem;
    }

    .modal-content a {
      color: var(--color-primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .modal-content a:hover {
      color: var(--color-yellow);
      text-decoration: underline;
    }

    /* Custom Scrollbar for Modal */
    .modal-content::-webkit-scrollbar {
      width: 10px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: var(--color-primary);
      border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb:hover {
      background: var(--color-yellow);
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      padding: 0.75rem 2rem;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--color-primary);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 400;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .navbar-brand:hover {
      color: white;
    }

    .navbar-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navbar-link {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      transition: all 0.3s ease;
      font-weight: 700;
      position: relative;
      padding: 0.5rem 0;
    }

    .navbar-link:hover {
      color: white;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
      flex-shrink: 0;
    }

    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--color-primary);
      border-radius: 3px;
      transition: all 0.3s ease;
      display: block;
    }

    .mobile-menu-toggle:hover span {
      background: var(--color-yellow);
    }

    /* Mobile Sidebar */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(20px);
      z-index: 2000;
      transition: right 0.3s ease;
      border-left: 2px solid rgba(200, 255, 0, 0.3);
      display: flex;
      flex-direction: column;
    }

    .mobile-sidebar.active {
      right: 0;
    }

    .mobile-sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-sidebar-header h2 {
      font-family: var(--font-display);
      color: var(--color-primary);
      font-size: 1.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .mobile-sidebar-close {
      background: transparent;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .mobile-sidebar-close:hover {
      color: var(--color-primary);
    }

    .mobile-sidebar-links {
      list-style: none;
      padding: 1rem 0;
      flex: 1;
    }

    .mobile-sidebar-links li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-sidebar-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.5rem;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .mobile-sidebar-link i {
      font-size: 1.3rem;
      color: var(--color-primary);
    }

    .mobile-sidebar-link:hover {
      background: rgba(200, 255, 0, 0.1);
      color: var(--color-primary);
      padding-left: 2rem;
    }

    /* Mobile Sidebar Overlay */
    .mobile-sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-sidebar-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 0.75rem 1rem;
        width: 100%;
      }

      .navbar-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
      }

      .navbar-brand {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .navbar-links {
        display: none !important;
      }

      .mobile-menu-toggle {
        display: flex !important;
      }
      
      .features-slider-container {
        padding: 0 60px;
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 45px;
        height: 45px;
      }

      .swiper-button-next {
        right: 5px;
      }

      .swiper-button-prev {
        left: 5px;
      }

      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 1.2rem;
      }
    }

    /* Disable tracks attached to Germany section so tracks are drawn by Features ::before */
    .deutschland-section::after { 
      background: none !important; 
      height: 0 !important; 
    }

    /* Seam element between sections to host the tracks over the next section's background */
    .section-seam {
      position: relative;
      height: 300px;
      overflow: hidden;
    }
    .section-seam::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('/images/homepage/Banner_Nero.png') center bottom no-repeat;
      background-size: 100% 100%;
      transform: scaleY(-1);
      pointer-events: none;
      z-index: 2;
    }
    /* Specific seam using the Features background so tracks appear transparent without gradients */
    .seam-de-features {
      background: url('/images/homepage/second.jpg') center/cover no-repeat fixed;
      z-index: 1;
    }

    /* Seam before Community uses the second.jpg background with gradient overlay */
    .seam-map-community {
      background: url('/images/homepage/second.jpg') center/cover no-repeat fixed;
      position: relative;
    }
    .seam-map-community::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .seam-map-community::before {
      z-index: 2;
      transform: scaleY(1) !important;
    }

    /* ===================================
       RESPONSIVE MEDIA QUERIES
       =================================== */

    /* Tablet & Small Desktop */
    @media (max-width: 1024px) {
      .features-slider-container {
        padding: 0 80px;
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 40px;
        height: 40px;
      }

      /* Über uns section - keep 2 columns on tablet */
      #about .map-container {
        gap: 1.5rem;
        padding: 1.5rem;
      }

      /* Philosophie & Spielprinzip boxes */
      #about > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        gap: 1.5rem;
        padding: 0 1.5rem;
      }
    }

    /* Mobile Devices */
    @media (max-width: 768px) {
      /* Navbar */
      .navbar {
        padding: 1rem;
      }

      .navbar-content {
        flex-direction: column;
        gap: 1rem;
      }

      .navbar-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
      }

      .navbar-link {
        padding: 0.5rem 1rem;
        display: block;
      }

      /* Hero Section */
      .hero {
        padding: 1.5rem 1rem;
        min-height: 90vh;
      }

      .hero::before {
        height: 150px;
      }

      .hero-title-main {
        font-size: clamp(3.5rem, 12vw, 6rem);
        letter-spacing: 0;
        -webkit-text-stroke: 2px white;
      }

      .hero-title-bottom {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        padding: 0 1rem;
      }

      .hero-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        margin-top: 2rem;
      }

      /* Deutschland Section */
      .deutschland-section {
        padding: 2rem 1.5rem;
      }

      .deutschland-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
      }

      .deutschland-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
      }

      /* Section Seams */
      .section-seam {
        height: 150px;
      }

      /* Features Section */
      .features-section {
        padding: 4rem 1rem;
      }

      .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .features-content p {
        font-size: 1rem;
        padding: 0 1rem;
      }

      .features-slider-container {
        padding: 0 40px;
        margin-top: 2rem;
      }

      .feature-card {
        padding: 2rem 1.5rem;
      }

      .feature-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
      }

      .feature-title {
        font-size: 1.3rem;
      }

      .feature-text {
        font-size: 0.95rem;
      }

      .swiper-button-next,
      .swiper-button-prev {
        width: 35px;
        height: 35px;
      }

      .swiper-button-next {
        right: 5px;
      }

      .swiper-button-prev {
        left: 5px;
      }

      /* Über uns Section */
      .map-section {
        padding: 4rem 1rem;
      }

      .map-title {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .map-subtitle {
        font-size: 1rem;
      }

      /* Intro Text */
      #about > div:first-of-type {
        padding: 0 1rem !important;
        margin: 1.5rem auto !important;
      }

      #about > div:first-of-type p {
        font-size: 1rem !important;
      }

      /* Struktur Cards - Single Column on Mobile */
      #about .map-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 1rem !important;
      }

      #about .map-container > div {
        padding: 1.5rem !important;
      }

      #about .map-container h3 {
        font-size: 1.3rem !important;
        flex-wrap: wrap;
      }

      #about .map-container p {
        font-size: 0.95rem !important;
      }

      /* Philosophie & Spielprinzip - Single Column on Mobile */
      #about > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem !important;
        margin-top: 2rem !important;
      }

      #about > div[style*="grid-template-columns: repeat(2, 1fr)"] > div {
        padding: 2rem 1.5rem !important;
      }

      #about > div[style*="grid-template-columns: repeat(2, 1fr)"] h3 {
        font-size: 1.5rem !important;
      }

      #about > div[style*="grid-template-columns: repeat(2, 1fr)"] li {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 !important;
      }

      /* Abschluss Section */
      #about > div:last-child {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem !important;
      }

      #about > div:last-child h3 {
        font-size: 1.4rem !important;
      }

      #about > div:last-child p {
        font-size: 1rem !important;
      }

      /* Server Info Section */
      .server-info-section {
        padding: 4rem 1.5rem;
      }

      .server-stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .server-card {
        padding: 1.5rem;
      }

      .server-card-icon {
        font-size: 2.5rem;
      }

      .server-card-title {
        font-size: 1.1rem;
      }

      .server-card-value {
        font-size: 2rem;
      }

      .server-status-indicator {
        font-size: 1.3rem;
      }

      .player-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
      }

      /* Community Section */
      .community-section {
        padding: 4rem 1.5rem;
      }

      .community-title {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .community-text {
        font-size: 1rem;
        padding: 0 0.5rem;
      }

      .community-content > div {
        padding: 1.5rem 1rem !important;
        margin: 1.5rem 0 !important;
      }

      .community-content > div h3 {
        font-size: 1.2rem !important;
      }

      .community-content > div li {
        font-size: 0.9rem !important;
        padding: 0.4rem 0 !important;
      }

      .btn-discord {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

      /* Footer */
      .footer {
        padding: 2rem 1.5rem;
        font-size: 0.9rem;
      }

      /* Modal */
      .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 2rem 1.5rem;
        max-height: 85vh;
      }

      .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
      }

      .modal-content h2 {
        font-size: 2rem !important;
      }

      .modal-content h3 {
        font-size: 1.3rem !important;
      }

      .modal-content h4 {
        font-size: 1.1rem !important;
      }

      .modal-content p {
        font-size: 0.95rem !important;
      }
    }

    /* Small Mobile Devices */
    @media (max-width: 480px) {
      /* Hero */
      .hero-title-main {
        font-size: clamp(3rem, 15vw, 5rem);
        line-height: 1;
      }

      .hero-title-bottom {
        font-size: 0.85rem;
        line-height: 1.4;
      }

      .hero-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
      }

      .hero-cta-button i {
        font-size: 1.1rem;
      }

      /* Navbar */
      .navbar-brand {
        font-size: 1.2rem;
      }

      .navbar-link {
        font-size: 0.9rem;
      }

      /* Features */
      .features-slider-container {
        padding: 0 30px;
      }

      .feature-card {
        padding: 1.5rem 1rem;
      }

      .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
      }

      .feature-title {
        font-size: 1.2rem;
      }

      .feature-text {
        font-size: 0.9rem;
      }

      /* Swiper Navigation */
      .swiper-button-next,
      .swiper-button-prev {
        width: 30px;
        height: 30px;
      }

      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 1rem;
      }

      /* Über uns */
      #about .map-container > div {
        padding: 1.2rem !important;
      }

      #about .map-container h3 {
        font-size: 1.2rem !important;
      }

      #about .map-container h3 i {
        font-size: 1.2rem;
      }

      /* Community */
      .community-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
      }

      .btn-discord {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
      }

      /* Modal */
      .modal-content {
        padding: 1.5rem 1rem;
      }

      .modal-close {
        font-size: 2rem;
        top: 0.5rem;
        right: 0.5rem;
      }

      .modal-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
      }
    }

    /* Landscape Mobile Phones */
    @media (max-width: 896px) and (orientation: landscape) {
      .hero {
        min-height: 100vh;
        padding: 1rem;
      }

      .hero-title-main {
        font-size: clamp(3rem, 10vw, 5rem);
      }

      .hero-cta-button {
        margin-top: 1.5rem;
      }

      .features-section,
      .community-section,
      .map-section {
        padding: 3rem 1rem;
      }
    }