:root {
  --bg: #f3f4f8;
  --bg2: #e8ebf2;
  --card: #fff;
  --card-h: #fafbfd;
  --border: rgba(15, 23, 42, .08);
  --text: #0f172a;
  --muted: #64748b;
  --gold: #d4a84b;
  --gold-l: #f5e6b8;
  --gold-d: #9a7424;
  --gold-glow: rgba(212, 168, 75, .28);
  --ok: #059669;
  --ok-d: #34d399;
  --ok-bg: rgba(5, 150, 105, .1);
  --r: 16px;
  --r-sm: 12px;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, .05), 0 10px 24px -4px rgba(15, 23, 42, .08);
  --shadow-lg: 0 8px 30px -6px rgba(15, 23, 42, .12);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --bd-grad: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold), #fff6d8, var(--gold-l), var(--gold-d));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  -webkit-font-smoothing: antialiased
}

body {
  font-family: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
  background: #ebeff5;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none
}

.bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #f9f7f2 0%, #f0f2f8 35%, #e8ecf4 70%, #eef0f6 100%);
}

.bg-mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 55% 45% at 25% 15%, rgba(245, 230, 184, .55), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(212, 168, 75, .28), transparent 50%),
    radial-gradient(ellipse 45% 50% at 70% 75%, rgba(212, 168, 75, .18), transparent 52%),
    radial-gradient(ellipse 40% 35% at 8% 70%, rgba(245, 230, 184, .32), transparent 48%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  will-change: transform
}

.bg-orb-a {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  top: -12%;
  left: -18%;
  background: radial-gradient(circle, rgba(255, 236, 190, .75) 0%, rgba(212, 168, 75, .35) 45%, transparent 70%);
  animation: orbA 16s ease-in-out infinite;
}

.bg-orb-b {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  top: 35%;
  right: -22%;
  background: radial-gradient(circle, rgba(212, 168, 75, .45) 0%, rgba(154, 116, 36, .15) 50%, transparent 72%);
  animation: orbB 22s ease-in-out infinite;
}

.bg-orb-c {
  width: min(300px, 70vw);
  height: min(300px, 70vw);
  bottom: -8%;
  left: 20%;
  background: radial-gradient(circle, rgba(245, 230, 184, .5) 0%, rgba(212, 168, 75, .2) 55%, transparent 70%);
  animation: orbC 18s ease-in-out infinite;
}

.bg-shimmer {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 248, 220, .12) 40deg, transparent 80deg, transparent 360deg);
  animation: shimmerSpin 24s linear infinite;
}

.bg-shimmer-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 240, 200, .18) 50%, transparent 58%, transparent 100%);
  background-size: 260% 100%;
  animation: shimmerSweep 9s ease-in-out infinite;
}

.bg-dust i {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff9e8 0%, var(--gold) 70%);
  box-shadow: 0 0 8px 2px rgba(212, 168, 75, .55);
  animation: sparkle var(--t, 4s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}

.bg-dust i:nth-child(1) {
  left: 8%;
  top: 12%;
  --t: 3.2s;
  --d: 0s
}

.bg-dust i:nth-child(2) {
  left: 22%;
  top: 28%;
  --t: 4.1s;
  --d: .6s;
  width: 4px;
  height: 4px
}

.bg-dust i:nth-child(3) {
  left: 78%;
  top: 18%;
  --t: 3.8s;
  --d: 1.2s
}

.bg-dust i:nth-child(4) {
  left: 92%;
  top: 42%;
  --t: 5s;
  --d: .3s
}

.bg-dust i:nth-child(5) {
  left: 65%;
  top: 55%;
  --t: 3.5s;
  --d: 1.8s;
  width: 2px;
  height: 2px
}

.bg-dust i:nth-child(6) {
  left: 12%;
  top: 62%;
  --t: 4.4s;
  --d: .9s
}

.bg-dust i:nth-child(7) {
  left: 45%;
  top: 8%;
  --t: 3.6s;
  --d: 2.1s;
  width: 4px;
  height: 4px
}

.bg-dust i:nth-child(8) {
  left: 88%;
  top: 78%;
  --t: 4.8s;
  --d: 1.5s
}

.bg-dust i:nth-child(9) {
  left: 35%;
  top: 82%;
  --t: 3.9s;
  --d: .2s
}

.bg-dust i:nth-child(10) {
  left: 55%;
  top: 38%;
  --t: 4.2s;
  --d: 2.4s;
  width: 2px;
  height: 2px
}

.bg-dust i:nth-child(11) {
  left: 5%;
  top: 45%;
  --t: 5.2s;
  --d: 1.1s
}

.bg-dust i:nth-child(12) {
  left: 72%;
  top: 88%;
  --t: 3.4s;
  --d: 1.7s;
  width: 4px;
  height: 4px
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 18px 48px
}

