/* ============================================================
   北大燕姐 · 个人品牌站 v6 — 玻璃拟态 / 柔和渐变 / 中英双语
   ============================================================ */

:root {
  /* 背景 */
  --bg: #f7f6fa;
  --bg-2: #f0eef5;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-2: rgba(255, 255, 255, 0.38);

  /* 渐变色彩 */
  --grad-1: #a78bfa; /* 紫 */
  --grad-2: #f472b6; /* 粉 */
  --grad-3: #60a5fa; /* 蓝 */
  --grad-4: #fbbf24; /* 暖金点缀 */

  /* 文字 */
  --text: #1f1f2e;
  --text-2: #4b5563;
  --text-3: #9ca3af;

  /* 玻璃边框/阴影 */
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-stroke: rgba(255, 255, 255, 0.55);
  --shadow: 0 8px 32px rgba(31, 31, 46, 0.06);
  --shadow-lg: 0 20px 60px rgba(31, 31, 46, 0.1);

  /* 字体 */
  --sans: "Noto Sans SC", "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: "Noto Serif SC", "Songti SC", serif;
  --latin: "Cinzel", "Inter", sans-serif;

  /* 圆角 */
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 40px;

  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob { animation: none !important; }
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* 键盘焦点 */
:focus-visible {
  outline: 2px solid var(--grad-1);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 背景氛围 */
.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.blob-1 {
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, var(--grad-1), transparent 70%);
  top: -15%; right: -10%;
  animation: float 14s ease-in-out infinite;
}

.blob-2 {
  width: 50vw; height: 50vw;
  max-width: 650px; max-height: 650px;
  background: radial-gradient(circle, var(--grad-2), transparent 70%);
  bottom: 10%; left: -15%;
  animation: float 16s ease-in-out infinite reverse;
}

.blob-3 {
  width: 40vw; height: 40vw;
  max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, var(--grad-3), transparent 70%);
  top: 40%; left: 35%;
  animation: float 18s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2), var(--grad-3));
  z-index: 999;
  transition: width 0.08s linear;
  border-radius: 0 3px 3px 0;
}

/* 玻璃卡片基础 */
.glass {
  background: var(--surface);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.wrap {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* 导航 */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-stroke);
  box-shadow: var(--shadow);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(94%, var(--max-width));
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand .mono {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  font-size: 15px;
  font-family: var(--serif);
  font-weight: 700;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 11px;
  color: var(--text-2);
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

/* 导航右侧区域 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 语言切换器 */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
  font-family: var(--sans);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 2px 8px rgba(167, 139, 250, 0.3);
}

.lang-btn:not(.active):hover {
  color: var(--text);
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--sans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(167, 139, 250, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(167, 139, 250, 0.42);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* 首屏 */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 40px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') no-repeat center center / cover;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: end;
  width: 100%;
}

.hero-content {
  order: 2;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: 0 16px 48px rgba(31, 31, 46, 0.08);
}

.hero-visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
}

h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 .accent {
  background: linear-gradient(135deg, #7c3aed, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-facts {
  font-size: 17px;
  color: var(--text);
  max-width: 46ch;
  margin: 0 0 34px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-portrait {
  width: 100%;
  max-width: 100px;
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 20px 40px rgba(31, 31, 46, 0.18));
}

/* 形象照容器 */
.portrait-wrap {
  position: relative;
  width: min(80vw, 360px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, var(--grad-3), transparent 50%),
              radial-gradient(circle at 70% 70%, var(--grad-2), transparent 45%);
  opacity: 0.35;
  z-index: -1;
  filter: blur(40px);
}

.portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* 章节通用 */
.chapter {
  padding: 90px 0;
  position: relative;
}

.chapter-head {
  margin-bottom: 48px;
}

.chapter-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.chapter-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 关于区 */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.about-card {
  border-radius: var(--radius);
  padding: 34px;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--text-2);
}

.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 600; }

