
.pack-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
  overflow: hidden;
  --pack-accent: #5bb8ff;
}

.pack-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.pack-overlay[data-rarity="god"]    { --pack-accent: #ffd750; }
.pack-overlay[data-rarity="pro"]    { --pack-accent: #c878ff; }
.pack-overlay[data-rarity="casual"] { --pack-accent: #5bb8ff; }
.pack-overlay[data-rarity="noob"]   { --pack-accent: #aaa; }

.pack-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.pack-overlay.charge .pack-backdrop,
.pack-overlay.tear .pack-backdrop {
  background: transparent;
}

.pack-rays {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    color-mix(in srgb, var(--pack-accent) 18%, transparent) 20deg,
    transparent 40deg,
    color-mix(in srgb, var(--pack-accent) 12%, transparent) 100deg,
    transparent 120deg,
    color-mix(in srgb, var(--pack-accent) 15%, transparent) 180deg,
    transparent 200deg,
    color-mix(in srgb, var(--pack-accent) 12%, transparent) 260deg,
    transparent 280deg,
    color-mix(in srgb, var(--pack-accent) 18%, transparent) 340deg,
    transparent 360deg
  );
  opacity: 0;
  transform: scale(0.5);
  filter: blur(2px);
}

.pack-overlay.enter .pack-rays {
  animation: raysIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             raysSpin 14s linear 0.6s infinite;
}

.pack-overlay.charge .pack-rays {
  animation: raysIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             raysSpinFast 4s linear infinite,
             raysPulse 0.35s ease-in-out infinite alternate;
}

@keyframes raysIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes raysSpin {
  to { transform: rotate(360deg); }
}

@keyframes raysSpinFast {
  to { transform: rotate(360deg); }
}

@keyframes raysPulse {
  from { filter: blur(1px) brightness(1); }
  to   { filter: blur(0px) brightness(1.25); }
}

.pack-spotlight {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  background: radial-gradient(circle, color-mix(in srgb, var(--pack-accent) 12%, transparent) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
}

.pack-overlay.enter .pack-spotlight {
  animation: spotIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.pack-overlay.charge .pack-spotlight {
  animation: spotPulse 0.4s ease-in-out infinite alternate;
}

@keyframes spotIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes spotPulse {
  from { opacity: 0.7; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1.08); }
}

.pack-stage {
  position: relative;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 1;
}

.pack-overlay.tear .pack-stage {
  animation: stageShake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes stageShake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-4px, 2px) rotate(-1deg); }
  20% { transform: translate(5px, -3px) rotate(1.5deg); }
  30% { transform: translate(-6px, -2px) rotate(-1deg); }
  40% { transform: translate(4px, 4px) rotate(0.5deg); }
  50% { transform: translate(-3px, -4px) rotate(-0.5deg); }
  60% { transform: translate(2px, 2px) rotate(0deg); }
}

.pack-aura {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pack-accent) 35%, transparent) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  filter: blur(20px);
  pointer-events: none;
}

.pack-overlay.charge .pack-aura {
  animation: auraCharge 0.55s ease-in-out infinite alternate;
}

.pack-overlay.tear .pack-aura {
  animation: auraBurst 0.45s ease-out forwards;
}

@keyframes auraCharge {
  from { opacity: 0.4; transform: scale(0.9); }
  to   { opacity: 0.85; transform: scale(1.2); }
}

@keyframes auraBurst {
  0%   { opacity: 0.9; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(2.5); }
}

.pack-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  opacity: 0;
  pointer-events: none;
}

.pack-overlay.charge .pack-orbit {
  opacity: 1;
  animation: orbitSpin 1.2s linear infinite;
}

.pack-overlay.tear .pack-orbit {
  animation: orbitBurst 0.4s ease-out forwards;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitBurst {
  to { opacity: 0; transform: scale(2) rotate(180deg); }
}

.pack-orb {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pack-accent);
  box-shadow: 0 0 12px var(--pack-accent), 0 0 24px color-mix(in srgb, var(--pack-accent) 50%, transparent);
  top: 50%;
  left: 50%;
}