.logo-bar {
  margin-bottom: 20px;
  animation: fadeUp .5s var(--ease) both
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px
}

.logo-slot {
  flex-shrink: 0
}

.logo-slot img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 24px var(--gold-glow), 0 0 0 2px rgba(212, 168, 75, .35), 0 0 16px rgba(212, 168, 75, .2);
  border: 2px solid rgba(255, 255, 255, .95);
  animation: logoRing 4s ease-in-out infinite;
}

.logo-slot .logo-fb {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--gold-l) 0%, var(--gold) 45%, var(--gold-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoRingFb 4s ease-in-out infinite;
}

.logo-slot .logo-fb svg {
  width: 28px;
  height: 28px;
  color: #1c1408;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .3))
}

.site-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  background: linear-gradient(120deg, var(--gold-d) 0%, var(--gold) 45%, #7a5c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel {
  position: relative;
  width: 100%;
  border-radius: calc(var(--r) + 2px);
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #e2e5ec, #d5dae3);
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 168, 75, .12);
  cursor: pointer;
  animation: fadeUp .55s var(--ease) .05s both;
}

/* .carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background: var(--bd-grad);
  background-size: 320% 100%;
  animation: borderFlow 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, .35) 100%);
} */

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .65s var(--ease)
}

.carousel-slide.on {
  opacity: 1;
  z-index: 1
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  background: linear-gradient(135deg, #eef0f4 0%, #e2e6ee 100%);
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

.carousel-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all .3s var(--ease);
  backdrop-filter: blur(4px);
}

.carousel-dots i.on {
  background: #fff;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(15, 23, 42, .42);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.carousel.has-slides .carousel-arrow {
  display: flex
}

.carousel-arrow:hover {
  background: rgba(15, 23, 42, .62);
  transform: translateY(-50%) scale(1.06)
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(.96)
}

.carousel-prev {
  left: 12px
}

.carousel-next {
  right: 12px
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  display: block
}

.carousel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

.carousel-lightbox.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.carousel-lightbox-inner {
  max-width: min(480px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-lightbox-inner img {
  max-width: 100%;
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
}

.carousel-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.carousel-lightbox-close:hover {
  background: rgba(255, 255, 255, .28);
  transform: scale(1.06)
}

.ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.ico svg {
  width: 100%;
  height: 100%;
  display: block
}

.cs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeUp .6s var(--ease) .1s both;
}

.cs a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  text-decoration: none;
  color: var(--text);
  font-size: .75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 168, 75, .12);
  border-radius: var(--r);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.cs a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.cs a:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 75, .28);
  box-shadow: var(--shadow-lg), 0 6px 20px rgba(212, 168, 75, .1);
}

.cs a:hover::before {
  opacity: 1
}

.cs .ic {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-l), var(--gold) 50%, var(--gold-d));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .25), 0 0 0 1px rgba(255, 255, 255, .4);
}

.cs .ic .ico {
  color: #1a1408
}

.cs .ic img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sec {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
  animation: fadeUp .65s var(--ease) .15s both;
}

.sec::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-d));
  flex-shrink: 0;
}

.sec .ico {
  width: 18px;
  height: 18px;
  color: var(--gold-d)
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px
}

.item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-radius: var(--r);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .85);
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: fadeUp .5s var(--ease) both;
  overflow: hidden;
}

.item>* {
  position: relative;
  z-index: 1
}

/* .item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  z-index: 0;
  background: var(--bd-grad);
  background-size: 320% 100%;
  animation: borderFlow 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
} */

.item:nth-child(1) {
  animation-delay: .05s
}

.item:nth-child(2) {
  animation-delay: .1s
}

.item:nth-child(3) {
  animation-delay: .15s
}

.item:nth-child(4) {
  animation-delay: .2s
}

.item:nth-child(n+5) {
  animation-delay: .22s
}

.item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg), 0 0 28px rgba(212, 168, 75, .15);
}

.item:hover::after {
  opacity: 1;
  animation-duration: 3.5s
}

.item .link-ic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #7ac6b5;
  border: 2px solid #d7b05d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, .35),
    0 3px 8px rgba(0, 0, 0, .08);
}

.item .link-ic::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: var(--bd-grad);
  background-size: 300% 100%;
  animation: borderFlow 5s linear infinite;
  opacity: .5;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.item:hover .link-ic::after {
  opacity: .9
}

.item .link-ic .ico {
  color: var(--gold-d)
}

.item .link-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px
}

.item .t {
  flex: 1;
  min-width: 0
}

.item .name {
  font-size: .9rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text)
}

.item .ping {
  text-align: right;
  flex-shrink: 0
}

.item .ms {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ok);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--ok-bg);
}

.item .bar {
  width: 52px;
  height: 4px;
  background: #e8ecf2;
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden
}

.item .bar i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ok), var(--ok-d));
  transition: width .4s var(--ease)
}

