body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a001f);
  color: white;
  text-align: center;
}

/* Title */
h1 {
  margin-top: 40px;
  font-size: 32px;
  background: linear-gradient(90deg, #ff004f, #7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container Box */
#auth, #dashboard {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  margin: 40px auto;
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255,0,150,0.3);
}

/* Inputs */
input {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background: #1f1f1f;
  color: white;
  outline: none;
}

/* Buttons */
button {
  padding: 10px 20px;
  margin: 8px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff004f, #7a00ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff004f;
}

/* Posts */
#posts div {
  background: #1a1a1a;
  margin: 15px 0;
  padding: 12px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 0 10px rgba(122,0,255,0.3);
}

.post-card {
  background: #111;
  margin: 15px 0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px #ff00aa;
  animation: fadeIn 0.5s ease-in-out;
}

.post-card button {
  margin: 5px;
  font-size: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.comment {
  background: rgba(255,255,255,0.05);
  padding: 6px;
  margin: 5px 0;
  border-radius: 6px;
  font-size: 14px;
}

.comments-section input {
  margin-top: 5px;
  padding: 5px;
  width: 70%;
}

.comments-section button {
  padding: 5px 8px;
}
.brand-logo {
  text-align: center;
  margin-top: 20px;
}

.brand-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff00aa;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px #ff00aa; }
  to { box-shadow: 0 0 25px #7a00ff; }
}
.brand-logo {
  text-align: center;
  margin-top: 20px;
}

.brand-logo video {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px #ff00aa;
  animation: glow 2s infinite alternate;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0014;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ff00aa;
  z-index: 9999;
}
.post-card {
  animation: cardBreathe 4s ease-in-out infinite;
}

@keyframes cardBreathe {
  0% { box-shadow: 0 0 10px #ff00aa; }
  50% { box-shadow: 0 0 20px #7a00ff; }
  100% { box-shadow: 0 0 10px #ff00aa; }
}
