/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 20px 15px;
}

/* Video Background */
#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Container */
.container {
  max-width: 450px;
  margin: auto;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Logo */
.profile-pic {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Heading */
h1 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ddd;
}

/* Grid Menu */
.grid-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.grid-menu a {
  background: rgba(52, 152, 219, 0.9);
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.grid-menu a:hover {
  transform: scale(1.05);
}

.grid-menu i {
  font-size: 22px;
  margin-bottom: 8px;
}

.grid-menu span {
  font-size: 11px;
}

/* Note */
.note {
  font-size: 12px;
  margin-top: 10px;
  color: #eee;
}

/* Clock */
.clock {
  font-size: 14px;
  margin-top: 10px;
}

/* Footer */
footer {
  margin-top: 25px;
}

.powered-text {
  font-size: 12px; /* Ubah ukuran sesuai selera */
  color: #ccc;
}

.robot-text {
  font-weight: 600;
}

/* Responsif Mobile */
@media (max-width: 600px) {
  h1 { font-size: 20px; }
  p { font-size: 13px; }
  .note { font-size: 11px; }
  .clock { font-size: 13px; }
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c0c;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.spinner {
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
