/* === Floating Logo Header (no maroon background) === */
.logo-header {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Floating glowing logo (same as home) */
.logo {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  animation: float 5s ease-in-out infinite;
}

.logo img {
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(255,160,200,.6));
  animation: hornFlash 8s infinite;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 0%, rgba(255,62,208,0.35), transparent 70%);
  animation: pulse 5s ease-in-out infinite;
  border-radius: 50%;
  filter: blur(20px);
}

/* Floating & glowing animations */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%,100% { opacity: .2; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.1); }
}

@keyframes hornFlash {
  0%,95%,100% { filter: drop-shadow(0 0 14px rgba(255,160,200,.6)); }
  96% { filter: drop-shadow(0 0 30px rgba(255,180,250,.9)); }
  98% { filter: drop-shadow(0 0 10px rgba(255,180,250,.4)); }
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--paper);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animated thin-line background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('https://unisanda.com/images/BACKGROUND.png') repeat;
  background-size: cover;
  opacity: 0.7;
  animation: bgDrift 120s linear infinite;
}

@keyframes bgDrift {
  0% { background-position: 0 0; }
  50% { background-position: -300px 150px; }
  100% { background-position: 0 0; }
}

/* === Reviews Page === */
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 100px;
  gap: 24px;
}

/* Review Card */
.review-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 62, 208, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.review-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 62, 208, 0.4);
}

/* Date */
.review-date {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

/* Image */
.review-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
}

/* Footer section */
.review-footer {
  background: rgba(91, 34, 43, 0.95);
  padding: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.review-footer i {
  color: #fff;
  font-size: 18px;
}
