:root {
  --bg: #050505;
  --bg-soft: #101114;
  --panel: rgba(20, 20, 22, 0.7);
  --panel-strong: rgba(17, 17, 19, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f3f5;
  --muted: #b7b7bf;
  --soft: #868892;
  --accent: #ff2d3a;
  --accent-strong: #ff4d5a;
  --accent-dark: #c91222;
  --shadow: rgba(0, 0, 0, 0.45);
  --success: #7ef1d9;
  --danger: #ff6b6b;
  --font-display: "Bebas Neue", "Sora", sans-serif;
  --font-body: "Sora", sans-serif;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  background: #020203;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

body::before {
  top: -14vw;
  left: -9vw;
  background: rgba(255, 54, 73, 0.36);
  box-shadow: 0 0 120px rgba(255, 54, 73, 0.5);
  animation: floatGlow 18s ease-in-out infinite alternate;
}

body::after {
  right: -10vw;
  bottom: -12vw;
  background: rgba(255, 70, 70, 0.22);
  box-shadow: 0 0 110px rgba(255, 70, 70, 0.42);
  animation: floatGlow 22s ease-in-out infinite alternate-reverse;
}

body.modal-open {
  overflow: hidden;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

.category-list img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

button {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-spacing {
  padding: 26px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 45, 58, 0.55), rgba(160, 8, 20, 0.75));
  border: 1px solid rgba(255, 90, 100, 0.45);
  box-shadow: 0 8px 22px rgba(255, 45, 58, 0.45), 0 0 26px rgba(255, 45, 58, 0.35);
  animation: brandPulse 2s ease-in-out infinite;
}

.brand-mark span {
  display: block;
  font-size: 20px;
  line-height: 1;
  filter: saturate(1.6) drop-shadow(0 0 6px rgba(255, 60, 70, 0.8));
  animation: devilShake 1.4s ease-in-out infinite;
  transform-origin: 50% 70%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff5c67 35%, var(--accent-dark) 100%);
  box-shadow: 0 18px 30px rgba(255, 45, 58, 0.42), 0 0 28px rgba(255, 80, 80, 0.35);
}

.button-primary:hover {
  box-shadow: 0 22px 36px rgba(255, 45, 58, 0.52), 0 0 38px rgba(255, 90, 90, 0.42);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-app {
  display: block;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 45, 58, 0.14), transparent 26%), #050505;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dashboard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-user__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-user__dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 45, 58, 0.65), rgba(160, 8, 20, 0.85));
  border: 1px solid rgba(255, 90, 100, 0.5);
  box-shadow: 0 0 18px rgba(255, 45, 58, 0.45);
  animation: brandPulse 2s ease-in-out infinite;
}

.dashboard-user__dot span {
  display: block;
  font-size: 17px;
  line-height: 1;
  filter: saturate(1.6) drop-shadow(0 0 6px rgba(255, 60, 70, 0.8));
  animation: devilShake 1.4s ease-in-out infinite;
  transform-origin: 50% 70%;
}

.dashboard-user__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.dashboard-user__label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.dashboard-user strong {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  max-width: min(24vw, 240px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

.dashboard-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 58, 0.35);
  background: rgba(255, 45, 58, 0.1);
  color: #ff858e;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dashboard-logout:hover {
  background: rgba(255, 45, 58, 0.25);
  border-color: rgba(255, 45, 58, 0.65);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 45, 58, 0.3);
  transform: translateY(-1px);
}

.dashboard-logout__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dashboard-main {
  padding: 28px 16px 52px;
}

.dashboard-shell {
  width: min(1240px, calc(100% - 12px));
  margin: 0 auto;
}

.dashboard-toolbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 15, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.dashboard-toolbar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard-toolbar__tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ff3b46;
  text-transform: uppercase;
}

.dashboard-toolbar__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.dashboard-toolbar__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.dashboard-stat--active {
  background: rgba(255, 45, 58, 0.12);
  border-color: rgba(255, 45, 58, 0.35);
  color: #ffd2d5;
}

.dashboard-stat__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
  animation: pulseIcon 1.6s ease-in-out infinite;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.dashboard-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0e12;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: dashboardReveal 0.55s ease forwards;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.dashboard-card:nth-child(odd) {
  animation-delay: 0.04s;
}

.dashboard-card:nth-child(3n) {
  animation-delay: 0.08s;
}

