.site-msg.information {
  background: linear-gradient(155deg, #3d1522 0%, #2a0f18 55%, #1f0b12 100%);
  border: 1px solid rgba(232, 184, 114, .28);
  border-radius: 16px;
  box-shadow:
    0 14px 34px -10px rgba(0, 0, 0, .6),
    0 0 0 1px rgba(0, 0, 0, .25),
    0 0 22px 0 rgba(232, 184, 114, .14);
  opacity: 1;
  overflow: hidden;
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.site-msg.information:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, .65),
    0 0 0 1px rgba(0, 0, 0, .25),
    0 0 30px 2px rgba(232, 184, 114, .24);
}

.site-msg.information::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f0c98a 0%, #d4a574 45%, #e8748f 100%);
  background-size: 100% 220%;
  animation: fvShimmer 5s ease-in-out infinite;
}

.site-msg.information::after {
  content: "%";
  position: absolute;
  right: -14px; bottom: -30px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 108px;
  line-height: 1;
  color: rgba(232, 184, 114, .08);
  transform: rotate(-12deg);
  pointer-events: none;
}

.site-msg.information .container {
  padding: 0;
  position: relative;
}

.site-msg.information .text {
  position: relative;
  z-index: 1;
  color: #f7ecd9;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .1px;
  line-height: 1.55;
  padding: 16px 34px 16px 20px;
}

.site-msg.information .text::first-letter {
  float: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7em;
  font-weight: 700;
  line-height: .75;
  padding: 4px 7px 0 0;
  color: #e8b872;
  text-shadow: 0 0 14px rgba(232, 184, 114, .55);
}

.site-msg.information .close {
  top: 12px; right: 12px; margin-top: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 184, 114, .3);
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}

.site-msg.information .close:hover {
  background: rgba(232, 184, 114, .85);
  transform: scale(1.08);
}

.site-msg.information .close:before {
  font-size: 10px;
  color: #f7ecd9;
  transition: color .2s ease;
}

.site-msg.information .close:hover:before { color: #2a0f18; }

@keyframes fvShimmer {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 0 100%; }
}

@media (min-width: 768px) {
  .site-msg.information { max-width: 440px; }
  .site-msg.information .text { font-size: 14px; }
}

@media (max-width: 480px) {
  .site-msg.information .text { font-size: 12.5px; padding: 14px 30px 14px 18px; }
  .site-msg.information::after { font-size: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-msg.information::before { animation: none; }
}