:root {
  --clr-pink: #fe87d7;
  --clr-pink-dark: #e86bbf;
  --clr-pink-light: #ffaee3;
  --clr-green: #73d245;
  --clr-green-dark: #5cb832;
  --clr-orange: #ff8603;
  --clr-orange-dark: #e07000;
  --clr-blue: #07a3fe;
  --clr-blue-dark: #0587d8;
  --clr-blue-deeper: #0465a8;
  --clr-white: #ffffff;
  --clr-text-dark: #1a1a2e;
  --clr-text-muted: #4a4a6a;
  --clr-block-bg: rgba(255, 255, 255, 0.12);
  --clr-block-border: rgba(255, 255, 255, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.15);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.25);
  --font-main: Helvetica Neue, Helvetica, Arial, sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--clr-blue); }

body {
  font-family: var(--font-main);
  background: linear-gradient(160deg, #07a3fe 0%, #0587d8 50%, #0465a8 100%);
  min-height: 100vh;
  color: var(--clr-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.xb7f2-wrap { width: 100%; }
.q9r3k-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--clr-green); color: #fff; box-shadow: 0 4px 16px rgba(115,210,69,0.4); }
.btn--green:hover { background: var(--clr-green-dark); }
.btn--orange { background: var(--clr-orange); color: #fff; box-shadow: 0 4px 16px rgba(255,134,3,0.4); }
.btn--orange:hover { background: var(--clr-orange-dark); }
.btn--pink { background: var(--clr-pink); color: #1a1a2e; box-shadow: 0 4px 16px rgba(254,135,215,0.4); }
.btn--pink:hover { background: var(--clr-pink-dark); }
.btn--outline { background: transparent; border: 2px solid var(--clr-white); color: var(--clr-white); }
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

.pz9q1-card {
  background: var(--clr-block-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-block-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
}

.lx4m8-section { padding: 60px 0; }

.m3n7v-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.w5k2j-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 24px;
}

.h9q3f-header {
  background: var(--clr-pink);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(254,135,215,0.5);
}
.h9q3f-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.h9q3f-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.h9q3f-logo img {
  height: 60px;
  width: auto;
}
.h9q3f-logo span {
  font-size: 20px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.h9q3f-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.h9q3f-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 8px;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.h9q3f-nav a:hover { background: rgba(255,255,255,0.3); color: #1a1a2e; }
.h9q3f-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.h9q3f-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.t2y8p-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background var(--transition);
}
.t2y8p-burger:hover { background: rgba(255,255,255,0.2); }
.t2y8p-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.t2y8p-burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.t2y8p-burger.active span:nth-child(2) { opacity: 0; }
.t2y8p-burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.v6c1n-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: var(--clr-pink-dark);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.v6c1n-mobile-nav.open { display: flex; }
.v6c1n-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition);
}
.v6c1n-mobile-nav a:hover { background: rgba(255,255,255,0.25); }
.v6c1n-mobile-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.r4h7s-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('/sweetbonanza-slots-title.webp') center/cover no-repeat;
}
.r4h7s-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,163,254,0.82) 0%, rgba(7,163,254,0.5) 50%, rgba(7,100,180,0.3) 100%);
  z-index: 1;
}
.r4h7s-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 20px;
}
.r4h7s-hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.r4h7s-hero-content h1 span { color: var(--clr-pink); }
.r4h7s-hero-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 28px;
}
.r4h7s-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.k9l5x-spoiler { margin-top: 16px; }
.k9l5x-spoiler-toggle {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}
.k9l5x-spoiler-toggle:hover { background: rgba(255,255,255,0.25); }
.k9l5x-spoiler-toggle svg { transition: transform var(--transition); width: 14px; height: 14px; }
.k9l5x-spoiler-toggle.open svg { transform: rotate(180deg); }
.k9l5x-spoiler-body {
  display: none;
  margin-top: 12px;
  padding: 16px;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}
