/* style.css */

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url("https://cdn.modrinth.com/data/Q1vvjJYV/images/593042203d2297676eed851f22c8e2ee3eaab5d6.jpeg") no-repeat center center fixed;
    background-size: cover;
    color: white;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }
  
  .navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #00c3ff;
  }
  
  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    text-align: center;
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .logo {
    width: 120px;
    height: auto;
    margin: 20px 0;
  }
  
  .ip-button {
    background-color: #0a0a0a;
    color: #00c3ff;
    padding: 12px 24px;
    border: 2px solid #00c3ff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 10px #00c3ff50;
  }
  
  .ip-button:hover {
    background-color: #00c3ff;
    color: black;
    box-shadow: 0 0 20px #00c3ff;
  }
  
  .player-count {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .arrow-down {
    font-size: 3rem;
    color: white;
    animation: bounce 2s infinite;
  }
  
  .stats {
    background: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    text-align: center;
    font-size: 1.2rem;
  }
  
  .stat-line {
    margin: 0.3rem 0;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  

  #server-status-window {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
    background-color: #f9f9f9;
  }
  
  #server-status {
    font-weight: bold;
    color: #333;
  }
  
  #server-info {
    margin-top: 10px;
    font-size: 14px;
  }
  
  .stat-line {
    margin: 5px 0;
  }