.pack-orb:nth-child(1) { transform: translate(-50%, -50%) translateX(90px); }
.pack-orb:nth-child(2) { transform: translate(-50%, -50%) translateX(-90px); }
.pack-orb:nth-child(3) { transform: translate(-50%, -50%) translateY(-90px); }
.pack-orb:nth-child(4) { transform: translate(-50%, -50%) translateY(90px); }

.pack-flash {
  position: absolute;
  inset: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--pack-accent) 60%, #fff) 0%, transparent 58%);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
}

.pack-overlay.tear .pack-flash {
  animation: packFlash 0.5s ease-out forwards;
}

@keyframes packFlash {
  0%   { opacity: 0; transform: scale(0.2); }
  12%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

.pack-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.pack-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid color-mix(in srgb, var(--pack-accent) 80%, #fff);
  border-radius: 50%;
  opacity: 0;
}

.pack-overlay.tear .pack-ring {
  animation: ringBurst 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pack-overlay.tear .pack-ring--2 {
  animation: ringBurst 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.pack-overlay.tear .pack-ring--3 {
  animation: ringBurst 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes ringBurst {
  0%   { opacity: 0.95; transform: scale(0.15); border-width: 5px; }
  100% { opacity: 0; transform: scale(6); border-width: 1px; }
}

.pack-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}

.pack-particle {
  position: absolute;
  left: 50%;
  top: 42%;
  opacity: 0;
  will-change: transform, opacity;
}

.pack-particle.spark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}

.pack-particle.confetti {
  width: var(--w, 8px);
  height: var(--h, 12px);
  border-radius: 2px;
}

.pack-particle.streak {
  width: 3px;
  height: 22px;
  border-radius: 99px;
  transform-origin: center bottom;
}

.pack-particle.star {
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.pack-overlay.tear .pack-particle {
  animation: particleBurst var(--dur, 1s) cubic-bezier(0.15, 0.85, 0.35, 1) var(--delay, 0s) forwards;
}

@keyframes particleBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  6%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2) rotate(0deg); }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(var(--scale, 0.3)) rotate(var(--rot, 360deg));
  }
}

.pack-anim {
  position: relative;
  width: 156px;
  height: 208px;
  z-index: 3;
  transform-style: preserve-3d;
  opacity: 0;
  transform: scale(0.5) translateY(80px) rotateX(25deg);
  filter: drop-shadow(0 20px 36px rgba(27, 140, 255, 0.25));
}

.pack-overlay.enter .pack-anim {
  animation: packEnter 0.65s cubic-bezier(0.22, 1.35, 0.36, 1) forwards;
}

@keyframes packEnter {
  0%   { opacity: 0; transform: scale(0.45) translateY(60px) rotateX(22deg); }
  65%  { opacity: 1; transform: scale(1.08) translateY(-8px) rotateX(-5deg); }
  100% { opacity: 1; transform: scale(1) translateY(0) rotateX(0deg); }
}

.pack-overlay.anticipate .pack-anim {
  animation: packFloat 1.3s ease-in-out infinite;
}

@keyframes packFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg) scale(1); }
  50%      { transform: translateY(-16px) rotateX(-5deg) rotateY(3deg) scale(1.04); }
}

.pack-overlay.charge .pack-anim {
  animation: packCharge 0.32s cubic-bezier(0.36, 0, 0.66, -0.5) infinite;
}

@keyframes packCharge {
  0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1) drop-shadow(0 16px 32px rgba(27,140,255,0.2)); }
  50%      { transform: scale(1.1) rotate(2deg); filter: brightness(1.35) drop-shadow(0 0 40px color-mix(in srgb, var(--pack-accent) 50%, transparent)); }
}

