/**
 * Glossy Button Widget
 * From: .btn-primary.is-glossy in index.html
 * Prefix: .nw-gbtn-
 */

.nw-gbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8CFEFE;
  color: #000000;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nw-gbtn:hover {
  transform: scale(1.03);
  background: rgba(140, 254, 254, 0.95);
  box-shadow: 0 12px 40px rgba(140, 254, 254, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Glossy Variant - The exact style from index.html */
.nw-gbtn--glossy {
  background: rgba(141, 253, 254, 0.27);
  border: 1px solid rgba(140, 254, 254, 0);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(140, 254, 254, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.nw-gbtn--glossy:hover {
  background: rgba(140, 254, 254, 0.25);
  border-color: rgba(140, 254, 254, 0.5);
  box-shadow: 
    0 12px 40px rgba(140, 254, 254, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Icon SVG */
.nw-gbtn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nw-gbtn:hover svg {
  transform: translateX(4px);
}

/* Alignment wrapper */
.nw-gbtn-wrap {
  display: flex;
}

.nw-gbtn-wrap--left {
  justify-content: flex-start;
}

.nw-gbtn-wrap--center {
  justify-content: center;
}

.nw-gbtn-wrap--right {
  justify-content: flex-end;
}
