/* hey hey hey, its style.css 


k that was weird lol */

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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1420, #1a1f2e, #252b3d);
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

sub {
  margin: 0 auto;
  text-align: center;
  display: block;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(45deg, 
    rgba(32,87,147,0.15),
    rgba(47,136,255,0.15),
    rgba(110,203,255,0.15));
  filter: blur(80px);
  animation: aurora 15s ease infinite;
  transition: all 0.5s ease;
}

.aurora:hover {
  filter: blur(60px);
  background: linear-gradient(45deg, 
    rgba(32,87,147,0.2),
    rgba(47,136,255,0.2),
    rgba(110,203,255,0.2));
}

main {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.minecraft-title {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  animation: float 6s ease-in-out infinite;
}

.server-logo {
  margin: 0 auto 2rem;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 2rem;
}

.central-logo-container {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.central-logo {
  width: 200px;
  height: 200px;
  opacity: 0.9;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.server-ip {
  text-align: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#server-ip {
  font-size: 1.2rem;
  font-family: monospace;
  padding: 0.5rem 1rem;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.feature-list {
  list-style: none;
  padding-left: 1rem;
}

.feature-list li {
  margin: 0.5rem 0;
  position: relative;
}

.feature-list li:before {
  content: "→";
  position: absolute;
  left: -1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.server-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.status-icon {
  color: #4CAF50;
}

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.tall {
  grid-row: span 2;
}

.status-info {
  font-size: 1.5rem;
  line-height: 2;
}

.server-section {
  margin-bottom: 2rem;
}

.server-section h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.status-info span[data-tooltip] {
  position: relative;
  cursor: pointer;
}

.status-info span[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  white-space: pre;
  z-index: 100;
}

.events-list {
  list-style: none;
  font-size: 1.2rem;
  line-height: 2;
}

.rewards {
  display: flex;
  justify-content: space-around;
  font-size: 1.2rem;
}

@keyframes aurora {
  0% { transform: rotate(0deg); opacity: 0.5; }
  50% { opacity: 0.7; }
  100% { transform: rotate(360deg); opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 768px) {
  .large, .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .minecraft-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .feature-grid {
    gap: 1.5rem;
    padding: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .server-ip {
    flex-direction: column;
    width: 90%;
    margin: 0 auto 2rem;
  }

  .status-info {
    font-size: 1.2rem;
    line-height: 1.8;
  }

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

@media (max-width: 480px) {
  .minecraft-title {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.5rem;
  }
}