.pack-half {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pack-top {
  top: 0;
  height: 52%;
  z-index: 2;
  transform-origin: center bottom;
  border: 2px solid rgba(42, 90, 154, 0.9);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}

.pack-body {
  bottom: 0;
  height: 52%;
  z-index: 1;
  transform-origin: center top;
  border: 2px solid rgba(42, 90, 154, 0.9);
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 0 0 12px 12px;
}

.pack-foil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg,
      #5bb8ff 0%, #2080d0 18%, #90d8ff 32%,
      #ffd32a 42%, #5bb8ff 52%, #c8a0ff 65%,
      #4090d0 82%, #5bb8ff 100%);
  background-size: 300% 300%;
}

.pack-overlay.anticipate .pack-foil,
.pack-overlay.charge .pack-foil {
  animation: foilShimmer 1.8s linear infinite;
}

@keyframes foilShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.pack-foil-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: shineSweep 2s ease-in-out infinite;
  pointer-events: none;
}

.pack-overlay.charge .pack-foil-shine {
  animation: shineSweepFast 0.6s ease-in-out infinite;
}

@keyframes shineSweep {
  0%, 100% { background-position: 200% 0; opacity: 0.5; }
  50%      { background-position: -100% 0; opacity: 1; }
}

@keyframes shineSweepFast {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -150% 0; }
}

.pack-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.pack-top .pack-inner { padding-bottom: 8px; justify-content: flex-end; }
.pack-body .pack-inner { padding-top: 8px; justify-content: flex-start; }

.pack-seam {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 3px;
  margin-top: -1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), #fff, rgba(255,255,255,0.3), transparent);
  z-index: 3;
  opacity: 0.5;
  border-radius: 2px;
}

.pack-overlay.charge .pack-seam {
  animation: seamGlow 0.3s ease-in-out infinite alternate;
}

@keyframes seamGlow {
  from { opacity: 0.5; box-shadow: none; transform: scaleX(1); }
  to   { opacity: 1; box-shadow: 0 0 20px #fff, 0 0 40px var(--pack-accent); transform: scaleX(1.02); }
}

.pack-anim-logo {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.pack-overlay.charge .pack-anim-logo {
  animation: logoPulse 0.35s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  from { transform: scale(1); }
  to   { transform: scale(1.12); box-shadow: 0 0 20px var(--pack-accent); }
}

.pack-anim-label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.pack-overlay.tear .pack-anim {
  animation: packVanish 0.1s ease forwards 0.45s;
}

@keyframes packVanish {
  to { opacity: 0; pointer-events: none; }
}

.pack-overlay.tear .pack-top {
  animation: tearTop 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pack-overlay.tear .pack-body {
  animation: tearBottom 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tearTop {
  0%   { transform: rotateX(0) translateY(0) translateZ(0); opacity: 1; }
  25%  { transform: rotateX(-45deg) translateY(-20px) translateX(-12px) translateZ(20px); opacity: 1; }
  55%  { transform: rotateX(-95deg) translateY(-70px) translateX(-35px) translateZ(40px) rotateZ(-15deg); opacity: 0.8; }
  100% { transform: rotateX(-120deg) translateY(-160px) translateX(-60px) translateZ(10px) rotateZ(-25deg); opacity: 0; }
}

@keyframes tearBottom {
  0%   { transform: rotateX(0) translateY(0) translateZ(0); opacity: 1; }
  25%  { transform: rotateX(35deg) translateY(18px) translateX(10px) translateZ(15px); opacity: 1; }
  55%  { transform: rotateX(70deg) translateY(60px) translateX(28px) translateZ(30px) rotateZ(10deg); opacity: 0.8; }
  100% { transform: rotateX(90deg) translateY(140px) translateX(50px) translateZ(5px) rotateZ(18deg); opacity: 0; }
}

.pack-reveal-card {
  position: absolute;
  z-index: 6;
  width: 260px;
  padding: 0;
  background: linear-gradient(165deg, #2e3440 0%, #12151c 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  opacity: 0;
  transform: scale(0.3) rotateY(-95deg) translateY(40px);
  pointer-events: none;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.pack-reveal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 2;
}

.pack-overlay.reveal .pack-reveal-card::before {
  animation: cardShine 1.2s ease-out 0.4s forwards;
}

@keyframes cardShine {
  to { transform: translateX(130%); }
}

.pack-reveal-inner {
  padding: 36px 28px 24px;
  position: relative;
  z-index: 1;
}

.pack-reveal-glow {
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(50px);
  z-index: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--pack-accent) 55%, transparent), transparent 70%);
}

.pack-overlay.reveal .pack-reveal-card {
  animation: cardFlipIn 0.7s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  pointer-events: all;
}

@keyframes cardFlipIn {
  0%   { opacity: 0; transform: scale(0.2) rotateY(-110deg) translateY(50px); }
  45%  { opacity: 1; transform: scale(1.12) rotateY(14deg) translateY(-12px); }
  70%  { transform: scale(0.96) rotateY(-6deg) translateY(4px); }
  100% { opacity: 1; transform: scale(1) rotateY(0) translateY(0); }
}

.pack-overlay.reveal .pack-reveal-glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.12); }
}