.dashboard-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  z-index: 3;
  pointer-events: none;
}

.dashboard-card:hover .dashboard-card__shine {
  transform: translateX(100%);
}

.dashboard-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 45, 58, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(255, 45, 58, 0.28);
}

.dashboard-card__top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.dashboard-card__meta {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.dashboard-card__quality {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ff3b46;
  background: rgba(255, 45, 58, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 45, 58, 0.45);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(255, 45, 58, 0.2);
}

.dashboard-card__media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.dashboard-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.dashboard-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.2) contrast(1.1) brightness(0.85);
}

.dashboard-card__hover-action {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.dashboard-card:hover .dashboard-card__hover-action {
  opacity: 1;
  transform: scale(1);
}

.dashboard-card__play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d3a, #c91222);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 25px rgba(255, 45, 58, 0.7);
}

.dashboard-card__play-btn svg {
  width: 22px;
  height: 22px;
  transform: translateX(2px);
}

.dashboard-card__action-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.dashboard-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  pointer-events: none;
}

.dashboard-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2d3a;
  box-shadow: 0 0 8px #ff2d3a;
}

.dashboard-card__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 45, 58, 0.2);
  border: 1px solid rgba(255, 45, 58, 0.5);
  box-shadow: 0 0 14px rgba(255, 45, 58, 0.3);
}

.dashboard-card__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 45, 58, 0.9);
}

.header-button {
  padding-inline: 1.2rem;
}

.hero {
  padding-top: 18px;
  padding-bottom: 0;
}

.hero-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 860px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 45, 58, 0.12);
  border: 1px solid rgba(255, 45, 58, 0.3);
  color: #ffd1d5;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 1.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.accent {
  color: #ff3b46;
}

.price-highlight {
  color: #ffffff;
  background: linear-gradient(135deg, #fff4f4, #ff969d 28%, #ff1f2d 58%, #d0001d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(255, 31, 45, 0.45);
}

.hero-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.5rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0.8rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.gallery {
  margin-top: -18px;
}

.category-list {
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .category-list {
    max-width: 820px;
    gap: 34px;
  }

  .category-block {
    padding: 18px;
  }
}

.category-block {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(28, 28, 33, 0.92), rgba(12, 12, 14, 0.65));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 4px 10px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  transition:
    border-color 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    opacity 0.6s ease;
}

.category-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  pointer-events: none;
}

.category-block:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 8px 18px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 45, 58, 0.1);
}

.category-block--featured {
  border-color: rgba(255, 45, 58, 0.45);
  background: linear-gradient(160deg, rgba(255, 45, 58, 0.14), rgba(28, 28, 33, 0.9) 45%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 44px rgba(255, 45, 58, 0.26),
    0 22px 46px rgba(0, 0, 0, 0.42);
}

.category-block--featured::before {
  background: linear-gradient(90deg, transparent, rgba(255, 90, 100, 0.55), transparent);
}

.category-block--featured:hover {
  border-color: rgba(255, 45, 58, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 60px rgba(255, 45, 58, 0.36),
    0 30px 60px rgba(0, 0, 0, 0.5);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.category-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.category-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.category-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-block--featured .category-count {
  border-color: rgba(255, 45, 58, 0.4);
  background: rgba(255, 45, 58, 0.12);
  color: #ffd1d5;
}

.category-hot {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff7a5c, var(--accent) 55%, var(--accent-dark) 100%);
  box-shadow: 0 0 18px rgba(255, 45, 58, 0.65), 0 6px 14px rgba(255, 45, 58, 0.4);
  animation: hotPulse 1.8s ease-in-out infinite;
}

.category-hot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 90, 70, 0.55);
  animation: hotRing 1.8s ease-out infinite;
}

.category-hot svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.55));
  animation: flameWiggle 1s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.gallery-grid {
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.gallery-group {
  display: grid;
  gap: 18px;
}

.gallery-group--square,
.gallery-group--portrait {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-group--landscape {
  grid-template-columns: 1fr;
}

.thumb-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 22px rgba(0, 0, 0, 0.38);
  transform: translateZ(0);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.gallery-group--landscape .thumb-card {
  aspect-ratio: 16 / 8;
}

.gallery-group--portrait .thumb-card {
  aspect-ratio: 2 / 3;
}

.thumb-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 90, 100, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 24px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 45, 58, 0.22);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.thumb-card:hover img {
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.65));
  transition: background 0.25s ease;
}

