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

body { 
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  background-attachment: fixed;
  margin: 0;
  padding: 10px;
  max-width: 600px;
  margin: 0 auto;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a:active, a:visited, a:link { 
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #00f7ff;
  text-decoration: underline;
}

div { 
  padding: 12px;
  background-color: rgba(25, 45, 85, 0.7);
  color: #ffffff;
  border: 1px solid #00d4ff;
  border-radius: 8px;
  margin: 8px 0;
  text-align: left;
}

div.zee1 { 
  background: linear-gradient(135deg, #2a0a29 0%, #3d1438 100%);
  color: #fff;
  padding: 15px;
  text-align: center;
  border: 2px solid #ff1493;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

div.zee {
  background-color: rgba(20, 20, 40, 0.8);
  color: #00d4ff;
  padding: 10px;
  text-align: center;
  border: 1px solid #00d4ff;
  border-radius: 6px;
}

input, select, textarea { 
  color: #ffffff;
  border: 2px solid #00d4ff;
  border-radius: 6px;
  font-family: 'Segoe UI', Verdana, sans-serif;
  background-color: rgba(11, 59, 11, 0.8);
  padding: 10px;
  margin: 8px 0;
  max-width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: bold;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
  background-color: rgba(11, 70, 11, 0.9);
}

input[type="submit"] {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

textarea {
  border: 2px solid #04b404;
  background-color: rgba(11, 59, 11, 0.9);
  resize: vertical;
  min-height: 80px;
}

hr { 
  height: 2px;
  border: none;
  background: linear-gradient(to right, #52284b, #00d4ff, #52284b);
  color: transparent;
  margin: 15px 0;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  color: #00f7ff;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.header-subtitle {
  font-size: 14px;
  color: #ff1493;
  margin-top: 5px;
}

.stats-box {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
}

.link-box {
  text-align: center;
  padding: 10px;
  border: 1px solid #00d4ff;
  border-radius: 6px;
  margin: 8px 0;
  background: rgba(0, 212, 255, 0.05);
}

.link-box a {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #000;
  border-radius: 4px;
  margin: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.link-box a:hover {
  background: linear-gradient(135deg, #00f7ff 0%, #00ccff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 247, 255, 0.4);
}
