/* style.css - Updated for 2025 best practices */
:root {
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --accent-color: #1f8ef1;
  --accent-hover: #197bd1;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

/* Global Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* Layout Containers */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  padding: 40px 20px 20px 20px;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 256px;
  height: auto;
}

.site-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1rem;
  color: #bbbbbb;
}

/* Main Content */
.main-content {
  background-color: #222;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
}

.description-section {
  text-align: center;
  margin-bottom: 30px;
}

.description {
  font-size: 1.2rem;
}

.status-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.status-block {
  flex: 1 1 200px;
  margin: 10px;
  text-align: center;
}

.status-block h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.status-block p {
  font-size: 1.2rem;
}

.ip-section {
  text-align: center;
  margin-bottom: 30px;
}

.ip-display {
  display: inline-flex;
  align-items: center;
  background: #333;
  border-radius: 4px;
  padding: 5px 10px;
}

#server-ip {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  margin-right: 10px;
  color: #ddd;
}

.copy-button {
  background: #444;
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.copy-button:hover {
  background: #666;
}

.links-section {
  text-align: center;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background: var(--accent-hover);
}

.vote-section {
  text-align: center;
  margin: 20px 0;
}

.social-future {
  display: none; /* Hidden until needed */
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
  .status-section {
    flex-direction: column;
    align-items: center;
  }

  .site-title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.9rem;
  }
}