/* Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0b0b0d, #1e062e, #3a0ca3);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #ffffff;
}

/* Gradient animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container */
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Box with glass effect */
.box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.02);
}

/* Logo Styling */
.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(187, 0, 255, 0.7), inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.logo-video {
  width: 100px;       /* Increased size */
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(187, 0, 255, 0.7), inset 0 0 6px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  margin-bottom: 12px;
}



/* Header */
.header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #bb00ff;
  text-shadow: 0 0 10px #bb00ff;
  margin: 10px 0 0;
}

.subtitle {
  font-size: 1rem;
  color: #c084fc;
  margin: 10px 0 20px;
}

/* Buttons Grid */
.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #9b27b0, #560bad);
  box-shadow: 0 5px 20px rgba(187, 0, 255, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover {
  background: linear-gradient(145deg, #bb00ff, #9b27b0);
  transform: translateY(-3px);
}

.btn:hover img {
  transform: scale(1.2);
}

/* Notification popup */
.notify-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  z-index: 999;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.popup-buttons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-notify,
.btn-dismiss {
  background: linear-gradient(135deg, #bb00ff, #7209b7);
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-notify:hover,
.btn-dismiss:hover {
  background: linear-gradient(145deg, #e082ff, #9b27b0);
}

/* Responsive fallback */
@media (max-width: 400px) {
  .button-grid {
    grid-template-columns: 1fr 1fr;
  }
}