/* =======================
   Global Styling
======================= */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Rock Salt", "Brush Script MT", "Comic Sans MS", "Apple Chancery", "Segoe Script", Arial, sans-serif;

  /* Background image + overlay (Negombo vibe) */
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('bgn.jpg') no-repeat center center / cover;
}

/* =======================
   Main Container
======================= */
.container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 30px;
  text-align: center;
  width: 330px;
  color: #fff;
}

/* =======================
   Text Styling
======================= */
.name {
  font-size: 35px;
  margin-bottom: 8px;
}

.sub-name {
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: -22px;
}

.paragraph {
  font-size: 12px;
  margin-bottom: 30px;
  margin-top: 0px;
}

/* =======================
   Buttons
======================= */
.btns-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 35px;
}

.btns {
  background-color: #D71A28;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btns:hover {
  background-color: #b01620; 
  transform: scale(1.05); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =======================
   Review Button
======================= */
.review {
  background-color: #d07d00;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review:hover {
  background-color: #c46f00; 
  transform: scale(1.05); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =======================
   Footer Text
======================= */
.identity {
  margin-top: 40px;
  font-size: 10px;
  margin-bottom: 0;
  font-weight: bold;
}