.pack-reveal-card.new-pull {
  border-color: color-mix(in srgb, var(--pack-accent) 50%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--pack-accent) 25%, transparent),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 80px color-mix(in srgb, var(--pack-accent) 20%, transparent);
}

.pack-reveal-emoji {
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.pack-reveal-emoji img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.pack-overlay.reveal .pack-reveal-emoji {
  animation: emojiPop 0.7s cubic-bezier(0.22, 1.6, 0.36, 1) 0.25s both;
}

@keyframes emojiPop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.pack-reveal-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.pack-overlay.reveal .pack-reveal-name {
  animation: nameSlide 0.5s ease-out 0.35s both;
}

@keyframes nameSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pack-reveal-rarity {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  background: color-mix(in srgb, var(--pack-accent) 18%, transparent);
  color: var(--pack-accent);
  border: 1px solid color-mix(in srgb, var(--pack-accent) 40%, transparent);
}

.pack-overlay.reveal .pack-reveal-rarity {
  animation: nameSlide 0.5s ease-out 0.45s both;
}

.pack-reveal-rarity.duplicate {
  background: rgba(255, 255, 255, 0.06);
  color: #888;
  border-color: rgba(255, 255, 255, 0.12);
}

.pack-reveal-close {
  width: calc(100% - 32px);
  margin: 0 16px 8px;
  padding: 15px;
  background: #1b8cff;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  position: relative;
  z-index: 1;
}

.pack-reveal-skip {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.15s;
}

.pack-reveal-skip:hover { color: #fff; }

.pack-overlay.reveal .pack-reveal-close,
.pack-overlay.reveal .pack-reveal-skip {
  animation: nameSlide 0.45s ease-out 0.5s both;
}

.pack-reveal-close:hover { transform: scale(1.02); opacity: 0.95; }

.pack-dismiss {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3010;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #374151;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.15s, visibility 0.2s;
}

.pack-dismiss.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.pack-dismiss:hover {
  transform: scale(1.06);
  background: #fff;
  color: #111;
}

.pack-opening-label {
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}

.pack-overlay.charge .pack-opening-label {
  color: var(--pack-accent);
  animation: labelPulse 0.45s ease-in-out infinite alternate;
}

@keyframes labelPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.03); }
}

.pack-overlay.reveal .pack-opening-label {
  color: var(--pack-accent);
  transform: translateY(0);
}

.booster-carousel.opening {
  pointer-events: none;
}

.booster-carousel.opening .foil-pack.center-pack {
  animation: sidebarPackPulse 0.6s ease-in-out infinite;
}

@keyframes sidebarPackPulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); }
  50%      { transform: scale(1.08) rotate(2deg); filter: brightness(1.3); }
}
