* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-image: url('https://www.lukegerhardt.com/images/mc/koohiisanville-01.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}



.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f9f13;
  color: white;
  padding: 0 20px;
  height: 60px;
}



nav {
  display: flex;
  gap: 20px;
}



nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
}



nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}



main {
  flex: 1;
  padding: 20px;
}



.content-wrapper {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}



.news-sidebar {
  flex: 0 0 300px;
}



.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.server-section, .donation-section {
  width: 100%;
}



.content-card {
  background-color: rgba(31, 31, 31, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}



.content-card h2 {
  color: #1f9f13;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}



.server-details p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}



.server-details strong {
  color: #1f9f13;
  font-weight: 600;
}



.ip-address {
  color: #4CAF50;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  background-color: #000000;
  padding: 2px 4px;
  border: 1px solid #4CAF50;
}



.version {
  color: #00ddff;
  font-weight: bold;
}



.description {
  color: #e0e0e0;
  line-height: 1.6;
}



.donation-details p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}



.donation-btn {
  display: inline-block;
  background-color: #ff9335;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #ff9335;
  text-transform: uppercase;
}



.donation-btn:hover {
  background-color: transparent;
  color: #ff9335;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(159, 103, 19, 0.3);
}



.news-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.news-article {
  background-color: #1a1a1a;
  border: 2px solid #00ff00;
  padding: 20px;
  box-shadow: none;
  position: relative;
}



.news-article::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #00ff00;
  z-index: -1;
}



.news-article h3 {
  color: #00ff00;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #00ff00;
  padding-bottom: 5px;
}



.news-article p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.4;
  color: #00ff00;
}



.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  border-left: 4px solid #1f9f13;
  transition: all 0.3s ease;
}

.news-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.news-item h3 {
  color: #1f9f13;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.news-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-style: italic;
}

.news-content {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
