
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1A1A1A;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(18, 16, 19, 0.85);
}
header .logo {
  color: #835CB0;
  font-weight: bold;
  font-size: 1.5em;
}
nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero, .vip-form {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
}

.hero h1, .vip-form h1 {
  font-size: 2em;
  color: #835CB0;
  margin-bottom: 10px;
}
.hero p, .vip-form p {
  font-size: 1em;
  color: #DDD;
  margin-bottom: 20px;
}
.buttons a, .buttons button {
  background: #835CB0;
  border: none;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  font-size: 1em;
  cursor: pointer;
}

form input, form select, form textarea {
  width: 100%;
  max-width: 600px;
  margin: 10px auto;
  display: block;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}
form button {
  background-color: #835CB0;
  color: white;
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

footer {
  background: rgba(18, 16, 19, 0.85);
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* Service Checker */
#area-checker {
  margin: 40px auto;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
}
#area-checker input {
  padding: 10px;
  width: 60%;
  margin-right: 10px;
  border-radius: 5px;
  border: none;
}
#area-checker button {
  padding: 10px 15px;
  background: #835CB0;
  color: white;
  border: none;
  border-radius: 5px;
}

/* Responsive Icons */
.features {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.features h2 {
  color: #835CB0;
  font-size: 2em;
  margin-bottom: 30px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: auto;
}
.features-grid div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  max-width: 200px;
  transition: transform 0.2s ease;
}
.features-grid div:hover {
  transform: scale(1.05);
}
.features-grid img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.features-grid p {
  color: white;
  font-size: 1em;
  margin: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}
.modal-content {
  background-color: #1C1C1C;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  color: white;
  border-radius: 10px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}


.header-logo {
  height: 28px;
  vertical-align: middle;
  margin-right: 10px;
}
