@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
  .rw-gallery-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px 16px 56px;
    font-family: 'Inter', sans-serif;
    position: relative;
    color: #102033;
  }

  body {
    background:
      radial-gradient(circle at 10% 8%, rgba(20, 184, 166, .20), transparent 30%),
      radial-gradient(circle at 90% 10%, rgba(236, 72, 153, .18), transparent 30%),
      radial-gradient(circle at 55% 100%, rgba(59, 130, 246, .14), transparent 36%),
      linear-gradient(135deg, #f8ffff 0%, #ffffff 48%, #fff6fb 100%);
    background-attachment: fixed;
  }

  .rw-gallery-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: 0;
    background: transparent;
  }

  .rw-gallery-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 0;
    background-image:
      radial-gradient(rgba(20,184,166,.18) 1px, transparent 1px),
      radial-gradient(rgba(236,72,153,.12) 1px, transparent 1px);
    background-size: 28px 28px, 46px 46px;
    background-position: 0 0, 14px 16px;
    opacity: .55;
    animation: rwDotFloat 18s linear infinite;
  }

  .rw-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 58px 20px;
    border-radius: 34px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
      linear-gradient(135deg, rgba(20,184,166,.34), rgba(236,72,153,.24));
    border: 1px solid rgba(255,255,255,.78);
    margin-bottom: 26px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    color: #102033;
    backdrop-filter: blur(14px);
    animation: rwHeroSoft 6s ease-in-out infinite;
  }

  .rw-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 180deg, rgba(20,184,166,.26), rgba(236,72,153,.22), rgba(59,130,246,.18), rgba(20,184,166,.26));
    border-radius: 50%;
    filter: blur(26px);
    opacity: .8;
    animation: rwSlowSpin 18s linear infinite;
  }

  .rw-hero::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.28));
    pointer-events: none;
  }

  .rw-kicker {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 0 12px;
    padding: 8px 15px;
    font-size: 13px;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f766e;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(20,184,166,.20);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(20, 184, 166, .12);
    backdrop-filter: blur(10px);
  }

  .rw-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    color: #101827;
    letter-spacing: -.03em;
  }

  .rw-hero h1::after {
    content: "";
    display: block;
    width: 92px;
    height: 5px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #14b8a6, #ec4899, #fb923c);
    box-shadow: 0 10px 24px rgba(236,72,153,.20);
  }

  .rw-hero p:last-child {
    position: relative;
    z-index: 1;
    margin: 15px auto 0;
    max-width: 620px;
    color: #516173;
    font-size: 17px;
  }

  .rw-toolbar {
    display: flex;
    gap: 14px;
    margin: 28px 0 30px;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .rw-toolbar input,
  .rw-toolbar select {
    flex: 1 1 220px;
    height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.08);
    background: #ffffff;
    color: #101827;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    box-shadow: 0 6px 18px rgba(15,23,42,.04);
    transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
  }

  .rw-toolbar input::placeholder {
    color: #94a3b8;
    font-weight: 400;
  }

  .rw-toolbar select option {
    background: #ffffff;
    color: #101827;
    font-weight: 500;
  }

  .rw-toolbar input:focus,
  .rw-toolbar select:focus {
    border-color: rgba(255,15,123,.24);
    background: #ffffff;
    box-shadow:
      0 0 0 4px rgba(255,15,123,.08),
      0 10px 26px rgba(255,15,123,.08);
    transform: translateY(-1px);
  }

  .rw-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  @media (max-width: 1100px) {
    .rw-grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 820px) {
    .rw-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .rw-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
    transform: translateY(0);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .45s ease;
    animation: rwCardIn .7s cubic-bezier(.2,.8,.2,1) both;
  }

  .rw-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 44%, rgba(16,24,39,.34) 100%);
    opacity: .9;
    transition: opacity .4s ease;
  }

  .rw-card::after {
    content: "";
    position: absolute;
    inset: auto 14px 14px auto;
    width: 44px;
    height: 44px;
    z-index: 2;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20,184,166,.75), rgba(236,72,153,.72));
    filter: blur(18px);
    opacity: 0;
    transition: opacity .45s ease, transform .45s ease;
  }

  .rw-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20,184,166,.28);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16), 0 12px 34px rgba(20,184,166,.12);
  }

  .rw-card:hover::after {
    opacity: 1;
    transform: scale(1.35);
  }

  .rw-card button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
  }

  .rw-gallery-wrap,
  .rw-gallery-wrap img,
  .rw-modal,
  .rw-modal img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  .rw-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .45s ease;
  }

  .rw-card:hover img {
    transform: scale(1.075);
    filter: saturate(1.08) contrast(1.04);
  }

  .rw-trending-badge,
  .rw-popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto;
    height: 34px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
    animation: rwTrendingFloat 2.6s ease-in-out infinite;
  }

  .rw-badge-text {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    color: rgba(15,23,42,.82);
    text-shadow: 0 6px 14px rgba(0,0,0,.22);
  }

  @media (max-width: 820px) {
    .rw-badge-text {
      display: none;
    }
  }

  .rw-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255,15,123,.96), rgba(248,155,41,.96));
    box-shadow:
      0 14px 28px rgba(255,15,123,.30),
      inset 0 1px 0 rgba(255,255,255,.28);
    backdrop-filter: blur(10px);
  }

  

  .rw-popular-badge .rw-badge-icon {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    box-shadow:
      0 14px 28px rgba(255,77,109,.28),
      inset 0 1px 0 rgba(255,255,255,.24);
  }

  

  .rw-top-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .rw-info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 11px;
    border-radius: 20px;
    color: #fff;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    transform: translateY(0);
    transition: transform .35s ease, background .35s ease;
    text-align: center;
  }

  .rw-card:hover .rw-info {
    transform: translateY(-4px);
    background: rgba(16, 24, 39, .42);
  }

  .rw-info h3 {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,.38);
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .28s ease, transform .28s ease;
  }

  .rw-card:hover .rw-info h3 {
    opacity: 1;
    transform: translateY(0);
  }

  .rw-preview-hint {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(255, 15, 123), rgb(248, 155, 41) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
  }

  

  .rw-card:hover .rw-preview-hint {
    background: linear-gradient(135deg, rgb(255, 15, 123), rgb(248, 155, 41) 100%);
    transform: translateY(-2px) scale(1.03);
  }

  

  .rw-download-count {
    cursor: pointer;
    width: fit-content;
    margin: 0 auto 10px;
    padding: 6px 10px 6px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,.92);
    letter-spacing: .01em;
    background: rgba(16,24,39,.68);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 20px rgba(0,0,0,.20);
    backdrop-filter: blur(10px);
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
  }

  .rw-count-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    background: transparent;
    box-shadow: none;
  }

  .rw-count-number {
    font-weight: 600;
    color: #fff;
    min-width: 10px;
  }

  .rw-count-label {
    display: none;
  }

  .rw-download-count.is-updated {
    animation: rwCountPulse .6s ease both;
    background: rgba(255,255,255,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 26px rgba(255,255,255,.14);
  }

  .rw-download-count.is-updated .rw-count-icon {
    animation: rwIconBounce .6s ease both;
  }

  .rw-preview-hint:hover {
    filter: brightness(1.08);
  }

  .rw-stats-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 34px;
    padding: 26px;
    border-radius: 32px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.62)),
      radial-gradient(circle at 10% 20%, rgba(255, 15, 123, .14), transparent 28%),
      radial-gradient(circle at 90% 10%, rgba(248, 155, 41, .16), transparent 30%);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    backdrop-filter: blur(16px);
  }

  .rw-stats-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255,15,123,.42), rgba(248,155,41,.36), rgba(255,255,255,.32));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .rw-stats-wrap::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -72px;
    bottom: -82px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 15, 123, .20), rgba(248, 155, 41, .18));
    filter: blur(12px);
    animation: rwStatsGlow 6s ease-in-out infinite alternate;
  }

  .rw-stats-head {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    text-align: center;
  }

  .rw-stats-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgb(255, 15, 123);
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(255, 15, 123, .12);
    box-shadow: 0 10px 24px rgba(255, 15, 123, .08);
  }

  .rw-stats-head h2 {
    margin: 12px 0 6px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    color: #111827;
    letter-spacing: -.035em;
  }

  .rw-stats-head p {
    margin: 0;
    color: #667085;
    font-size: 14px;
  }

  .rw-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .rw-stat-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 126px;
    padding: 22px 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .rw-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, .12);
  }

  .rw-stat-card::before {
    content: "";
    position: absolute;
    inset: auto -34px -34px auto;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 15, 123, .13), rgba(248, 155, 41, .13));
  }

  .rw-stat-featured {
    background:
      linear-gradient(135deg, rgba(255,255,255,.80), rgba(255,255,255,.66)),
      linear-gradient(135deg, rgba(255,15,123,.10), rgba(248,155,41,.10));
  }

  .rw-stat-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    background: linear-gradient(135deg, rgb(255, 15, 123), rgb(248, 155, 41) 100%);
    box-shadow: 0 16px 34px rgba(255, 15, 123, .20);
  }

  .rw-view-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 4px 10px rgba(255,255,255,.16));
  }

  .rw-view-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    background: linear-gradient(135deg, rgb(255, 15, 123), rgb(248, 155, 41) 100%);
    box-shadow: 0 16px 34px rgba(255, 15, 123, .20);
  }

  .rw-stat-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .rw-stat-number {
    font-size: clamp(34px, 4vw, 46px);
    line-height: .95;
    font-weight: 700;
    color: #111827;
    letter-spacing: -.055em;
  }

  .rw-stat-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #667085;
    letter-spacing: .01em;
  }

  .rw-note {
    margin-top: 24px;
    padding: 15px 17px;
    border-radius: 12px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.07);
    color: #516173;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    backdrop-filter: blur(10px);
  }

  .rw-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(10, 10, 16, .82);
    backdrop-filter: blur(16px);
  }

  .rw-modal.is-open {
    display: flex;
    animation: rwFadeIn .28s ease both;
  }

  .rw-modal-box {
    position: relative;
    width: min(360px, 90vw);
    padding: 14px;
    border-radius: 48px;
    background: linear-gradient(145deg, rgba(20,20,28,.92), rgba(32,32,42,.88));
    box-shadow:
      0 40px 100px rgba(0,0,0,.45),
      inset 0 1px 0 rgba(255,255,255,.06),
      inset 0 -1px 0 rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    animation: rwPopIn .4s cubic-bezier(.2,.8,.2,1) both;
  }

  .rw-modal-box::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,.05);
    pointer-events: none;
  }

  .rw-modal-box::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    pointer-events: none;
  }

  .rw-modal img {
    width: 100%;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    border-radius: 0;
    display: block;
    background: #000;
    border: none;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.04),
      0 20px 50px rgba(0,0,0,.35);
  }

  .rw-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
    color: #111827;
    font-size: 0;
    cursor: pointer;
    box-shadow:
      0 18px 40px rgba(0,0,0,.24),
      inset 0 1px 0 rgba(255,255,255,.85);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
  }

  .rw-close::before,
  .rw-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2.2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff0f7b, #f89b29);
    transform-origin: center;
    transition: transform .28s ease;
  }

  .rw-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .rw-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .rw-close:hover {
    transform: rotate(90deg) scale(1.08);
    background: linear-gradient(145deg, rgba(255,255,255,1), rgba(255,255,255,.90));
    box-shadow:
      0 22px 48px rgba(255, 15, 123, .22),
      inset 0 1px 0 rgba(255,255,255,.92);
  }

  .rw-close:hover::before {
    transform: translate(-50%, -50%) rotate(225deg);
  }

  .rw-close:hover::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .rw-modal-actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-align: center;
  }

  .rw-modal-actions h3 {
    display: none;
  }

  .rw-modal-actions a {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 7px 20px;
    border-radius: 999px;
    text-decoration: none !important;
    background: linear-gradient(135deg, rgb(255, 15, 123), rgb(248, 155, 41) 100%);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 16px 38px rgba(20,184,166,.22);
    transition: transform .28s ease, filter .28s ease;
  }

  .rw-modal-actions a:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.08);
  }

  @keyframes rwHeroSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  @keyframes rwSlowSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @keyframes rwDotFloat {
    from { background-position: 0 0, 14px 16px; }
    to { background-position: 28px 28px, 60px 62px; }
  }

  @keyframes rwTrendingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }

  @keyframes rwCardIn {
    from { opacity: 0; transform: translateY(22px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  @keyframes rwCountPulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.12); }
    100% { transform: scale(1); }
  }

  @keyframes rwIconBounce {
    0% { transform: translateY(0); }
    35% { transform: translateY(3px); }
    70% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
  }

  
    to { left: 130%; }
  }

  @keyframes rwStatsGlow {
    from { transform: translate(0, 0) scale(1); opacity: .72; }
    to { transform: translate(-18px, -14px) scale(1.16); opacity: 1; }
  }

  @keyframes rwFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes rwPopIn {
    from { opacity: 0; transform: scale(.92) translateY(18px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .rw-hero,
    .rw-hero::before,
    .rw-gallery-wrap::after,
    .rw-card,
    .rw-modal.is-open,
    .rw-modal-box {
      animation: none !important;
    }

    .rw-card,
    .rw-card img,
    .rw-info,
    .rw-preview-hint,
    .rw-toolbar input,
    .rw-toolbar select {
      transition: none !important;
    }
  }

  @media (max-width: 920px) {
    .rw-stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 700px) {
    .rw-stats-wrap {
      padding: 20px;
      border-radius: 26px;
    }

    .rw-stats-grid {
      grid-template-columns: 1fr;
    }

    .rw-stat-card {
      justify-content: flex-start;
      min-height: 112px;
    }
  }

  @media (max-width: 520px) {
    .rw-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .rw-hero {
      padding: 38px 14px;
      border-radius: 26px;
    }

    .rw-info {
      left: 8px;
      right: 8px;
      bottom: 8px;
      padding: 9px;
    }

    .rw-info h3 {
      font-size: 11px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1;
    }
      left: 8px;
      right: 8px;
      bottom: 8px;
      padding: 9px;
    }

    .rw-modal {
      padding: 10px;
    }

    .rw-modal-box {
      width: min(300px, 82vw);
      padding: 10px;
      border-radius: 38px;
    }

    .rw-modal-box::before {
      inset: 6px;
      border-radius: 30px;
    }

    .rw-modal-box::after {
      width: 72px;
      height: 8px;
      top: 8px;
    }

    .rw-modal img {
      border-radius: 28px;
      aspect-ratio: 9 / 18.5;
    }

    .rw-modal-actions {
      margin-top: 12px;
      gap: 8px;
    }

    .rw-modal-actions h3 {
      font-size: 15px;
    }

    .rw-modal-actions a {
      min-width: 118px;
      padding: 6px 18px;
      font-size: 10px;
    }

    .rw-close {
      width: 40px;
      height: 40px;
      top: 20px;
      right: 20px;
    }

    .rw-close::before,
    .rw-close::after {
      width: 15px;
    }
  }