.thumb-card:hover .thumb-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-button svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 2px;
}

.thumb-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.thumb-duration {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.item-modal {
  width: min(440px, 100%);
}

.item-modal h3 {
  margin: 0 0 1.1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.item-modal__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.item-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.item-modal__duration {
  left: 12px;
  bottom: 12px;
  font-size: 0.78rem;
}

.item-modal__buy {
  width: 100%;
  margin-top: 1.2rem;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(30, 31, 35, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(255, 45, 58, 0.35);
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 1.25rem 1.4rem;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 45, 58, 0.12);
  border: 1px solid rgba(255, 45, 58, 0.2);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 45, 58, 0.18);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  opacity: 1;
  padding: 0 1.4rem 1.3rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-box {
  background: linear-gradient(135deg, rgba(15, 15, 18, 0.9), rgba(31, 17, 19, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), 0 0 42px rgba(255, 45, 58, 0.16);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.cta-inner p {
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
}

.cta-inner strong {
  color: #ff3b46;
  text-shadow: 0 0 16px rgba(255, 59, 70, 0.45);
}

.cta-actions {
  margin-top: 1.8rem;
}

.support-text {
  margin-top: 1.5rem !important;
  margin-bottom: 0.9rem !important;
  font-size: 0.95rem !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  background: rgba(0, 0, 0, 0.12);
}

.footer-content {
  text-align: center;
  color: var(--soft);
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 45, 58, 0.7);
  opacity: 0.6;
  animation: rise var(--duration) linear infinite;
  left: var(--x);
  top: 100%;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 18px;
  z-index: 100;
}

.modal-overlay.visible {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 1.6rem 1.4rem 1.2rem;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.modal-overlay.visible .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.checkout-modal {
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 77, 90, 0.7) rgba(255, 255, 255, 0.05);
}

.dashboard-media-modal {
  width: min(920px, 95vw);
  max-height: calc(100vh - 40px);
  padding: 1.2rem;
  background: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(255, 45, 58, 0.35);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 45, 58, 0.22);
  display: flex;
  flex-direction: column;
}

.dashboard-media-modal__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.dashboard-media-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 36px;
}

.dashboard-media-modal__tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.dashboard-media-modal__quality {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ff858e;
  background: rgba(255, 45, 58, 0.12);
  border: 1px solid rgba(255, 45, 58, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.dashboard-media-modal__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: calc(82vh - 60px);
}

.dashboard-media-modal__img-wrap {
  width: 100%;
  max-height: calc(80vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-media-modal__img-wrap img {
  max-width: 100%;
  max-height: calc(80vh - 60px);
  object-fit: contain;
  border-radius: 12px;
}

.dashboard-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dashboard-media-nav:hover {
  background: rgba(255, 45, 58, 0.85);
  border-color: rgba(255, 90, 100, 0.8);
  box-shadow: 0 0 20px rgba(255, 45, 58, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.dashboard-media-nav svg {
  width: 22px;
  height: 22px;
}

.dashboard-media-nav--prev {
  left: -12px;
}

.dashboard-media-nav--next {
  right: -12px;
}

.checkout-modal::-webkit-scrollbar {
  width: 8px;
}

.checkout-modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 77, 90, 0.7);
}

.checkout-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.confirmation-modal h3,
.checkout-modal h3 {
  margin: 0.2rem 0 0.7rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.confirmation-modal .modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin: 0 auto 0.6rem;
}

.confirmation-modal .modal-icon svg {
  width: 20px;
  height: 20px;
}

.confirmation-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.confirmation-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.45;
  font-size: 0.82rem;
}

.confirmation-list__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 45, 58, 0.14);
  border: 1px solid rgba(255, 45, 58, 0.3);
}

.confirmation-list__icon svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #ff5b66;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.payment-form {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.2rem;
}

.payment-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.payment-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 77, 90, 0.36);
  border-radius: 14px;
  background: rgba(255, 45, 58, 0.12);
  box-shadow: 0 0 28px rgba(255, 45, 58, 0.18);
}

.payment-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ff737d;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4955;
  box-shadow: 0 0 10px rgba(255, 73, 85, 0.8);
}

.payment-intro h3 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.payment-value {
  width: 100%;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-value span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-value strong {
  color: #ff5b66;
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 59, 70, 0.36);
}