.foot {
  position: relative;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-radius: calc(var(--r) + 2px);
  padding: 18px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .9);
  animation: fadeUp .7s var(--ease) .2s both;
  overflow: hidden;
}

.foot>* {
  position: relative;
  z-index: 1
}

/* .foot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  z-index: 0;
  background: var(--bd-grad);
  background-size: 320% 100%;
  animation: borderFlow 9s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .75;
} */

.foot-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
  border-bottom: none;
}

.foot-hd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--bd-grad);
  background-size: 320% 100%;
  animation: borderFlow 6s linear infinite;
  opacity: .6;
}

.foot-hd .ico {
  color: var(--gold-d)
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .75) 0%, rgba(250, 251, 253, .9) 100%);
  border: none;
  border-radius: var(--r-sm);
  font-size: .88rem;
  transition: box-shadow .25s var(--ease);
  overflow: hidden;
}

.contact>* {
  position: relative;
  z-index: 1
}

/* .contact::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 0;
  background: var(--bd-grad);
  background-size: 320% 100%;
  animation: borderFlow 7s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .5;
} */

.contact:hover {
  box-shadow: 0 4px 16px rgba(212, 168, 75, .12)
}

.contact:hover::after {
  opacity: .95;
  animation-duration: 3.5s
}

.contact .c-ic {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(212, 168, 75, .18), rgba(212, 168, 75, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 5px;
  border: 1px solid rgba(212, 168, 75, .25);
  box-shadow: 0 0 12px rgba(212, 168, 75, .1);
}

.contact .c-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.contact .c-ic .ico {
  width: 100%;
  height: 100%;
  color: var(--gold-d)
}

.contact .c-ic .ico svg {
  width: 22px;
  height: 22px
}

.contact .c-text {
  flex: 1;
  word-break: break-all;
  line-height: 1.55
}

.contact .c-text .lb {
  display: inline-block;
  color: var(--gold-d);
  font-weight: 600;
  font-size: .78rem;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(212, 168, 75, .12);
}

.empty {
  position: relative;
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: var(--r);
  overflow: hidden;
}

.empty::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold), var(--gold-l), var(--gold-d));
  background-size: 320% 100%;
  animation: borderFlow 10s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .45;
}

#contacts {
  display: flex;
  flex-direction: column;
  gap: 10px
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%
  }

  100% {
    background-position: 320% 50%
  }
}

@keyframes logoRing {

  0%,
  100% {
    box-shadow: 0 8px 24px var(--gold-glow), 0 0 0 2px rgba(212, 168, 75, .3), 0 0 12px rgba(212, 168, 75, .15)
  }

  50% {
    box-shadow: 0 8px 28px var(--gold-glow), 0 0 0 2.5px rgba(212, 168, 75, .55), 0 0 22px rgba(212, 168, 75, .28)
  }
}

@keyframes logoRingFb {

  0%,
  100% {
    box-shadow: 0 8px 28px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .35), 0 0 0 2px rgba(212, 168, 75, .35), 0 0 12px rgba(212, 168, 75, .15)
  }

  50% {
    box-shadow: 0 8px 32px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .4), 0 0 0 2.5px rgba(212, 168, 75, .55), 0 0 22px rgba(212, 168, 75, .28)
  }
}

@keyframes meshDrift {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(4%, 3%) scale(1.06)
  }
}

@keyframes orbA {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(8%, 12%) scale(1.08)
  }

  66% {
    transform: translate(4%, 6%) scale(.95)
  }
}

@keyframes orbB {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-10%, 8%) scale(1.12)
  }
}

@keyframes orbC {

  0%,
  100% {
    transform: translate(0, 0) scale(1.05)
  }

  40% {
    transform: translate(12%, -6%) scale(.92)
  }

  80% {
    transform: translate(-6%, 4%) scale(1.1)
  }
}

@keyframes shimmerSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes shimmerSweep {

  0%,
  100% {
    background-position: 120% 0
  }

  50% {
    background-position: -40% 0
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(.4) translateY(0)
  }

  50% {
    opacity: .95;
    transform: scale(1) translateY(-8px)
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  .bg-orb,
  .bg-mesh,
  .bg-shimmer,
  .bg-shimmer-2,
  .bg-dust i,
  .carousel::before,
  .item::after,
  .item .link-ic::after,
  .foot::after,
  .foot-hd::after,
  .contact::after,
  .empty::after,
  .logo-slot img,
  .logo-slot .logo-fb {
    animation: none !important
  }

  .logo-slot .logo-fb {
    box-shadow: 0 8px 28px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .35), 0 0 0 2px rgba(212, 168, 75, .4)
  }

  .logo-slot img {
    box-shadow: 0 8px 24px var(--gold-glow), 0 0 0 2px rgba(212, 168, 75, .35)
  }

  .carousel::before,
  .item::after,
  .foot::after,
  .contact::after,
  .empty::after {
    opacity: .85
  }
}