:root {
      --primary-dark: #0f0f0f;
      --primary-card: #1a1a1a;
      --primary-green: #c522a2;
      --primary-light-green: #de4ad7;
      --primary-gray: #2a2a2a;
      --primary-text: #e5e5e5;
      --primary-text-light: #a3a3a3;
      --discord-color: #5865F2;
      --discord-hover: #4752c4;
      --rules-button-color: #d928bb;
      --rules-button-hover: #d928d9;
      --tiktok-button-color: #3a3a3a;
      --tiktok-button-hover: #474747;
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      background-color: var(--primary-dark);
      color: var(--primary-text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(15, 15, 15, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .nav-brand {
      color: var(--primary-text);
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .nav-brand:hover {
      color: var(--primary-green);
      transform: translateY(-1px);
    }
    
    .nav-menu {
      display: flex;
      gap: 1rem;
    }
    
    .nav-link {
      color: var(--primary-text);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .nav-link:hover {
      color: var(--primary-green);
      background: rgba(197, 34, 189, 0.1);
    }
    
    .nav-button {
      background: var(--primary-green);
      color: white;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .nav-button:hover {
      background: var(--primary-light-green);
      transform: translateY(-2px);
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
    }
    
    .hamburger span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary-text);
      border-radius: 3px;
      transition: var(--transition);
      transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: var(--primary-card);
      z-index: 999;
      padding: 8rem 2rem 2rem;
      transition: right 0.4s ease;
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .mobile-menu.active {
      right: 0;
    }
    
    .mobile-menu .nav-link {
      opacity: 0;
      transform: translateX(50px);
      padding: 1rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-menu.active .nav-link {
      opacity: 1;
      transform: translateX(0);
    }
    
    .mobile-menu .nav-link:nth-child(1) { transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s; }
    .mobile-menu .nav-link:nth-child(2) { transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s; }
    .mobile-menu .nav-link:nth-child(3) { transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
    .mobile-menu .nav-link:nth-child(4) { transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s; }
    .mobile-menu .nav-link:nth-child(5) { transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s; }
    
    .theme-toggle {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--primary-card);
      border: 1px solid rgba(255, 255, 255, 0.1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1002;
      transition: var(--transition);
    }
    
    .theme-toggle:hover {
      transform: rotate(30deg);
      background: var(--primary-gray);
    }
    
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 6rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.85));
      z-index: -2;
    }
    
    .hero-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero-logo {
      width: 180px;
      margin: 0 auto 2rem;
      animation: float 6s ease-in-out infinite;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    
    .hero-title {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: linear-gradient(90deg, #de4ad7, #c522bd, #a31674);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--primary-text-light);
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
    }
    
    .btn-primary {
      background: var(--primary-green);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 14px rgba(197, 34, 34, 0.4);
    }
    
    .btn-primary:hover {
      background: var(--primary-light-green);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px -5px rgba(197, 34, 148, 0.5);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--primary-text);
      padding: 0.8rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 500;
      border: 1px solid var(--primary-gray);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .btn-secondary:hover {
      border-color: var(--primary-green);
      color: var(--primary-green);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(197, 34, 184, 0.2);
    }
    
    .section {
      padding: 5rem 0;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: var(--primary-text);
    }
    
    .section-title span {
      background: linear-gradient(90deg, #de4aca, #c5229c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    
    .stat-card {
      background: var(--primary-card);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(30px);
    }
    
    .stat-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .stat-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(197, 34, 197, 0.3);
    }
    
    .stat-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(145deg, var(--primary-gray), #252525);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary-green);
      font-size: 1.8rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary-text);
      margin-bottom: 0.5rem;
      font-variant-numeric: tabular-nums;
    }
    
    
    .stat-label {
      color: var(--primary-text-light);
      font-size: 1.1rem;
      font-weight: 500;
    }
    
    .server-info-card {
      background: var(--primary-card);
      border-radius: 16px;
      padding: 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 2rem;
      transition: var(--transition);
      overflow: hidden;
    }
    
    .server-info-card:hover {
      border-color: rgba(197, 34, 197, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .server-info-left {
      flex: 1;
    }
    
    .server-info-left h3 {
      color: var(--primary-green);
      font-size: 1.2rem;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }
    
    .server-ip-box {
      background: rgba(15, 15, 15, 0.8);
      border: 2px solid rgba(197, 34, 189, 0.3);
      border-radius: 10px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      transition: var(--transition);
      margin-bottom: 0.75rem;
    }
    
    .server-ip-box:hover {
      border-color: rgba(197, 34, 189, 0.6);
      background: rgba(15, 15, 15, 0.95);
    }

    .server-address-stack {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      min-width: 0;
    }

    .server-address-line {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .server-port-box {
      background: rgba(15, 15, 15, 0.8);
      border: 2px solid rgba(197, 34, 189, 0.3);
      border-radius: 10px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      transition: var(--transition);
      margin-bottom: 0.75rem;
    }
    
    .server-port-box:hover {
      border-color: rgba(197, 34, 189, 0.6);
      background: rgba(15, 15, 15, 0.95);
    }

    .server-port-stack {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      min-width: 0;
    }

    .server-port-line {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
    }
    #server-port-text {
      font-size: 1rem;
      font-weight: 500;
      color: var(--primary-text);
      font-family: 'Courier New', monospace;
      letter-spacing: 0.5px;
      word-break: break-all;
    }

    .server-port-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--primary-green);
    }

    .copy-btn-icon {
      color: var(--primary-green);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .server-address-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--primary-green);
    }

    #server-ip-text,
    #server-port-text {
      font-size: 1rem;
      font-weight: 500;
      color: var(--primary-text);
      font-family: 'Courier New', monospace;
      letter-spacing: 0.5px;
      word-break: break-all;
    }

    .copy-btn {
      background: none;
      border: none;
      color: var(--primary-green);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.5rem;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .copy-btn:hover {
      color: var(--primary-light-green);
      transform: scale(1.15);
    }
    
    .server-info-image {
      width: 180px;
      height: 180px;
      object-fit: contain;
      transition: var(--transition);
      flex-shrink: 0;
    }
    
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    @media (max-width: 900px) {
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .news-grid {
        grid-template-columns: 1fr;
      }
    }

    .news-card {
      background: var(--primary-card, #1a1a1a);
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s;
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .news-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    
    .news-content {
      padding: 1.2rem;
    }
    
    .news-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--primary-text);
      margin-bottom: 0.7rem;
    }
    
    .news-date {
      color: var(--primary-text-light);
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      display: block;
    }
    
    .news-excerpt {
      color: var(--primary-text-light);
      margin-bottom: 1.8rem;
      line-height: 1.6;
    }
    
    .news-link {
      color: var(--primary-green);
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
    }
    
    .news-link:hover {
      gap: 0.8rem;
    }

    .news-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(34, 197, 94, 0.3);
    }
    
    .game-mode {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      margin-bottom: 3rem;
      background: var(--primary-card);
      border-radius: 16px;
      padding: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .game-mode.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    @media (min-width: 768px) {
      .game-mode {
        flex-direction: row;
        align-items: center;
      }
      
      .game-mode.reverse {
        flex-direction: row-reverse;
      }
    }
    
    .game-mode-image {
      flex: 1;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 260px;
      background: rgba(255,255,255,0.04);
    }
    
    .game-mode-image video {
      height: 100%;
      min-height: 260px;
      object-fit: cover;
    }
    
    .game-mode-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      position: relative;
      z-index: 1;
    }
    
    .game-mode-title {
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--primary-text);
      margin-bottom: 0.2rem;
      letter-spacing: 0.02em;
    }
    
    .game-mode-description {
      color: var(--primary-text-light);
      line-height: 1.7;
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
    }
    
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
    }
    
    .team-card {
      background: var(--primary-card);
      border-radius: 16px;
      padding: 2.2rem;
      text-align: center;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transform: translateY(30px);
    }
    
    .team-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(197, 34, 184, 0.2);
    }
    
    .team-avatar {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.8rem;
      border: 3px solid var(--primary-gray);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .team-name {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--primary-text);
      margin-bottom: 0.6rem;
    }
    
    .team-role {
      color: var(--primary-green);
      font-weight: 500;
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
    }
    
    .team-join-date {
      color: var(--primary-text-light);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }
    
    .team-description {
      color: var(--primary-text-light);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    .cta {
      background: var(--primary-card);
      border-radius: 20px;
      padding: 4rem 2.5rem;
      text-align: center;
      margin: 3rem 0 0;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      background-image: 
        radial-gradient(circle at 75% 30%, rgba(197, 34, 184, 0.1) 0%, transparent 50%);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .cta.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .cta-title {
      font-size: 2.3rem;
      font-weight: 700;
      color: var(--primary-text);
      margin-bottom: 1.2rem;
    }
    
    .cta-description {
      color: var(--primary-text-light);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    .discord-join {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: var(--discord-color);
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
      max-width: max-content;
    }
    
    .discord-join:hover {
      background: var(--discord-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    }

    .rules-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      padding: 3rem 2.5rem;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
      isolation: isolate;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, rgba(24, 25, 30, 0.97), rgba(35, 37, 43, 0.95));
      background-image:
        radial-gradient(circle at top left, rgba(211, 88, 242, 0.2), transparent 35%),
        radial-gradient(circle at bottom right, rgba(197, 34, 184, 0.18), transparent 30%);
      backdrop-filter: blur(12px);
    }

    .rules-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .rules-bg-layer {
      position: absolute;
      inset: -12%;
      pointer-events: none;
      z-index: -2;
      opacity: 0.95;
    }

    .rules-bg-layer .rules-tile {
      position: absolute;
      display: block;
      width: 140px;
      height: auto;
      object-fit: cover;
      opacity: 0.2;
      filter: grayscale(0.2) brightness(1.15) saturate(0.95);
      transform: translate3d(0, 0, 0);
      will-change: transform, opacity;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .rules-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 45%, rgba(255, 255, 255, 0.03));
      z-index: -1;
      pointer-events: none;
    }

    .rules-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(15, 15, 15, 0.82), rgba(15, 15, 15, 0.25));
      z-index: -1;
    }

    .rules-description {
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
      line-height: 1.7;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

    .rules-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: var(--rules-button-color);
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      line-height: 1;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(231, 58, 237, 0.35);
      max-width: max-content;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 1;
    }

    .rules-button:hover {
      background: var(--rules-button-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(237, 58, 228, 0.45);
    }

    .about-tiktok-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      background: var(--tiktok-button-color);
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      line-height: 1;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(138, 138, 138, 0.45);
      max-width: max-content;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 1;
      margin-top: 0.4rem;
    }

    .about-tiktok-button:hover {
      background: var(--tiktok-button-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(138, 138, 138, 0.45);
    }
    
    .footer {
      background: var(--primary-card);
      padding: 2rem 0 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 0;
      border-top: none;
    }
    
    .footer-bottom p {
      color: var(--primary-text-light);
      margin-bottom: 0;
    }

    .footer-bottom a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .footer-bottom a:hover {
      color: var(--primary-green);
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
      
      .hero-title {
        font-size: 2.8rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
      
      .footer-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .game-mode {
        padding: 1.8rem;
      }
      
      .cta {
        padding: 3rem 1.8rem;
      }
      
      .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
      }

      .server-info-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
      }

      .server-info-left {
        width: 100%;
      }

      .server-info-image {
        width: 150px;
        height: 150px;
        margin-top: 1rem;
      }

      .server-ip-box {
        flex-direction: column;
        gap: 1rem;
      }
    }