.about-closing {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--grad-1), var(--grad-2)) 1;
  padding-left: 16px;
  margin-top: 6px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-visual .portrait-wrap {
  width: min(85vw, 320px);
  aspect-ratio: 3/4;
}

/* 数据卡 */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 52px;
}

.stat {
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat:hover { transform: translateY(-4px); }

.stat .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.stat .num small {
  font-size: 18px;
  margin-left: 2px;
}

.stat .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.stat .sub {
  font-size: 13px;
  color: var(--text-3);
}

/* 服务卡 */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.svc-card {
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.svc-card:hover::before { opacity: 1; }

.svc-card .tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(244, 114, 182, 0.12));
  color: var(--grad-1);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.svc-card p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-card .svc-gold {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 18px;
}

.svc-btn {
  align-self: flex-start;
}

/* 信任区 */
.trust-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 5vw, 32px);
  line-height: 1.7;
  color: var(--text);
  padding: 24px 34px;
  border-radius: var(--radius);
  border-left: 4px solid var(--grad-1);
  margin-bottom: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-card {
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.3s ease;
}

.trust-card:hover { transform: translateY(-4px); }

.trust-card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.trust-card-num small { font-size: 24px; }

.trust-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px;
}

.trust-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.85;
}

/* 联系我 */
.final {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
}

.final-inner h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.25;
  margin-bottom: 18px;
}

.final-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-inner .sub {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 42px;
}

.wechat-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.qr {
  width: 90px; height: 90px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--text-3);
  color: var(--text-3);
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}

.qr img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.wx-id {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.wx-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* 页脚 */
.footer {
  padding: 36px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  border-top: 1px solid var(--glass-stroke);
}

.f-brand {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

/* 返回顶部 */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(167, 139, 250, 0.32);
}

/* 移动端 sticky CTA */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: flex;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-stroke);
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { flex: 1; }

/* 弹窗 */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 31, 46, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(92%, 420px);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-2);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.9);
}

.modal-title {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.7;
}

.modal-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
}

.qr-modal {
  width: 180px; height: 180px;
  margin: 0 auto;
  border-radius: 18px;
}

.qr-modal img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.radar-placeholder {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  padding: 12px;
  line-height: 1.7;
}

/* 复制提示 */
.copy-tip {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(31, 31, 46, 0.88);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 300;
  pointer-events: none;
}

.copy-tip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 入场动画 */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.32s; }

/* 响应式 - 桌面端 */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 32px; font-size: 14px; }
  .nav .btn-wechat { display: inline-flex; }

  .hero-grid {
    grid-template-columns: 220px 1fr;
    gap: 24px;
    text-align: left;
    align-items: end;
  }

  .hero-content {
    order: 2;
    text-align: left;
    margin: 0;
    max-width: 620px;
  }

  .hero-visual {
    order: 1;
    min-height: auto;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
  }

  .hero-facts { margin: 0 0 34px; }
  .hero-cta { justify-content: flex-start; }

  .hero-portrait {
    width: 100%;
    max-width: 220px;
    position: relative;
    left: 0;
    bottom: 0;
    object-position: bottom left;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }

  .about-visual { order: 2; }
  .about-card { order: 1; }

  .stats { grid-template-columns: repeat(3, 1fr); }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card:nth-child(4),
  .svc-card:nth-child(5) {
    grid-column: span 1;
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .mobile-cta { display: none; }
  .back-to-top { bottom: 30px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 小屏手机 */
@media (max-width: 380px) {
  h1 { font-size: 30px; }
  .chapter-title { font-size: 26px; }
  .portrait-wrap { width: 78vw; }
  .nav-right { gap: 8px; }
  .lang-btn { padding: 5px 9px; }
}

/* 打印 */
@media print {
  .nav, .mobile-cta, .back-to-top, .scroll-progress, .gradient-bg,
  .modal-overlay, .copy-tip { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; }
  .glass { background: #fff !important; border: 1px solid #ddd; box-shadow: none; }
}