.k9l5x-spoiler-body.open { display: block; animation: e3fadeIn 0.3s ease; }

.f8w2m-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-pink) 30%, var(--clr-orange) 70%, transparent 100%);
  margin: 0;
  opacity: 0.6;
}

.d7p3r-game-block { padding: 60px 0; }
.d7p3r-game-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.d7p3r-iframe-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #000;
}
.d7p3r-iframe-wrap iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}
.d7p3r-game-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.n2s6g-app-block { padding: 60px 0; }
.n2s6g-app-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.n2s6g-phone-frame {
  flex: 0 0 auto;
  width: 220px;
  position: relative;
  border-radius: 38px;
  background: #1a1a2e;
  border: 8px solid #333;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 2px #444;
  overflow: hidden;
}
.n2s6g-phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 10;
}
.n2s6g-phone-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.n2s6g-app-info { flex: 1; min-width: 260px; }
.n2s6g-app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
}
.n2s6g-app-table th,
.n2s6g-app-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.n2s6g-app-table th {
  background: rgba(254,135,215,0.25);
  font-weight: 700;
  color: var(--clr-white);
  width: 44%;
}
.n2s6g-app-table td { color: rgba(255,255,255,0.9); }
.n2s6g-app-table tr:last-child th,
.n2s6g-app-table tr:last-child td { border-bottom: none; }
.n2s6g-app-table tr:hover th,
.n2s6g-app-table tr:hover td { background: rgba(255,255,255,0.07); }
.n2s6g-dl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.y7k4b-video-block { padding: 60px 0; }
.y7k4b-video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #000;
}
.y7k4b-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.c5m9p-review-block { padding: 60px 0; }
.c5m9p-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 22px;
  background: rgba(254,135,215,0.18);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--clr-pink);
}
.c5m9p-author-avatar {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-pink), var(--clr-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.c5m9p-author-info h3 { font-size: 17px; font-weight: 800; color: #fff; }
.c5m9p-author-info p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; margin-top: 4px; }
.c5m9p-author-info a { color: var(--clr-pink-light); text-decoration: underline; }

.c5m9p-content-area { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.92); }
.c5m9p-content-area h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 28px 0 12px; }
.c5m9p-content-area h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 22px 0 10px; }
.c5m9p-content-area h4 { font-size: 16px; font-weight: 700; color: var(--clr-pink-light); margin: 18px 0 8px; }
.c5m9p-content-area p { margin-bottom: 14px; }
.c5m9p-content-area ul,
.c5m9p-content-area ol { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.c5m9p-content-area li { line-height: 1.6; }
.c5m9p-content-area table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
  margin: 16px auto;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
}
.c5m9p-content-area table th,
.c5m9p-content-area table td {
  padding: 10px 16px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
}
.c5m9p-content-area table th { background: rgba(254,135,215,0.3); font-weight: 700; }
.c5m9p-content-area table tr:nth-child(even) td { background: rgba(255,255,255,0.06); }
.c5m9p-content-area strong { color: #fff; font-weight: 700; }
.c5m9p-content-area a { color: var(--clr-pink-light); text-decoration: underline; }
.c5m9p-content-area blockquote {
  padding: 14px 20px;
  border-left: 4px solid var(--clr-orange);
  background: rgba(255,134,3,0.1);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
}
.c5m9p-content-area hr { border: none; height: 1px; background: rgba(255,255,255,0.2); margin: 20px 0; }

.j1t8w-faq-block { padding: 60px 0; }
.j1t8w-faq-list { display: flex; flex-direction: column; gap: 12px; }
.j1t8w-faq-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.j1t8w-faq-item:hover { box-shadow: 0 4px 20px rgba(254,135,215,0.2); }
.j1t8w-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
  font-family: var(--font-main);
}
.j1t8w-faq-q:hover { background: rgba(255,255,255,0.08); }
.j1t8w-faq-q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--clr-pink);
}
.j1t8w-faq-item.open .j1t8w-faq-q svg { transform: rotate(180deg); }
.j1t8w-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}
.j1t8w-faq-item.open .j1t8w-faq-a {
  max-height: 500px;
  padding: 14px 22px 20px;
}

