
.pk-ig-post {
  background: var(--card-color, #fff);
  border-radius: 0;
  border-top: 1px solid rgba(128,128,128,.1);
  border-bottom: 1px solid rgba(128,128,128,.1);
  margin-bottom: 8px;
  overflow: hidden;
}
.pk-ig-post + .pk-ig-post { margin-top: 0; }
.pk-ig-post__header {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 10px;
}
.pk-ig-post__avatar-link { flex-shrink: 0; }
.pk-ig-post__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
}
.pk-ig-post__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pk-ig-post__header-info {
  flex: 1;
  min-width: 0;
}
.pk-ig-post__username {
  font-weight: 700;
  font-size: .875rem;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pk-ig-post__username:hover { text-decoration: none; color: inherit; }
.pk-ig-post__badge { display: inline-flex; align-items: center; }
.pk-ig-post__badge svg { width: 12px !important; height: 12px !important; }
.pk-ig-post__more { flex-shrink: 0; }
.pk-ig-more-btn {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  color: inherit;
  opacity: .75;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pk-ig-more-btn:hover { opacity: 1; background: rgba(128,128,128,.1); }
.pk-ig-repost-banner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: .72rem;
  opacity: .6;
  font-weight: 600;
}
.pk-ig-repost-banner a { color: inherit; text-decoration: none; }
.pk-ig-repost-banner a:hover { text-decoration: underline; }
.pk-ig-post__media {
  position: relative;
  overflow: hidden;
  margin: 0 10px 8px;
  border-radius: 14px;
  background: transparent;
  box-sizing: border-box;
  width: calc(100% - 20px);
  padding-top: 125%; 
}
.pk-ig-post__media > .publication-image,
.pk-ig-post__media > .pk-feed-image,
.pk-ig-post__media > .pk-gallery,
.pk-ig-post__media > .pk-feed-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-radius: 0;
  border: none;
  margin: 0;
}
.pk-ig-post__media > .publication-image {
  display: flex;
}
.pk-ig-post__media .publication-image img {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.pk-fi-blur-bg {
  pointer-events: none;
}
.pk-ig-post__media .pk-gallery__slide--active {
  display: flex;
  flex-direction: column;
}
.pk-ig-post__media .pk-gallery__slide img {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: block;
  object-fit: contain;
}
.pk-ig-post__media .pk-feed-video video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: transparent;
}
.pk-feed-video.pk-fv-idle .pk-lazy-video { display: none; }
.pk-feed-video:not(.pk-fv-idle) .pk-fv-poster { display: none !important; }
.pk-ig-post__media--audio,
.pk-ig-post__media--doc,
.pk-ig-post__media--poll,
.pk-ig-post__media--og,
.pk-ig-post__media--paid {
  padding: 0 14px; 
  background: transparent;
  margin: 0;
  border-radius: 0;
  width: 100%;
}
.pk-ig-post__media--paid { padding: 0; }
.pk-ig-post__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 2px;
}
.pk-ig-post__actions-left {
  display: flex;
  align-items: center;
  gap: 2px;
}
.pk-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 7px 8px;
  cursor: pointer;
  color: inherit;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 8px;
  transition: opacity .15s, background .15s;
  line-height: 1;
}
.pk-ig-btn:hover { opacity: .7; background: rgba(128,128,128,.07); }
.pk-ig-btn__icon { display: flex; align-items: center; }
.pk-ig-btn__icon svg { display: block; }
.pk-ig-btn__num { font-size: .78rem; min-width: 14px; }
.pk-ig-btn--liked,
.pk-ig-btn--like.liked { color: #e0334c !important; }
.pk-heart-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pk-ig-btn--like.liked .pk-heart-path {
  fill: currentColor;
  stroke: none;
}
.pk-ig-btn--reposted,
.pk-ig-btn--repost.reposted { color: #27ae60 !important; }
.pk-ig-btn--bookmarked { color: var(--main-color, #FF1F7D) !important; }
.pk-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}
.pk-gallery__track {
  width: 100%;
  height: 100%;
}
.pk-gallery__slide {
  display: none;
  height: 100%;
  position: relative;
}
.pk-gallery__slide.pk-gallery__slide--active {
  display: block;
  height: 100%;
  animation: pk-slide-fadein 0.22s ease;
}
@keyframes pk-slide-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pk-gallery__slide a { display: block; width: 100%; height: 100%; }
.pk-gallery__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.pk-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .15s;
  padding: 0;
}
.pk-gallery__btn:hover { background: rgba(0,0,0,.7); }
.pk-gallery__btn--prev { left: 10px; }
.pk-gallery__btn--next { right: 10px; }
@media (max-width: 767px) {
  .pk-gallery__btn { display: none !important; }
}
.pk-gallery__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.pk-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: background .2s, transform .2s;
}
.pk-gallery__dot--active {
  background: #fff;
  transform: scale(1.3);
}
.pk-ig-post__caption {
  padding: 4px 14px 2px;
  font-size: .84rem;
  line-height: 1.45;
  word-break: break-word;
}
.pk-ig-post__caption-user {
  font-weight: 700;
  margin-right: 6px;
  color: inherit;
  text-decoration: none;
}
.pk-ig-post__caption-user:hover { text-decoration: none; }
.pk-ig-post__caption-text { color: inherit; }
.pk-ig-post__time {
  padding: 2px 14px 10px;
  font-size: .72rem;
  opacity: .5;
  font-weight: 400;
}
[data-skin="dark"] .pk-ig-post {
  background: var(--card-color, #1a1a1a);
  border-color: rgba(255,255,255,.06);
}
[data-skin="dark"] .pk-ig-post__media { background: #111; }
.pk-comment-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.pk-comment-sheet-overlay.pk-cs-open {
  opacity: 1;
  pointer-events: all;
}
.pk-comment-sheet {
  position: fixed;
  --pk-cs-kb: max(var(--pk-kb, 0px), var(--android-keyboard-height, 0px));
  left: 0; right: 0; bottom: 0;
  padding-bottom: var(--pk-cs-kb);
  box-sizing: border-box;
  z-index: 200000;
  background: var(--cl-primary-bg-color, #fff);
  color: var(--cl-primary-text-color, #14171a);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1), height .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  height: min(calc(70vh + var(--pk-cs-kb)), 94vh);
  max-height: 94vh;
  will-change: transform;
}
.pk-comment-sheet.pk-cs-open { transform: translateY(0); }
.pk-comment-sheet.pk-cs-open.pk-cs-full {
  height: 94vh;
}
.pk-comment-sheet__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 4px;
  flex-shrink: 0;
}
.pk-comment-sheet__handle-bar {
  width: 40px; height: 4px;
  background: rgba(128,128,128,.3);
  border-radius: 4px;
}
.pk-comment-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 10px;
  border-bottom: 1px solid rgba(128,128,128,.1);
  flex-shrink: 0;
}
.pk-comment-sheet__title {
  font-weight: 700;
  font-size: .95rem;
}
.pk-comment-sheet__close {
  background: none; border: none; cursor: pointer;
  opacity: .5; padding: 4px; border-radius: 50%;
  display: flex; align-items: center;
  transition: opacity .15s;
}
.pk-comment-sheet__close:hover { opacity: 1; }
.pk-comment-sheet__list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}
.pk-comment-sheet__loading {
  text-align: center;
  padding: 24px;
  opacity: .5;
  font-size: .85rem;
}
.pk-cs-comment {
  display: flex;
  gap: 10px;
  padding: 8px 16px;
  align-items: flex-start;
}
.pk-cs-comment__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(128,128,128,.15);
}
.pk-cs-comment__avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pk-cs-comment__body { flex: 1; min-width: 0; }
.pk-cs-comment__top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
}
.pk-cs-comment__user {
  font-weight: 700;
  font-size: .82rem;
  color: inherit;
  text-decoration: none;
}
.pk-cs-comment__user:hover { text-decoration: underline; }
.pk-cs-comment__text { font-size: .84rem; line-height: 1.45; word-break: break-word; }
.pk-cs-comment__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.pk-cs-comment__time { font-size: .7rem; opacity: .5; }
.pk-cs-comment__like-btn {
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; color: inherit;
  opacity: .55; padding: 2px 0;
  transition: opacity .15s, color .15s;
}
.pk-cs-comment__like-btn:hover { opacity: 1; }
.pk-cs-comment__like-btn.pk-cs-liked { opacity: 1; color: #e0334c; }
.pk-cs-heart { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pk-cs-comment__like-btn.pk-cs-liked .pk-cs-heart { fill: currentColor; stroke: none; }
.pk-cs-comment__more-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; padding: 0 4px; opacity: .45;
  line-height: 1;
}
.pk-comment-sheet__see-all {
  text-align: center;
  padding: 8px 16px 12px;
}
.pk-comment-sheet__see-all a {
  font-size: .8rem;
  opacity: .6;
  color: inherit;
  text-decoration: none;
}
.pk-comment-sheet__see-all a:hover { text-decoration: underline; opacity: 1; }
.pk-comment-sheet__input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid rgba(128,128,128,.1);
  flex-shrink: 0;
  padding-bottom: calc(max(10px, env(safe-area-inset-bottom,0px), var(--android-navbar-height,0px)) - min(var(--pk-cs-kb,0px), max(0px, env(safe-area-inset-bottom,0px) - 10px)));
}
.pk-cs-input-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1.5px solid rgba(128,128,128,.15);
}
.pk-cs-input-avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pk-cs-inputwrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.pk-comment-sheet__input {
  flex: 1;
  width: 100%;
  border: 1.5px solid rgba(128,128,128,.28);
  border-radius: 22px;
  padding: 9px 44px 9px 15px;
  font-size: .86rem;
  background: transparent;
  color: inherit;
  outline: none;
  resize: none;
  min-height: 40px;
  max-height: 84px;
  line-height: 1.4;
  font-family: inherit;
}
.pk-cs-inputwrap .pk-cs-inline-gif,
.pk-cs-inputwrap .pk-comment-sheet__send {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.pk-cs-inputwrap .pk-comment-sheet__send {
  background: none; border: none; cursor: pointer;
  color: inherit;
  padding: 4px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  transition: transform .12s;
}
.pk-cs-inputwrap .pk-comment-sheet__send svg { fill: currentColor; display: block; }
.pk-cs-inputwrap.pk-cs-typing .pk-comment-sheet__send { display: flex; }
.pk-cs-inputwrap.pk-cs-typing .pk-cs-inline-gif { display: none !important; }
.pk-comment-sheet__send:active { transform: translateY(-50%) scale(.88); }
.pk-ig-post { position: relative; }
.pk-dbt-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  will-change: transform, opacity;
}
.pk-dbt-heart--fixed {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
}
@keyframes pk-dbt-burst {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity: 0; }
  15%  { opacity: 1; }
  40%  { transform: translate(-50%,-50%) scale(1.25); opacity: 1; }
  65%  { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(0.9);  opacity: 0; }
}
.pk-dbt-animate {
  animation: pk-dbt-burst 0.7s cubic-bezier(.17,.89,.32,1.28) forwards;
}
.pk-ig-post__media--poll {
  background: transparent !important;
  padding: 0 14px 8px !important;
}
.pk-ig-post__media--poll.pk-poll-has-bg {
  padding: 0 !important;
  overflow: hidden;
}
.pk-poll-has-bg .publication-poll__option {
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.28) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pk-poll-has-bg .publication-poll__option .bar-text p {
  color: #fff !important;
  font-weight: 600 !important;
}
.pk-poll-has-bg .publication-poll__option .bar-num b {
  color: #fff !important;
}
.pk-poll-has-bg .publication-poll__option span.bar-slider {
  background: rgba(255,255,255,0.28) !important;
}
.pk-poll-has-bg .publication-poll__total-votes {
  color: #fff !important;
  opacity: 0.72 !important;
}
.pk-feed-video {
  position: relative;
}
.pk-fv-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.25s ease;
  opacity: 1;
}
.pk-feed-video:not(.pk-fv-idle) .pk-fv-play-icon {
  opacity: 0;
}
.pk-feed-video.pk-fv-idle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
}
.pk-feed-video__mute {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pk-gi { display: inline-block; vertical-align: -0.15em; overflow: visible; }
@keyframes ggSparkle { 0%,100% { opacity: .15; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes ggSway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
@keyframes ggPulse { 0%,100% { transform: scale(1); } 22% { transform: scale(1.14); } 40% { transform: scale(.97); } 60% { transform: scale(1.08); } }
@keyframes ggFlicker { 0%,100% { transform: scaleY(1) translateY(0); opacity: 1; } 50% { transform: scaleY(1.14) translateY(-1px); opacity: .85; } }
@keyframes ggBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5%); } }
.anim-diamond .gg-spark { animation: ggSparkle 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.anim-diamond .gg-spark2 { animation: ggSparkle 1.8s ease-in-out .9s infinite; transform-origin: center; transform-box: fill-box; }
.anim-rose { transform-origin: 50% 90%; animation: ggSway 2.6s ease-in-out infinite; }
.anim-heart { transform-origin: 50% 60%; animation: ggPulse 1.5s ease-in-out infinite; }
.anim-heart .gg-flame { transform-origin: 50% 100%; animation: ggFlicker .7s ease-in-out infinite; transform-box: fill-box; }
@keyframes ggRingPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .7; } }
@keyframes ggPing { 0% { transform: scale(.86); opacity: .9; } 70%,100% { transform: scale(1.18); opacity: 0; } }
.anim-super .gg-ring { transform-origin: center; transform-box: fill-box; animation: ggRingPulse .8s ease-in-out infinite; }
.anim-super .gg-ping { transform-origin: center; transform-box: fill-box; animation: ggPing .8s ease-out infinite; }
.anim-super .gg-hb { transform-origin: center; transform-box: fill-box; animation: ggPulse 1.6s ease-in-out infinite; }
.anim-gift { transform-origin: 50% 100%; animation: ggBounce 2.2s ease-in-out infinite; }
.anim-gift .gg-glow { transform-origin: center; transform-box: fill-box; animation: ggSparkle 2.4s ease-in-out infinite; }
.anim-gift .gg-spark { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out infinite; }
.anim-gift .gg-spark2 { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out .8s infinite; }
.anim-gift .gg-spark3 { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out 1.2s infinite; }
@keyframes ggTwinkle { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes ggBtn { 0%,100% { opacity: .5; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.16); } }
@keyframes ggSheen { 0%,100% { opacity: 0; } 50% { opacity: .9; } }
.anim-crown { transform-origin: 50% 100%; animation: ggBounce 2.6s ease-in-out infinite; }
.anim-crown .gg-spark { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out infinite; }
.anim-crown .gg-spark2 { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out .8s infinite; }
.anim-crown .gg-gem { transform-origin: center; transform-box: fill-box; animation: ggTwinkle 2s ease-in-out infinite; }
.anim-crown .gg-gem2 { transform-origin: center; transform-box: fill-box; animation: ggTwinkle 2s ease-in-out .5s infinite; }
.anim-crown .gg-gem3 { transform-origin: center; transform-box: fill-box; animation: ggTwinkle 2s ease-in-out 1s infinite; }
.anim-crown .gg-sheen { transform-origin: center; transform-box: fill-box; animation: ggSheen 2.8s ease-in-out infinite; }
.anim-controller { transform-origin: 50% 100%; animation: ggBounce 2.2s ease-in-out infinite; }
.anim-controller .gg-btn { transform-origin: center; transform-box: fill-box; animation: ggBtn 1.4s ease-in-out infinite; }
.anim-controller .gg-btn2 { transform-origin: center; transform-box: fill-box; animation: ggBtn 1.4s ease-in-out .35s infinite; }
.anim-controller .gg-btn3 { transform-origin: center; transform-box: fill-box; animation: ggBtn 1.4s ease-in-out .7s infinite; }
.anim-controller .gg-btn4 { transform-origin: center; transform-box: fill-box; animation: ggBtn 1.4s ease-in-out 1.05s infinite; }
@keyframes ggFly { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-8%) rotate(-2deg); } }
@keyframes ggBurst { 0% { transform: scale(.25); opacity: 0; } 18% { opacity: 1; } 60% { transform: scale(1); opacity: .9; } 82%,100% { transform: scale(1.12); opacity: 0; } }
@keyframes ggFlash { 0%,100% { opacity: 1; } 42% { opacity: .5; } 52% { opacity: 1; } 72% { opacity: .75; } }
.anim-jet .gg-jet { transform-origin: center; transform-box: fill-box; animation: ggFly 2.6s ease-in-out infinite; }
.anim-jet .gg-viptxt { animation: ggSheen 2.4s ease-in-out infinite; }
.anim-jet .gg-trail { transform-origin: right center; transform-box: fill-box; animation: ggSparkle .6s ease-in-out infinite; }
.anim-jet .gg-trail2 { transform-origin: right center; transform-box: fill-box; animation: ggSparkle .6s ease-in-out .3s infinite; }
.anim-firework .gg-burst { transform-origin: center; transform-box: fill-box; animation: ggBurst 2.4s ease-out infinite; }
.anim-firework .gg-burst2 { transform-origin: center; transform-box: fill-box; animation: ggBurst 2.4s ease-out .8s infinite; }
.anim-firework .gg-burst3 { transform-origin: center; transform-box: fill-box; animation: ggBurst 2.4s ease-out 1.6s infinite; }
.anim-firework .gg-star { transform-origin: center; transform-box: fill-box; animation: ggTwinkle 1.8s ease-in-out infinite; }
@keyframes ggOdTurn { 0%,100% { transform: rotate(0deg) scaleX(1); } 25% { transform: rotate(4deg) scaleX(.86); } 50% { transform: rotate(0deg) scaleX(1); } 75% { transform: rotate(-4deg) scaleX(.86); } }
@keyframes ggOdGloss { 0%,12% { transform: translateX(-4px); } 46%,100% { transform: translateX(64px); } }
@keyframes ggOdHalo { 0%,100% { opacity: .45; transform: scale(.94); } 50% { opacity: .85; transform: scale(1.04); } }
.anim-star .gg-st { transform-box: view-box; transform-origin: 24px 24px; animation: ggOdTurn 4s cubic-bezier(.45,0,.55,1) infinite; }
.anim-star .gg-gloss { animation: ggOdGloss 4s cubic-bezier(.45,0,.55,1) infinite; }
.anim-star .gg-halo { transform-box: view-box; transform-origin: 24px 24px; animation: ggOdHalo 2.8s ease-in-out infinite; }
.anim-star .gg-spark { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out infinite; }
.anim-star .gg-spark2 { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.6s ease-in-out .8s infinite; }
.anim-energy .gg-bolt { transform-origin: center; transform-box: fill-box; animation: ggFlash 1.1s ease-in-out infinite; }
.anim-energy .gg-glow { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1.4s ease-in-out infinite; }
.anim-energy .gg-spark { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1s ease-in-out infinite; }
.anim-energy .gg-spark2 { transform-origin: center; transform-box: fill-box; animation: ggSparkle 1s ease-in-out .5s infinite; }