.payment-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-form input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.payment-form input:focus {
  border-color: rgba(255, 77, 90, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 45, 58, 0.12);
}

.payment-fields {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.payment-field {
  display: grid;
  gap: 0.35rem;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.payment-field__wrap input {
  width: 100%;
  padding: 0.72rem 2.6rem 0.72rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-field__wrap input:focus {
  border-color: rgba(255, 77, 90, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 45, 58, 0.14);
}

.payment-field__icon {
  position: absolute;
  left: 0.8rem;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.payment-field__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.payment-field__wrap input:focus ~ .payment-field__icon svg,
.payment-field__wrap:focus-within .payment-field__icon svg {
  stroke: #ff5b66;
}

.payment-field__toggle {
  position: absolute;
  right: 0.55rem;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
}

.payment-field__toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.payment-field__toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-field__toggle .icon-eye-off {
  display: none;
}

.payment-field__toggle.is-active .icon-eye {
  display: none;
}

.payment-field__toggle.is-active .icon-eye-off {
  display: block;
  stroke: #ff5b66;
}

.payment-field__hint {
  display: block;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.45;
}

.payment-submit,
.login-submit {
  position: relative;
  width: 100%;
  gap: 8px;
}

.payment-submit {
  margin-top: 0.35rem;
}

.payment-submit:disabled,
.login-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.payment-submit__spinner,
.login-submit__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: paymentSpin 0.7s linear infinite;
}

.payment-submit__label--loading,
.login-submit__label--loading {
  display: none;
}

.payment-submit.is-loading .payment-submit__label--default,
.login-submit.is-loading .payment-submit__label--default {
  display: none;
}

.payment-submit.is-loading .payment-submit__label--loading,
.payment-submit.is-loading .payment-submit__spinner,
.login-submit.is-loading .login-submit__label--default {
  display: none;
}

.login-submit.is-loading .login-submit__label--loading,
.login-submit.is-loading .login-submit__spinner {
  display: inline-block;
}

.payment-error {
  min-height: 1.4rem;
  color: #ff9da5 !important;
  font-size: 0.85rem !important;
  text-align: center;
}

@keyframes paymentSpin {
  to {
    transform: rotate(360deg);
  }
}

.pix-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.1rem;
  border-radius: 24px;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pix-loading.is-active {
  opacity: 1;
}

.pix-loading__rings {
  position: relative;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
}

.pix-loading__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff3b46;
  border-right-color: rgba(255, 59, 70, 0.35);
  animation: paymentSpin 1.1s linear infinite;
}

.pix-loading__ring:nth-child(2) {
  inset: 12px;
  border-top-color: rgba(255, 115, 125, 0.8);
  border-right-color: rgba(255, 115, 125, 0.2);
  animation-duration: 1.6s;
  animation-direction: reverse;
}

.pix-loading__ring:nth-child(3) {
  inset: 24px;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.12);
  animation-duration: 2.2s;
}

.pix-loading__logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 45, 58, 0.55), rgba(160, 8, 20, 0.75));
  border: 1px solid rgba(255, 90, 100, 0.45);
  box-shadow: 0 0 26px rgba(255, 45, 58, 0.5);
  font-size: 24px;
  animation: pixLogoBounce 1.2s ease-in-out infinite;
}

.pix-loading__message {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pix-loading__message.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

.pix-loading__dots {
  display: flex;
  gap: 0.5rem;
}

.pix-loading__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b46;
  box-shadow: 0 0 10px rgba(255, 59, 70, 0.6);
  animation: pixDotPulse 1.2s ease-in-out infinite;
}

.pix-loading__dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.pix-loading__dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes pixLogoBounce {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 26px rgba(255, 45, 58, 0.5);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(255, 60, 70, 0.75);
  }
}

@keyframes pixDotPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}


.pix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pix-header__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
}

.pix-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 58, 0.25);
  background: rgba(255, 45, 58, 0.08);
  color: #ffdfe2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-price-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.checkout-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkout-label,
