/* Base */
body {
  font-family: 'Quicksand', sans-serif;

  background: linear-gradient(135deg, #53b0f1, #b36de5);

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;
}

/* Main */
.wb-main-card {
  position: relative;

  width: 650px;
  max-width: 90%;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);

  padding-top: 60px;
}

/* Logo */
.wb-logo-wrap {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}

.wb-logo-wrap img {
  width: 250px;
  padding: 8px;
}

/* Content */
.wb-card-content {
  padding: 25px 20px;
  text-align: center;

  line-height: 1.5;
}

.wb-card-content h1 {
  margin-bottom: 10px;
}

.wb-card-content h3 {
  font-size: 16px;
  font-weight: 700;

  margin: 18px 0 10px;

  color: #2d3142;
}

.wb-intro {
  font-size: 15px;
  color: #666;

  margin: 0 auto 18px;

  line-height: 1.6;
}

.wb-roles {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;

  max-width: 75%;
  text-align: left;
}

.wb-roles li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;

  font-size: 14px;
  color: #444;
}

.wb-roles li::before {
  content: "\e11a";
  font-family: "Phosphor";
  
  position: absolute;
  left: 0;
  top: -2px;

  font-size: 16px;
  color: #6b4ce6;
}

.wb-roles span {
  color: #888;
  font-size: 13px;
}

.wb-divider {
  width: 40px;
  height: 3px;

  background: linear-gradient(135deg, #b36de5, #9f7aea);

  border-radius: 999px;
  margin: 12px auto;
}

.wb-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.wb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 12px;
  border-radius: 10px;

  background: #f4f6ff;
  color: #4f5bd5;

  font-weight: 600;
  text-decoration: none;

  transition: 0.2s;
}

.wb-btn:hover {
  transform: translateY(-2px);
}

.wb-btn.primary {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
}