@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Chakra Petch', sans-serif;
  background-color: #0a0a0a;
  color: #f2f2f2;
  text-align: center;
}

header {
  padding: 80px 20px 40px;
  background: radial-gradient(circle at center, #1a1a1a, #000);
}

h1 {
  font-size: 3rem;
  color: #ff3d3d;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 20px;
}

.ip-box {
  background: #111;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #333;
}

.ip {
  font-weight: bold;
}

.ip-box button {
  background: #ff3d3d;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.ip-box button:hover {
  background: #ff5e5e;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  padding: 40px 20px;
  background: #111;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #222;
}

.placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222;
  border: 2px dashed #444;
  border-radius: 10px;
  color: #777;
  font-size: 1.1rem;
}

.info {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.join-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #ff3d3d;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s;
}

.join-btn:hover {
  background: #ff5e5e;
}

footer {
  padding: 20px;
  background: #000;
  font-size: 0.9rem;
  color: #777;
}