.pix-label,
.status-title {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

.checkout-details strong {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #fff;
}

.copy-pix-button {
  width: 100%;
  margin-top: 0.15rem;
}

.pix-code-box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pix-qr-box {
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pix-qr-box img {
  width: min(220px, 60vw);
  height: auto;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.pix-code-box code {
  color: #fff;
  font-size: 0.78rem;
  word-break: break-all;
  white-space: pre-wrap;
  font-family: var(--font-body);
}

.checkout-price-box strong {
  display: block;
  margin-top: 0.1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ff3b46;
  text-shadow: 0 0 18px rgba(255, 59, 70, 0.5);
}

.checkout-support-block {
  position: relative;
  margin-top: 1.2rem;
  padding: 1rem 1rem 1rem 1.2rem;
  border: 1px solid rgba(255, 206, 64, 0.46);
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.14);
  box-shadow: 0 0 24px rgba(255, 193, 7, 0.12);
}

.checkout-support-block::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: -1px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #ffd54a;
  color: #251b00;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.checkout-note {
  margin: 0;
  color: #fff2b8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.checkout-note a {
  color: #ffe071;
  text-decoration-color: rgba(255, 224, 113, 0.65);
  text-underline-offset: 0.15em;
}

.checkout-note a:hover {
  color: #fff7ca;
}

.checkout-instructions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  padding: 0.5rem 0 0;
}

.checkout-instructions h4 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  color: #fff;
}

.instruction-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.instruction-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 45, 58, 0.12);
  border: 1px solid rgba(255, 45, 58, 0.22);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.instruction-item p {
  margin: 0;
  text-align: left;
  color: var(--muted);
  line-height: 1.65;
}

.instruction-item strong {
  color: #fff;
}

.payment-status-panel {
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.status-pill.is-warning {
  color: #ffd3d7;
  border-color: rgba(255, 61, 69, 0.25);
  background: rgba(255, 61, 69, 0.08);
}

.status-pill.is-success {
  color: #d8ffec;
  border-color: rgba(95, 210, 158, 0.25);
  background: rgba(95, 210, 158, 0.08);
}

.checkout-note {
  margin-top: 1.2rem !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}

.checkout-support-block .checkout-note {
  margin-top: 0 !important;
  color: #fff2b8;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

.checkout-support-block .checkout-note a {
  color: #ffe071;
  font-weight: 700;
  text-decoration-color: rgba(255, 224, 113, 0.65);
}

.support-whatsapp-button {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.78rem 1rem;
  border-radius: 10px;
  background: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
  color: #062b15;
  font-size: 0.78rem;
}

.support-whatsapp-button:hover {
  background: #45e681;
  box-shadow: 0 13px 24px rgba(37, 211, 102, 0.32);
}

.checkout-whatsapp {
  width: 100%;
  margin-top: 1rem;
}

.modal-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 45, 58, 0.12);
  border: 1px solid rgba(255, 45, 58, 0.22);
  margin: 0 auto 1rem;
}

.modal-icon--success {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}

.modal-icon--success svg {
  stroke: #25d366;
}

.modal-icon--danger {
  background: rgba(255, 45, 58, 0.15);
  border-color: rgba(255, 45, 58, 0.35);
  box-shadow: 0 0 20px rgba(255, 45, 58, 0.25);
}

.modal-icon--danger svg {
  stroke: #ff4d5a;
}

.modal-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-panel h3 {
  margin: 0 0 0.7rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.modal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.modal-highlight {
  margin-top: 1rem !important;
  font-weight: 600;
  color: #fff !important;
}

.login-button {
  padding: 0.7rem 1.4rem;
}

.login-modal h3 {
  margin: 0 0 0.5rem;
}

.login-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.login-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.login-form input:focus {
  border-color: rgba(255, 77, 90, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 45, 58, 0.12);
}

.login-submit {
  width: 100%;
  margin-top: 0.3rem;
}

.login-error {
  min-height: 1.2rem;
  margin: 0;
  color: #ff9da5 !important;
  font-size: 0.85rem !important;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.price-box {
  margin: 0.9rem 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 45, 58, 0.28);
  background: linear-gradient(160deg, rgba(255, 45, 58, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 30px rgba(255, 45, 58, 0.14);
  text-align: center;
}

.price-box .label,
.price-box .meta {
  display: block;
}

.price-box .label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.price-box .meta {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-box__values {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.price-box__old {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 107, 107, 0.8);
}

.price-box__values strong {
  display: block;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  color: #ff3b46;
  text-shadow: 0 0 22px rgba(255, 59, 70, 0.55);
}

.purchase-button {
  width: 100%;
  margin-top: 0.5rem;
}

.support-copy {
  margin-top: 1.5rem !important;
  margin-bottom: 0.9rem !important;
  font-size: 0.9rem !important;
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  100% {
    transform: translate3d(22px, 26px, 0) scale(1.08);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(255, 45, 58, 0.2);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 26px rgba(255, 45, 58, 0.34);
  }
}

@keyframes brandPulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(255, 45, 58, 0.45), 0 0 26px rgba(255, 45, 58, 0.35);
  }
  50% {
    box-shadow: 0 10px 28px rgba(255, 45, 58, 0.65), 0 0 42px rgba(255, 60, 70, 0.55);
  }
}

@keyframes devilShake {
  0%,
  100% {
    transform: rotate(-6deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.12);
  }
  50% {
    transform: rotate(-4deg) scale(1.05);
  }
  75% {
    transform: rotate(6deg) scale(1.12);
  }
}

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes hotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 45, 58, 0.65), 0 6px 14px rgba(255, 45, 58, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 60, 50, 0.85), 0 8px 18px rgba(255, 45, 58, 0.5);
  }
}