.u6e3z-comments-block { padding: 60px 0; }
.u6e3z-comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.u6e3z-comment {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  position: relative;
}
.u6e3z-comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.u6e3z-comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.u6e3z-comment-meta strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.u6e3z-comment-meta span { font-size: 12px; color: rgba(255,255,255,0.55); }
.u6e3z-comment-stars { margin-left: auto; color: var(--clr-orange); font-size: 16px; letter-spacing: 1px; }
.u6e3z-comment-body { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.65; }

.u6e3z-form-title { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.u6e3z-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.u6e3z-form-group { display: flex; flex-direction: column; gap: 6px; }
.u6e3z-form label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.u6e3z-form input,
.u6e3z-form textarea,
.u6e3z-form select {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font-main);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.u6e3z-form input::placeholder,
.u6e3z-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.u6e3z-form input:focus,
.u6e3z-form textarea:focus,
.u6e3z-form select:focus {
  border-color: var(--clr-pink);
  background: rgba(255,255,255,0.18);
}
.u6e3z-form textarea { min-height: 110px; resize: vertical; }
.u6e3z-form select { appearance: none; cursor: pointer; }
.u6e3z-stars-input { display: flex; gap: 6px; }
.u6e3z-stars-input input[type=radio] { display: none; }
.u6e3z-stars-input label {
  font-size: 26px;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.u6e3z-stars-input label:hover,
.u6e3z-stars-input input[type=radio]:checked ~ label,
.u6e3z-stars-input label:hover ~ label { color: var(--clr-orange); }
.u6e3z-stars-input { flex-direction: row-reverse; justify-content: flex-end; }
.u6e3z-stars-input label:hover,
.u6e3z-stars-input label:hover ~ label { color: var(--clr-orange); }
.u6e3z-form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}
.u6e3z-form-msg.success { background: rgba(115,210,69,0.2); border: 1px solid var(--clr-green); color: #a8f077; display: block; }
.u6e3z-form-msg.error { background: rgba(255,60,60,0.2); border: 1px solid #ff4444; color: #ffaaaa; display: block; }

.s3p7k-footer {
  background: var(--clr-pink);
  padding: 48px 0 24px;
  margin-top: 20px;
}
.s3p7k-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s3p7k-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(26,26,46,0.2);
}
.s3p7k-footer-col { flex: 1; min-width: 180px; }
.s3p7k-footer-col h4 { font-size: 14px; font-weight: 800; color: #1a1a2e; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
.s3p7k-footer-logo a { display: block; width: fit-content;}
.s3p7k-footer-logo img { height: 60px; width: auto; margin-bottom: 12px; }
.s3p7k-footer-logo p { font-size: 13px; color: rgba(26,26,46,0.7); line-height: 1.6; }
.s3p7k-footer-nav { display: flex; flex-direction: column; gap: 8px; }
.s3p7k-footer-nav a { font-size: 14px; color: #1a1a2e; transition: opacity var(--transition); font-weight: 500; }
.s3p7k-footer-nav a:hover { opacity: 0.65; }

.s3p7k-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.s3p7k-trust-badge {
  background: rgba(26,26,46,0.12);
  border: 1px solid rgba(26,26,46,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s3p7k-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.s3p7k-payment-badge {
  background: #1a1a2e;
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.s3p7k-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.s3p7k-social-link {
  width: 36px;
  height: 36px;
  background: rgba(26,26,46,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  transition: background var(--transition), transform var(--transition);
}
.s3p7k-social-link:hover { background: rgba(26,26,46,0.3); transform: translateY(-2px); }
.s3p7k-social-link svg { width: 18px; height: 18px; }

.s3p7k-footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(26,26,46,0.65);
  line-height: 1.7;
}
.s3p7k-footer-bottom a { color: rgba(26,26,46,0.7); text-decoration: underline; }
.s3p7k-footer-bottom .s3p7k-provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.s3p7k-footer-bottom .s3p7k-provider-logo img { height: 28px; filter: brightness(0.2); }
.s3p7k-footer-bottom .s3p7k-legal { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(26,26,46,0.15); }

.b8v2q-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@keyframes e3fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes p5pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes r7shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes g4float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.z9a1b-pulse { animation: p5pulse 2.5s ease-in-out infinite; }
.x6c2d-float { animation: g4float 3s ease-in-out infinite; }

.q3r8t-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.q3r8t-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.o4y7n-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254,135,215,0.25);
  border: 1px solid rgba(254,135,215,0.5);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-pink-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.p6s3m-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.p6s3m-breadcrumb a { color: rgba(255,255,255,0.75); }
.p6s3m-breadcrumb a:hover { color: var(--clr-pink-light); }
.p6s3m-breadcrumb span { color: rgba(255,255,255,0.35); }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.h3f9j-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  margin-top: 15px;
}
.h3f9j-stat {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}
.h3f9j-stat-val { font-size: 26px; font-weight: 900; color: var(--clr-pink-light); line-height: 1; margin-bottom: 4px; }
.h3f9j-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.wp-block-button { display: inline-flex; }
.wp-block-image { max-width: 100%; }
.elementor-widget-wrap { position: relative; }
.elementor-section { width: 100%; }
.wp-post-image { border-radius: var(--radius-sm); }
.site-header-cart { display: flex; align-items: center; }
.woocommerce-breadcrumb { font-size: 13px; }
.entry-title { font-weight: 800; }
.widget_recent_entries ul li { padding: 6px 0; }
.post-thumbnail img { width: 100%; }
.comment-list { list-style: none; }
.bypostauthor .comment-body { border-left: 3px solid var(--clr-pink); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }
.skip-link { position: absolute; transform: translateY(-100%); }
.logged-in-as { font-size: 13px; margin-bottom: 8px; }
.comment-notes { font-size: 13px; color: rgba(255,255,255,0.6); }
.required { color: #ff4444; }
.yoast-seo-score-bar { height: 4px; background: var(--clr-green); border-radius: 2px; }

.base-info-body { background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px 36px; margin: 40px 0; }
.base-info-body h1 { font-size: 28px; font-weight: 900; margin-bottom: 24px; }
.base-info-body h2 { font-size: 20px; font-weight: 800; margin: 28px 0 12px; color: var(--clr-pink-light); }
.base-info-body p { margin-bottom: 14px; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.88); }
.base-info-body ul { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.base-info-body li { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.88); }

@media (max-width: 900px) {
  .n2s6g-app-inner { flex-direction: column; align-items: center; }
  .h9q3f-nav { display: none; }
  .t2y8p-burger { display: flex; }
  .h9q3f-inner { flex-wrap: nowrap; }
  .r4h7s-hero-content { padding: 40px 16px; }
}
@media (max-width: 680px) {
  .r4h7s-hero { min-height: 400px; }
  .r4h7s-hero-content { padding: 20px 0; }
  .d7p3r-iframe-wrap iframe { height: 320px; }
  .pz9q1-card { padding: 22px 16px; }
  .lx4m8-section { padding: 40px 0; }
  .h3f9j-stat { min-width: 120px; }
  .s3p7k-footer-grid { gap: 24px; flex-direction: column;}
  .base-info-body { padding: 24px 18px; }
}
@media (max-width: 400px) {
  .h9q3f-actions .btn--lg { padding: 10px 14px; font-size: 13px; }
  .btn--lg { padding: 12px 20px; font-size: 15px; }
  .h9q3f-actions .btn--outline {display: none;}
  .w5k2j-subtitle {display: none;}
}
