/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #1a1a1a;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}
/* Header */
.header {
  background: url('images/bg-header.jpg') center/cover no-repeat;
  text-align: center;
  padding: 5rem 0;
}
.logo {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.tagline {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}
.btn-connect {
  display: inline-block;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn-connect:hover {
  background-color: #45a049;
}
.btn-connect .ip {
  font-family: monospace;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
}
.section h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #4caf50;
  display: block;
  margin: 0.5rem auto 0;
}

/* Features */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
}
.features-list li {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

/* Rules */
.rules-list {
  max-width: 700px;
  margin: 0 auto;
  list-style-position: inside;
}
.rules-list li {
  margin: 0.5rem 0;
}

/* Footer */
.footer {
  background-color: #111;
  text-align: center;
  padding: 1.5rem 0;
}
.footer p {
  font-size: 0.9rem;
  color: #aaa;
}