@keyframes hotRing {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes flameWiggle {
  0%,
  100% {
    transform: rotate(-4deg) scale(1);
  }
  30% {
    transform: rotate(3deg) scale(1.08);
  }
  60% {
    transform: rotate(-2deg) scale(0.96);
  }
}

@keyframes rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translate3d(18px, -115vh, 0) scale(1.2);
    opacity: 0;
  }
}

@keyframes dashboardReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .category-block,
  .dashboard-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .section-spacing {
    padding: 20px 0;
  }

  .nav-wrapper {
    min-height: 68px;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .header-button {
    display: none;
  }

  .login-button {
    width: auto;
  }

  .category-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-header h3 {
    font-size: 1.35rem;
    white-space: normal;
  }

  .category-count {
    padding: 0.32rem 0.6rem;
    font-size: 0.66rem;
  }

  .category-hot {
    width: 32px;
    height: 32px;
  }

  .category-hot svg {
    width: 16px;
    height: 16px;
  }

  .category-block {
    padding: 12px;
    border-radius: 20px;
  }

  .hero {
    padding-top: 24px;
  }

  .gallery-group {
    gap: 10px;
  }

  .category-list {
    gap: 18px;
  }

  .thumb-card {
    border-radius: 14px;
  }

  .thumb-duration {
    left: 8px;
    bottom: 8px;
    font-size: 0.66rem;
    padding: 0.22rem 0.45rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery {
    margin-top: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .modal-actions {
    display: flex;
    flex-direction: column;
  }

  .modal-panel {
    padding: 2.2rem 1rem 1.1rem;
  }

  .dashboard-header {
    padding: 10px 0;
  }

  .dashboard-nav {
    gap: 8px;
  }

  .dashboard-user {
    padding: 4px 10px 4px 6px;
    gap: 8px;
  }

  .dashboard-user__dot {
    width: 28px;
    height: 28px;
  }

  .dashboard-user__dot span {
    font-size: 14px;
  }

  .dashboard-user strong {
    max-width: 100px;
    font-size: 0.72rem;
  }

  .dashboard-user__label {
    font-size: 0.58rem;
  }

  .dashboard-logout {
    padding: 6px 12px;
    font-size: 0.72rem;
    gap: 6px;
  }

  .dashboard-logout__icon {
    width: 14px;
    height: 14px;
  }

  .dashboard-main {
    padding: 16px 12px 36px;
  }

  .dashboard-toolbar {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 16px;
    gap: 10px;
  }

  .dashboard-toolbar__title {
    font-size: 1.6rem;
  }

  .dashboard-toolbar__stats {
    gap: 6px;
  }

  .dashboard-stat {
    padding: 4px 10px;
    font-size: 0.68rem;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dashboard-card {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }

  .dashboard-card__meta,
  .dashboard-card__quality {
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
  }

  .dashboard-card__play-btn {
    width: 38px;
    height: 38px;
  }

  .dashboard-card__play-btn svg {
    width: 18px;
    height: 18px;
  }

  .dashboard-card__action-text {
    font-size: 0.85rem;
  }

  .dashboard-media-nav {
    width: 36px;
    height: 36px;
  }

  .dashboard-media-nav--prev {
    left: 4px;
  }

  .dashboard-media-nav--next {
    right: 4px;
  }
}
