
* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
.container {
  background: rgba(12, 12, 20, 0.9);
  max-width: 520px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(136, 56, 255, 0.3);
  backdrop-filter: blur(8px);
  z-index: 1;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.container.show {
  opacity: 1;
  pointer-events: auto;
}
.logo {
  width: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px #bb86fc);
}
h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ddd;
}
ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}
a {
  color: #ff69b4;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
footer {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}
@media (max-width: 480px) {
  .container {
    padding: 25px;
  }
  h1 {
    font-size: 22px;
  }
  .logo {
    width: 80px;
  }
}
#loadingScreen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #0f0c29;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  user-select: none;
  transition: opacity 0.5s ease;
}
#loadingScreen.hidden {
  opacity: 0;
  pointer-events: none;
}
#loadingScreen img {
  width: 150px;
  filter: drop-shadow(0 0 15px #bb86fc);
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
#antiViewOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(12, 12, 20, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#antiViewOverlay.show {
  opacity: 1;
  pointer-events: auto;
}
#antiViewOverlay img {
  width: 180px;
  filter: drop-shadow(0 0 12px #bb86fc);
}
