/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: #0a0b14;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-left: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff3e3e;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-btn, .signup-btn {
  min-width: 120px;
  height: 40px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 0 8px 2px #4fd1ff55;
  transition: background-color 0.2s, box-shadow 0.2s;
  background: linear-gradient(90deg, #4fd1ff 0%, #6c63ff 100%);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  margin: 0 0.5rem;
  cursor: pointer;
}
.login-btn:hover, .signup-btn:hover {
  background: #2a2e45;
  box-shadow: 0 0 12px 3px #4fd1ff99;
  transform: scale(1.05);
}

.coin-balance-container {
  width: 200px;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
}

.coin-balance {
  color: #ff4444;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
  min-width: 140px;
  text-align: right;
  font-family: monospace;
  font-size: 1.4em;
  white-space: nowrap;
}

main {
  flex: 1;
  padding: 100px 0 2rem 0; /* Reduced top spacing to 100px */
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  color: #4fd1ff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px #4fd1ff33;
}
.hero p {
  color: #b3c7f9;
  font-size: 1.2rem;
}

.spin-box {
  text-align: center;
  margin-bottom: 2.5rem;
}
.box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #23263a 60%, #2e335a 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #4fd1ff22, 0 1.5px 8px #0008;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.box.animated {
  animation: box-open 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes box-open {
  0% { transform: scale(1) rotateY(0deg); }
  40% { transform: scale(1.1) rotateY(60deg); }
  60% { transform: scale(1.1) rotateY(-30deg); }
  100% { transform: scale(1) rotateY(0deg); }
}

.prize {
  font-size: 1.1rem;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px #000a;
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  color: #ff4f4f;
  font-weight: bold;
  font-size: 2.2rem;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

#spinBtn {
  background: linear-gradient(90deg, #4fd1ff 0%, #6c63ff 100%);
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #4fd1ff33;
  transition: transform 0.1s;
}
#spinBtn:hover {
  transform: scale(1.07);
}

.trust-indicators {
  text-align: center;
  margin-bottom: 2.5rem;
}
.badges {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 1rem;
}
.badge {
  background: linear-gradient(90deg, #6c63ff 0%, #4fd1ff 100%);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px #4fd1ff33;
  text-decoration: none !important;
}
.testimonials {
  margin-top: 1rem;
  color: #b3c7f9;
}

.faq {
  margin-bottom: 2.5rem;
}
.accordion-item {
  margin-bottom: 1rem;
  background: #23263a;
  border-radius: 8px;
  box-shadow: 0 1px 4px #0004;
}
.accordion-header {
  background: none;
  color: #4fd1ff;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  border: none;
  outline: none;
  font-size: 1.1rem;
}
.accordion-content {
  padding: 0.8rem 1.2rem;
  background: #23263a;
  color: #b3c7f9;
  display: none;
  border-top: 1px solid #2e335a;
  border-radius: 0 0 8px 8px;
}

/* Card/Review/Carousel Styles */
.review-gallery, .expectations, .quote-carousel {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.review-card, .expectation-card, .quote {
  background: #23263a;
  color: #e6eaf3;
  border-radius: 10px;
  box-shadow: 0 2px 8px #4fd1ff22;
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  font-size: 1rem;
  text-align: center;
}
.quote {
  font-style: italic;
  color: #4fd1ff;
}

footer {
  background: #1a1c2c;
  color: #b3c7f9;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Carousel Styles */
:root {
  --carousel-card-width: 300px; /* Adjust this for card width */
  --carousel-card-gap: 16px;   /* Adjust this for gap between cards */
  --carousel-visible-cards: 4; /* Number of cards visible at once */
}
.carousel-wrapper {
  width: 100%;
  max-width: calc(var(--carousel-card-width) * var(--carousel-visible-cards) + var(--carousel-card-gap) * (var(--carousel-visible-cards) - 1));
  margin: 2rem auto 2rem auto;
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: var(--carousel-card-gap);
  width: max-content;
  animation: carousel-scroll 80s linear infinite;
}
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}
.carousel-card {
  width: var(--carousel-card-width);
  min-width: var(--carousel-card-width);
  max-width: var(--carousel-card-width);
  box-sizing: border-box;
  background: #23263a;
  color: #e6eaf3;
  border-radius: 16px;
  box-shadow: 0 2px 8px #4fd1ff22;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 320px;
  min-height: 320px;
  max-height: 340px;
  justify-content: flex-start;
  position: relative;
  padding-top: 2.5em;
}
.carousel-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5em;
  gap: 0.5em;
}
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (var(--carousel-card-width) + var(--carousel-card-gap)) * (var(--carousel-track-cards) / var(--carousel-visible-cards)))); }
}
/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 1300px) {
  :root { --carousel-card-width: 240px; --carousel-visible-cards: 3; }
}
@media (max-width: 900px) {
  :root { --carousel-card-width: 180px; --carousel-visible-cards: 2; }
}
@media (max-width: 600px) {
  :root { --carousel-card-width: 98vw; --carousel-visible-cards: 1; }
}
.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.8em;
  max-height: 6.2em;
  transition: max-height 0.2s;
}
.review-text.expanded {
  -webkit-line-clamp: unset;
  max-height: 1000px;
  min-height: 0;
}
.see-more-btn {
  background: none;
  border: none;
  color: #4fd1ff;
  font-size: 0.95em;
  cursor: pointer;
  margin-bottom: 0.5em;
  padding: 0;
  text-align: left;
  display: inline-block;
}
.see-more-btn:focus {
  outline: 2px solid #4fd1ff;
}
.badge-dnr {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 0.85em;
  font-weight: 700;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  margin: 0.5em 0 0.5em 0;
  letter-spacing: 0.5px;
}
.review-divider {
  border: none;
  border-top: 1px solid #2e335a;
  margin: 0.5em 0 1em 0;
}
.fb-link {
  position: relative;
  margin-right: 0.5em;
  background: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: box-shadow 0.2s;
}
.fb-link:hover {
  box-shadow: 0 4px 16px #1877f344;
}

.header-logo {
  max-width: 160px;
  max-height: 48px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* Modal Styles */
.review-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 26, 32, 0.92);
  align-items: center;
  justify-content: center;
}
.review-modal-content {
  background: #23263a;
  color: #e6eaf3;
  border-radius: 16px;
  box-shadow: 0 4px 32px #000a;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 480px;
  width: 90vw;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.review-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #4fd1ff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
}
.review-modal-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #4fd1ff;
}
.review-modal-text {
  font-size: 1.05em;
  color: #e6eaf3;
  white-space: pre-line;
}
@media (max-width: 600px) {
  .review-modal-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
  }
}

.how-does-it-work-btn {
  background: #23263a;
  color: #e6eaf3;
  border: none;
  min-width: 120px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0 1.5em;
  transition: background-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 0 8px 2px #4fd1ff55;
  outline: none;
}
.how-does-it-work-btn:hover, .how-does-it-work-btn:focus {
  background: #2a2e45;
  box-shadow: 0 0 12px 3px #4fd1ff99;
  text-decoration: none;
}
.how-does-it-work-icon {
  width: 22px;
  height: 22px;
  margin-right: 0.3em;
  vertical-align: middle;
  display: inline-block;
}

.spin-box-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}
.scambox-spin-ui {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}
.scambox-art img {
  width: 260px;
  height: 320px;
  border-radius: 18px;
  filter: drop-shadow(0 0 18px #4fd1ff55);
  object-fit: contain;
}
.scambox-reel-container {
  background: rgba(35,38,58,0.92);
  border-radius: 32px;
  box-shadow: 0 4px 32px #000a;
  min-width: 700px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2.5rem 3rem;
  overflow: hidden;
}
.scambox-reel {
  display: flex;
  align-items: center;
  height: 373.5px;
  width: 900px;
  position: relative;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.scambox-card {
  width: 268.5px;
  height: 373.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #181a24;
  border-radius: 14px;
  border: 3px solid #888;
  box-shadow: 0 0 18px 4px #8884;
  margin: 0 6px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  padding-top: 16px;        
  box-sizing: border-box;   
}
.scambox-card.highlight {
  transform: scale(1.12);
  z-index: 2;
  box-shadow: 0 0 32px 8px #ffd70099;
}
.scambox-card img {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: block;
}
.scambox-gem-value {
  font-size: 1.2em;
  color: #4fd1ff;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.5px;
  width: 100%;
  display: block;
}
/* Remove card title/rarity styling from wheel */
.scambox-card > div:not(.scambox-gem-value) {
  display: none !important;
}
.provably-fair-badge {
  position: absolute;
  bottom: 10px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1em;
  font-weight: 600;
  color: #3ecf4f;
  background: rgba(30,50,30,0.7);
  padding: 0.3em 0.8em;
  border-radius: 1em;
  box-shadow: 0 0 6px #3ecf4f33;
}
.spin-btn {
  margin-top: 2.5rem;
  background: linear-gradient(90deg,#4fd1ff 0%,#6c63ff 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.7em 1.6em;
  border: none;
  border-radius: 1.2em;
  box-shadow: 0 4px 18px #4fd1ff33,0 1.5px 0 #fff3 inset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7em;
  letter-spacing: 1px;
  transition: background 0.2s,box-shadow 0.2s;
}
.spin-gem {
  display: inline-flex;
  align-items: center;
  font-size: 1.08em;
}
.best-drops-carousel {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.best-drop-item {
  display: inline-flex;
  align-items: center;
  background: rgba(35,38,58,0.7);
  border-radius: 8px;
  margin-right: 1.2em;
  padding: 0.5em 1em;
  font-size: 0.98em;
  color: #fff;
  box-shadow: 0 2px 8px #4fd1ff22;
  animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
  0% { opacity: 1; }
  100% { opacity: 0.85; }
}

.footer-disclaimer {
  margin-top: 2rem;
  text-align: center;
  padding: 0 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer .footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px #4fd1ff44);
}

.footer-disclaimer p {
  color: #b3c7f9;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-disclaimer em {
  color: #4fd1ff;
  font-style: italic;
}

.disclaimer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.disclaimer-content {
  background: #1a1c2c;
  color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content h2 {
  color: #ff4444;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.disclaimer-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.disclaimer-content a {
  color: #4fd1ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-content a:hover {
  color: #7de0ff;
}

.proceed-btn {
  background: #ff4444;
  color: white;
  padding: 0.8em 1.6em;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.proceed-btn:hover {
  background: #ff6666;
}

.cancel-link {
  color: #aaa;
  font-size: 0.9em;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cancel-link:hover {
  color: #fff;
}

.discord-icon {
  height: 24px;
  width: 24px;
  max-width: 24px;
  max-height: 24px;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 4px #4fd1ff88);
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #4fd1ff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #7de0ff;
}

.discord-link {
  color: #4fd1ff !important;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.discord-link:hover {
  color: #7de0ff !important;
}

.objectives-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 1200px) {
  .objectives-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .objectives-list {
    grid-template-columns: 1fr;
  }
}

.badge img {
  height: 36px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.before-after {
  text-align: center;
  padding: 4rem 0;
  width: 100%;
}

.before-after h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #4fd1ff;
}

.expectations {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin: 2.5rem auto;
  max-width: 1200px;
  width: 100%;
  flex-wrap: nowrap;
}
@media (max-width: 1100px) {
  .expectations {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .expectation-card {
    max-width: 95vw;
  }
}

.expectation-card {
  background: rgba(35, 38, 58, 0.5);
  border: 1px solid #4fd1ff44;
  border-radius: 12px;
  box-shadow: 0 4px 24px #4fd1ff22, 0 1.5px 8px #0008;
  padding: 2rem;
  min-width: 340px;
  max-width: 500px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.expectation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff4444 0%, #ff6b6b 100%);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.expectation-card h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  color: #4fd1ff;
  width: 100%;
}

.promise-item {
  margin-bottom: 2.2rem;
}

.promise-item:last-child {
  margin-bottom: 0;
}

.promise-item p {
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
  color: #e6eaf3;
}

.promise-item .source {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #4fd1ff;
}

.promise-item .source a {
  color: #4fd1ff;
  text-decoration: underline;
}

.promise-item .source a:hover {
  color: #7de0ff;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  header {
    padding: 0.8rem 1.5rem;
  }
  
  nav {
    gap: 1rem;
    margin-left: 1rem;
  }
  
  nav a {
    font-size: 0.9rem;
  }
  
  .user-actions {
    gap: 0.8rem;
  }
  
  .login-btn, .signup-btn {
    min-width: 100px;
    height: 36px;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  
  .how-does-it-work-btn {
    min-width: 100px;
    height: 36px;
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .coin-balance {
    font-size: 1.2em;
    min-width: 120px;
  }
  
  main {
    padding: 90px 1rem 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .scambox-spin-ui {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .scambox-reel-container {
    width: 280px;
    height: 180px;
  }
  
  .scambox-art img {
    width: 180px;
    height: 180px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  header {
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .logo img {
    height: 35px;
  }
  
  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0 0 0;
    gap: 0.8rem;
  }
  
  nav a {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }
  
  .user-actions {
    gap: 0.6rem;
  }
  
  .login-btn, .signup-btn {
    min-width: 90px;
    height: 32px;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .how-does-it-work-btn {
    min-width: 90px;
    height: 32px;
    font-size: 0.8rem;
    padding: 0 0.8rem;
  }
  
  .how-does-it-work-icon {
    width: 18px;
    height: 18px;
  }
  
  .coin-balance {
    font-size: 1.1em;
    min-width: 110px;
  }
  
  main {
    padding: 120px 1rem 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .scambox-reel-container {
    width: 260px;
    height: 160px;
  }
  
  .scambox-art img {
    width: 160px;
    height: 160px;
  }
  
  .spin-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .badges {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-header {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .accordion-content {
    padding: 0 1.2rem 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 50px;
  }
  
  .disclaimer-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.3rem;
  }
  
  .review-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .carousel-card {
    padding: 1.2rem;
    min-height: 180px;
  }
  
  .carousel-card-header {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  header {
    padding: 0.5rem 0.8rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  nav {
    gap: 0.6rem;
  }
  
  nav a {
    font-size: 0.8rem;
    padding: 0.2rem 0;
  }
  
  .user-actions {
    gap: 0.4rem;
  }
  
  .login-btn, .signup-btn {
    min-width: 80px;
    height: 30px;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  
  .how-does-it-work-btn {
    min-width: 80px;
    height: 30px;
    font-size: 0.75rem;
    padding: 0 0.6rem;
  }
  
  .how-does-it-work-icon {
    width: 16px;
    height: 16px;
  }
  
  .coin-balance {
    font-size: 1em;
    min-width: 100px;
  }
  
  main {
    padding: 140px 0.8rem 2rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .scambox-spin-ui {
    gap: 1rem;
  }
  
  .scambox-reel-container {
    width: 240px;
    height: 140px;
  }
  
  .scambox-art img {
    width: 140px;
    height: 140px;
  }
  
  .scambox-card {
    min-width: 100px;
    padding: 0.8rem;
    margin: 0.3rem;
  }
  
  .scambox-card img {
    width: 50px;
    height: 50px;
  }
  
  .spin-btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  
  .badges {
    gap: 0.6rem;
  }
  
  .badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .accordion-header {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-content {
    padding: 0 1rem 0.7rem 1rem;
    font-size: 0.85rem;
  }
  
  .faq h2 {
    font-size: 1.3rem;
  }
  
  .trust-indicators h2 {
    font-size: 1.3rem;
  }
  
  .footer-disclaimer {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 40px;
  }
  
  .footer-disclaimer p {
    font-size: 0.9rem;
  }
  
  .disclaimer-content {
    padding: 1.2rem;
    margin: 0.8rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.2rem;
  }
  
  .proceed-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .review-modal-content {
    padding: 1.2rem;
    margin: 0.8rem;
  }
  
  .carousel-card {
    padding: 1rem;
    min-height: 160px;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  .carousel-section {
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .carousel-section h2 {
    font-size: 1.5rem !important;
  }
  
  .expectations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .expectation-card {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .expectation-card h3 {
    font-size: 1.3rem;
  }
  
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  header {
    padding: 0.4rem 0.6rem;
  }
  
  .logo img {
    height: 28px;
  }
  
  nav {
    gap: 0.4rem;
  }
  
  nav a {
    font-size: 0.75rem;
  }
  
  .login-btn, .signup-btn {
    min-width: 70px;
    height: 28px;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  
  .how-does-it-work-btn {
    min-width: 70px;
    height: 28px;
    font-size: 0.7rem;
    padding: 0 0.5rem;
  }
  
  .how-does-it-work-icon {
    width: 14px;
    height: 14px;
  }
  
  .coin-balance {
    font-size: 0.9em;
    min-width: 90px;
  }
  
  main {
    padding: 150px 0.6rem 2rem 0.6rem;
  }
  
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
  
  .scambox-reel-container {
    width: 220px;
    height: 120px;
  }
  
  .scambox-art img {
    width: 120px;
    height: 120px;
  }
  
  .spin-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .accordion-header {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .accordion-content {
    padding: 0 0.8rem 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 0.8rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 35px;
  }
  
  .footer-disclaimer p {
    font-size: 0.85rem;
  }
  
  .disclaimer-content {
    padding: 1rem;
    margin: 0.6rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.1rem;
  }
  
  .proceed-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .review-modal-content {
    padding: 1rem;
    margin: 0.6rem;
  }
  
  .carousel-card {
    padding: 0.8rem;
    min-height: 140px;
  }
  
  .review-text {
    font-size: 0.8rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: 0.4rem 1rem;
  }
  
  nav {
    order: 0;
    width: auto;
    margin: 0;
  }
  
  main {
    padding: 80px 1rem 2rem 1rem;
  }
  
  .scambox-spin-ui {
    flex-direction: row;
    gap: 1rem;
  }
  
  .scambox-reel-container {
    width: 200px;
    height: 120px;
  }
  
  .scambox-art img {
    width: 120px;
    height: 120px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img,
  .header-logo,
  .footer-logo,
  .how-does-it-work-icon,
  .discord-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .login-btn:hover,
  .signup-btn:hover,
  .how-does-it-work-btn:hover,
  .spin-btn:hover,
  .proceed-btn:hover,
  .accordion-header:hover,
  .carousel-card:hover {
    transform: none;
  }
  
  .login-btn:active,
  .signup-btn:active,
  .how-does-it-work-btn:active,
  .spin-btn:active,
  .proceed-btn:active {
    transform: scale(0.95);
  }
  
  nav a {
    padding: 0.5rem 0.3rem;
  }
  
  .accordion-header {
    padding: 1rem 1.2rem;
  }
  
  .carousel-card {
    padding: 1.2rem;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .carousel-track {
    animation: none;
  }
  
  .box.animated {
    animation: none;
  }
  
  .scambox-card.highlight {
    transform: none;
  }
  
  .best-drop-item {
    animation: none;
  }
}

/* ===== CLASS ACTION PAGE MOBILE OPTIMIZATIONS ===== */

/* Class action section mobile styles */
@media (max-width: 768px) {
  .class-action-section {
    margin: 1rem auto;
    padding: 1.5rem;
  }
  
  .class-action-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .submission-counter {
    margin: 1.5rem 0;
    padding: 1rem;
  }
  
  .submission-counter h2 {
    font-size: 1.3rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .legal-disclaimer {
    margin: 1.5rem 0;
    padding: 1.2rem;
  }
  
  .legal-disclaimer h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .legal-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  #classActionForm {
    margin: 1.5rem auto;
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="number"],
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .form-group textarea {
    min-height: 120px;
  }
  
  .file-input-wrapper {
    padding: 0 0.5rem;
  }
  
  .file-input-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .file-input-button svg {
    width: 18px;
    height: 18px;
  }
  
  .checkbox-wrapper {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  
  .checkbox-wrapper label {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .g-recaptcha {
    margin-bottom: 1.5rem !important;
    margin-left: 0.5rem !important;
    transform: scale(0.9);
    transform-origin: left center;
  }
  
  button[type="submit"] {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: calc(100% - 1rem);
    margin: 0 0.5rem;
  }
  
  .success-message {
    margin-top: 0.8rem;
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .class-action-section {
    margin: 0.8rem auto;
    padding: 1rem;
  }
  
  .class-action-section h1 {
    font-size: 1.5rem;
  }
  
  .submission-counter {
    margin: 1rem 0;
    padding: 0.8rem;
  }
  
  .submission-counter h2 {
    font-size: 1.2rem;
  }
  
  .counter-number {
    font-size: 1.8rem;
  }
  
  .legal-disclaimer {
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .legal-disclaimer h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .legal-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  #classActionForm {
    margin: 1rem auto;
    padding: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
    padding: 0 0.3rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="number"],
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .file-input-wrapper {
    padding: 0 0.3rem;
  }
  
  .file-input-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .file-input-button svg {
    width: 16px;
    height: 16px;
  }
  
  .file-name {
    font-size: 0.8rem;
  }
  
  .checkbox-wrapper {
    padding: 0.8rem;
    margin: 0 0.3rem;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  
  .checkbox-wrapper label {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .g-recaptcha {
    margin-bottom: 1rem !important;
    margin-left: 0.3rem !important;
    transform: scale(0.8);
    transform-origin: left center;
  }
  
  button[type="submit"] {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    width: calc(100% - 0.6rem);
    margin: 0 0.3rem;
  }
  
  .success-message {
    margin-top: 0.6rem;
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .class-action-section {
    margin: 0.6rem auto;
    padding: 0.8rem;
  }
  
  .class-action-section h1 {
    font-size: 1.3rem;
  }
  
  .submission-counter {
    margin: 0.8rem 0;
    padding: 0.6rem;
  }
  
  .submission-counter h2 {
    font-size: 1.1rem;
  }
  
  .counter-number {
    font-size: 1.6rem;
  }
  
  .legal-disclaimer {
    margin: 0.8rem 0;
    padding: 0.8rem;
  }
  
  .legal-disclaimer h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .legal-disclaimer p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  #classActionForm {
    margin: 0.8rem auto;
    padding: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 0.8rem;
    padding: 0 0.2rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="number"],
  .form-group textarea {
    padding: 0.4rem;
    font-size: 0.8rem;
  }
  
  .form-group textarea {
    min-height: 80px;
  }
  
  .file-input-wrapper {
    padding: 0 0.2rem;
  }
  
  .file-input-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .file-input-button svg {
    width: 14px;
    height: 14px;
  }
  
  .file-name {
    font-size: 0.75rem;
  }
  
  .checkbox-wrapper {
    padding: 0.6rem;
    margin: 0 0.2rem;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
  
  .checkbox-wrapper label {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .g-recaptcha {
    margin-bottom: 0.8rem !important;
    margin-left: 0.2rem !important;
    transform: scale(0.7);
    transform-origin: left center;
  }
  
  button[type="submit"] {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    width: calc(100% - 0.4rem);
    margin: 0 0.2rem;
  }
  
  .success-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

/* Form input focus states for mobile */
@media (max-width: 768px) {
  .form-group input[type="text"]:focus,
  .form-group input[type="email"]:focus,
  .form-group input[type="number"]:focus,
  .form-group textarea:focus {
    box-shadow: 0 0 0 1px rgba(79, 209, 255, 0.3);
  }
}

/* Touch-friendly form elements */
@media (hover: none) and (pointer: coarse) {
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="number"],
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .file-input-button {
    min-height: 44px; /* Touch target size */
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    min-width: 44px;
    min-height: 44px;
  }
  
  button[type="submit"] {
    min-height: 44px;
  }
}

/* ===== REVIEWS PAGE MOBILE OPTIMIZATIONS ===== */

/* Reviews page mobile styles */
@media (max-width: 768px) {
  .real-reviews {
    padding: 1rem;
  }
  
  .review-header-row {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .review-header-row h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
  
  .review-header-row h2 {
    font-size: 1.2rem !important;
  }
  
  .review-filters {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }
  
  .review-filters label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .review-filters select {
    padding: 0.6rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 1px solid #4fd1ff22;
    background: rgba(255, 255, 255, 0.05);
    color: #e6eaf3;
  }
  
  .review-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .review-card {
    padding: 1.2rem;
    min-height: auto;
  }
  
  .review-card-header {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
  .review-card-header img {
    width: 32px;
    height: 32px;
  }
  
  .review-card-name {
    font-size: 0.95rem;
  }
  
  .review-card-date {
    font-size: 0.8rem;
  }
  
  .review-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .before-after h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .expectations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .expectation-card {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .expectation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .promise-item {
    margin-bottom: 1.2rem;
  }
  
  .promise-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .promise-item .source {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .real-reviews {
    padding: 0.8rem;
  }
  
  .review-header-row {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .review-header-row h1 {
    font-size: 1.5rem !important;
  }
  
  .review-header-row h2 {
    font-size: 1rem !important;
  }
  
  .review-filters {
    gap: 0.6rem;
  }
  
  .review-filters label {
    font-size: 0.85rem;
  }
  
  .review-filters select {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  
  .review-gallery {
    gap: 0.8rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .review-card-header img {
    width: 28px;
    height: 28px;
  }
  
  .review-card-name {
    font-size: 0.9rem;
  }
  
  .review-card-date {
    font-size: 0.75rem;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  .before-after h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .expectations {
    gap: 1rem;
  }
  
  .expectation-card {
    padding: 1rem;
  }
  
  .expectation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .promise-item {
    margin-bottom: 1rem;
  }
  
  .promise-item p {
    font-size: 0.85rem;
  }
  
  .promise-item .source {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .real-reviews {
    padding: 0.6rem;
  }
  
  .review-header-row {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .review-header-row h1 {
    font-size: 1.3rem !important;
  }
  
  .review-header-row h2 {
    font-size: 0.9rem !important;
  }
  
  .review-filters {
    gap: 0.5rem;
  }
  
  .review-filters label {
    font-size: 0.8rem;
  }
  
  .review-filters select {
    padding: 0.4rem;
    font-size: 0.8rem;
  }
  
  .review-gallery {
    gap: 0.6rem;
  }
  
  .review-card {
    padding: 0.8rem;
  }
  
  .review-card-header img {
    width: 24px;
    height: 24px;
  }
  
  .review-card-name {
    font-size: 0.85rem;
  }
  
  .review-card-date {
    font-size: 0.7rem;
  }
  
  .review-text {
    font-size: 0.8rem;
  }
  
  .before-after h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .expectations {
    gap: 0.8rem;
  }
  
  .expectation-card {
    padding: 0.8rem;
  }
  
  .expectation-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .promise-item {
    margin-bottom: 0.8rem;
  }
  
  .promise-item p {
    font-size: 0.8rem;
  }
  
  .promise-item .source {
    font-size: 0.7rem;
  }
}

/* Touch-friendly review elements */
@media (hover: none) and (pointer: coarse) {
  .review-card {
    min-height: 44px;
  }
  
  .review-filters select {
    min-height: 44px;
  }
  
  .review-modal-close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== REPORT PAGE MOBILE OPTIMIZATIONS ===== */

/* Report page mobile styles */
@media (max-width: 768px) {
  .report-section {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .report-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .report-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .card {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .card ul {
    padding-left: 1.2rem;
  }
  
  .card li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .card a {
    font-size: 0.9rem;
  }
  
  .resource-icon {
    height: 40px !important;
    width: auto;
  }
  
  .where-to-report > div {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .where-to-report > div > div {
    width: 100%;
  }
  
  .where-to-report strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .where-to-report a {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
  }
  
  .where-to-report p {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
  
  .review-links {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .review-links h1 {
    font-size: 1.8rem !important;
  }
  
  .review-links > div:first-child {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .review-links > div:first-child a {
    align-self: flex-start;
  }
  
  .review-carousel {
    gap: 1rem;
  }
  
  .review-item {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .reddit-thread {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 1rem;
  }
  
  .reddit-thread img {
    height: 40px !important;
  }
  
  .reddit-thread strong {
    font-size: 0.9rem;
  }
  
  .reddit-thread a {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .report-section {
    margin: 0.8rem;
    padding: 1rem;
  }
  
  .report-section h1 {
    font-size: 1.5rem;
  }
  
  .report-section p {
    font-size: 0.85rem;
  }
  
  .card {
    margin: 0.8rem;
    padding: 1rem;
  }
  
  .card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .card p {
    font-size: 0.85rem;
  }
  
  .card li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  
  .card a {
    font-size: 0.85rem;
  }
  
  .resource-icon {
    height: 32px !important;
  }
  
  .where-to-report > div {
    gap: 0.8rem;
  }
  
  .where-to-report strong {
    font-size: 0.95rem;
  }
  
  .where-to-report a {
    font-size: 0.85rem;
  }
  
  .where-to-report p {
    font-size: 0.8rem;
  }
  
  .review-links {
    margin: 0.8rem;
    padding: 1rem;
  }
  
  .review-links h1 {
    font-size: 1.5rem !important;
  }
  
  .review-links > div:first-child {
    gap: 0.8rem;
  }
  
  .review-carousel {
    gap: 0.8rem;
  }
  
  .review-item {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .reddit-thread {
    gap: 0.4rem;
    margin-top: 0.8rem;
  }
  
  .reddit-thread img {
    height: 32px !important;
  }
  
  .reddit-thread strong {
    font-size: 0.85rem;
  }
  
  .reddit-thread a {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .report-section {
    margin: 0.6rem;
    padding: 0.8rem;
  }
  
  .report-section h1 {
    font-size: 1.3rem;
  }
  
  .report-section p {
    font-size: 0.8rem;
  }
  
  .card {
    margin: 0.6rem;
    padding: 0.8rem;
  }
  
  .card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  .card li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .card a {
    font-size: 0.8rem;
  }
  
  .resource-icon {
    height: 28px !important;
  }
  
  .where-to-report > div {
    gap: 0.6rem;
  }
  
  .where-to-report strong {
    font-size: 0.9rem;
  }
  
  .where-to-report a {
    font-size: 0.8rem;
  }
  
  .where-to-report p {
    font-size: 0.75rem;
  }
  
  .review-links {
    margin: 0.6rem;
    padding: 0.8rem;
  }
  
  .review-links h1 {
    font-size: 1.3rem !important;
  }
  
  .review-links > div:first-child {
    gap: 0.6rem;
  }
  
  .review-carousel {
    gap: 0.6rem;
  }
  
  .review-item {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .reddit-thread {
    gap: 0.3rem;
    margin-top: 0.6rem;
  }
  
  .reddit-thread img {
    height: 28px !important;
  }
  
  .reddit-thread strong {
    font-size: 0.8rem;
  }
  
  .reddit-thread a {
    font-size: 0.75rem;
  }
}

/* Touch-friendly report page elements */
@media (hover: none) and (pointer: coarse) {
  .card a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .resource-icon {
    min-width: 44px;
    min-height: 44px;
  }
  
  .review-item {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ===== HOW-IT-WORKS PAGE MOBILE OPTIMIZATIONS ===== */

/* How-it-works page mobile styles */
@media (max-width: 768px) {
  .intro-text {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .intro-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .intro-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .scam-step {
    margin: 1rem;
    padding: 1.5rem;
    background-size: 200px auto !important;
    background-position: right bottom !important;
  }
  
  .step-header {
    margin-bottom: 1rem;
  }
  
  .step-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .scam-step p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .reality-box {
    width: 100% !important;
    min-width: auto !important;
    margin: 0 !important;
  }
  
  .reality-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .truth-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .warning-banner {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .warning-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .objective-item {
    padding: 1rem;
  }
  
  .objective-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .objective-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .intro-text {
    padding: 1rem;
    margin: 0.8rem;
  }
  
  .intro-text h1 {
    font-size: 1.5rem;
  }
  
  .intro-text p {
    font-size: 0.85rem;
  }
  
  .scam-step {
    margin: 0.8rem;
    padding: 1rem;
    background-size: 150px auto !important;
  }
  
  .step-header {
    margin-bottom: 0.8rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .scam-step p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .reality-box h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .truth-list {
    padding-left: 1rem;
  }
  
  .truth-list li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  
  .warning-banner {
    margin: 0.8rem;
    padding: 1rem;
  }
  
  .warning-banner h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .objectives-list {
    gap: 0.8rem;
  }
  
  .objective-item {
    padding: 0.8rem;
  }
  
  .objective-item h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .objective-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .intro-text {
    padding: 0.8rem;
    margin: 0.6rem;
  }
  
  .intro-text h1 {
    font-size: 1.3rem;
  }
  
  .intro-text p {
    font-size: 0.8rem;
  }
  
  .scam-step {
    margin: 0.6rem;
    padding: 0.8rem;
    background-size: 120px auto !important;
  }
  
  .step-header {
    margin-bottom: 0.6rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .scam-step p {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .reality-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .truth-list {
    padding-left: 0.8rem;
  }
  
  .truth-list li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .warning-banner {
    margin: 0.6rem;
    padding: 0.8rem;
  }
  
  .warning-banner h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .objectives-list {
    gap: 0.6rem;
  }
  
  .objective-item {
    padding: 0.6rem;
  }
  
  .objective-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .objective-item p {
    font-size: 0.8rem;
  }
}

/* Hide background images on very small screens */
@media (max-width: 480px) {
  .scam-step {
    background-image: none !important;
  }
  
  .scam-step::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
  }
  
  .scam-step:nth-child(2)::after {
    background-image: url('images/1how_pickabox.png');
  }
  
  .scam-step:nth-child(3)::after {
    background-image: url('images/2how_brokengem.png');
  }
  
  .scam-step:nth-child(4)::after {
    background-image: url('images/3how_spin.png');
  }
  
  .scam-step:nth-child(5)::after {
    background-image: url('images/4how_withdraw.png');
  }
  
  .scam-step:nth-child(6)::after {
    background-image: url('images/5how_cycle.png');
  }
}

/* Touch-friendly how-it-works elements */
@media (hover: none) and (pointer: coarse) {
  .scam-step {
    min-height: 44px;
  }
  
  .objective-item {
    min-height: 44px;
  }
  
  .reality-box {
    min-height: 44px;
  }
}

/* ===== DISCLAIMER PAGE MOBILE OPTIMIZATIONS ===== */

/* Disclaimer page mobile styles */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .anchor-menu {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  .anchor-menu h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .anchor-menu ul {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .anchor-menu li {
    width: 100%;
  }
  
  .anchor-menu a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    display: block;
    text-align: center;
  }
  
  .card.section {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  .card.section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .card.section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .card.section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .card.section ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .card.section li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  
  .card.section a {
    font-size: 0.9rem;
  }
  
  #gambling-help {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  #gambling-help h1 {
    font-size: 1.8rem;
  }
  
  #gambling-help p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0.8rem;
  }
  
  .anchor-menu {
    margin: 0.8rem 0;
    padding: 1rem;
  }
  
  .anchor-menu h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .anchor-menu ul {
    gap: 0.6rem;
  }
  
  .anchor-menu a {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .card.section {
    margin: 0.8rem 0;
    padding: 1rem;
  }
  
  .card.section h1 {
    font-size: 1.5rem;
  }
  
  .card.section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section ul {
    padding-left: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section a {
    font-size: 0.85rem;
  }
  
  #gambling-help {
    margin: 0.8rem 0;
    padding: 1rem;
  }
  
  #gambling-help h1 {
    font-size: 1.5rem;
  }
  
  #gambling-help p {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0.6rem;
  }
  
  .anchor-menu {
    margin: 0.6rem 0;
    padding: 0.8rem;
  }
  
  .anchor-menu h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .anchor-menu ul {
    gap: 0.5rem;
  }
  
  .anchor-menu a {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .card.section {
    margin: 0.6rem 0;
    padding: 0.8rem;
  }
  
  .card.section h1 {
    font-size: 1.3rem;
  }
  
  .card.section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card.section p {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section ul {
    padding-left: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .card.section a {
    font-size: 0.8rem;
  }
  
  #gambling-help {
    margin: 0.6rem 0;
    padding: 0.8rem;
  }
  
  #gambling-help h1 {
    font-size: 1.3rem;
  }
  
  #gambling-help p {
    font-size: 0.8rem;
  }
}

/* Touch-friendly disclaimer page elements */
@media (hover: none) and (pointer: coarse) {
  .anchor-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card.section {
    min-height: 44px;
  }
  
  .card.section a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ===== MOBILE HAMBURGER MENU STYLES ===== */

/* Hamburger Menu Button */
.hamburger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #4fd1ff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Menu Button Active State */
.hamburger-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.mobile-nav-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.mobile-nav-content {
  width: 280px;
  height: 100vh;
  background: #23263a;
  border-left: 1px solid #4fd1ff22;
  padding: 80px 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

/* Mobile User Actions */
.mobile-user-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #4fd1ff22;
}

.mobile-how-does-it-work-btn {
  background: #23263a;
  color: #e6eaf3;
  border: 1px solid #4fd1ff22;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1rem;
  transition: background-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 0 8px 2px #4fd1ff55;
  outline: none;
}

.mobile-how-does-it-work-btn:hover {
  background: #2a2e45;
  box-shadow: 0 0 12px 3px #4fd1ff99;
}

.mobile-login-btn, .mobile-signup-btn {
  background: linear-gradient(90deg, #4fd1ff 0%, #6c63ff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px 2px #4fd1ff55;
}

.mobile-login-btn:hover, .mobile-signup-btn:hover {
  background: #2a2e45;
  box-shadow: 0 0 12px 3px #4fd1ff99;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  color: #e6eaf3;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.2s;
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(79, 209, 255, 0.1);
  border-color: #4fd1ff22;
}

/* Mobile Gem Counter */
.mobile-gem-counter {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-gem-counter .coin-balance {
  color: #ff4444;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
  font-family: monospace;
  font-size: 1.2em;
  white-space: nowrap;
}

/* ===== UPDATED MOBILE HEADER STYLES ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  header {
    padding: 0.8rem 1.5rem;
  }
  
  .desktop-nav {
    gap: 1rem;
    margin-left: 1rem;
  }
  
  .desktop-nav a {
    font-size: 0.9rem;
  }
  
  .desktop-user-actions {
    gap: 0.8rem;
  }
  
  .login-btn, .signup-btn {
    min-width: 100px;
    height: 36px;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  
  .how-does-it-work-btn {
    min-width: 100px;
    height: 36px;
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .coin-balance {
    font-size: 1.2em;
    min-width: 120px;
  }
  
  main {
    padding: 90px 1rem 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .scambox-spin-ui {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .scambox-reel-container {
    width: 280px;
    height: 180px;
  }
  
  .scambox-art img {
    width: 180px;
    height: 180px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  /* Hide desktop elements */
  .desktop-nav,
  .desktop-user-actions {
    display: none;
  }
  
  /* Show mobile elements */
  .hamburger-menu-btn {
    display: flex;
  }
  
  .mobile-gem-counter {
    display: block;
  }
  
  /* Mobile nav overlay only shows when active */
  .mobile-nav-overlay {
    display: none;
  }
  
  .mobile-nav-overlay.active {
    display: flex;
  }
  
  header {
    padding: 0.6rem 1rem;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 35px;
  }
  
  main {
    padding: 120px 1rem 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .scambox-reel-container {
    width: 260px;
    height: 160px;
  }
  
  .scambox-art img {
    width: 160px;
    height: 160px;
  }
  
  .spin-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .badges {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-header {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .accordion-content {
    padding: 0 1.2rem 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 50px;
  }
  
  .disclaimer-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.3rem;
  }
  
  .review-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .carousel-card {
    padding: 1.2rem;
    min-height: 180px;
  }
  
  .carousel-card-header {
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  header {
    padding: 0.5rem 0.8rem;
  }
  
  .logo img {
    height: 30px;
  }
  
  .hamburger-menu-btn {
    width: 28px;
    height: 28px;
  }
  
  .hamburger-line {
    height: 2.5px;
  }
  
  .mobile-nav-content {
    width: 260px;
    padding: 70px 1.5rem 1.5rem 1.5rem;
  }
  
  .mobile-user-actions {
    gap: 0.8rem;
    padding-bottom: 1.5rem;
  }
  
  .mobile-how-does-it-work-btn,
  .mobile-login-btn,
  .mobile-signup-btn {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .mobile-nav {
    gap: 0.3rem;
  }
  
  .mobile-nav a {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .mobile-gem-counter .coin-balance {
    font-size: 1.1em;
  }
  
  main {
    padding: 140px 0.8rem 2rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .scambox-spin-ui {
    gap: 1rem;
  }
  
  .scambox-reel-container {
    width: 240px;
    height: 140px;
  }
  
  .scambox-art img {
    width: 140px;
    height: 140px;
  }
  
  .scambox-card {
    min-width: 100px;
    padding: 0.8rem;
    margin: 0.3rem;
  }
  
  .scambox-card img {
    width: 50px;
    height: 50px;
  }
  
  .spin-btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  
  .badges {
    gap: 0.6rem;
  }
  
  .badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .accordion-header {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-content {
    padding: 0 1rem 0.7rem 1rem;
    font-size: 0.85rem;
  }
  
  .faq h2 {
    font-size: 1.3rem;
  }
  
  .trust-indicators h2 {
    font-size: 1.3rem;
  }
  
  .footer-disclaimer {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 40px;
  }
  
  .footer-disclaimer p {
    font-size: 0.9rem;
  }
  
  .disclaimer-content {
    padding: 1.2rem;
    margin: 0.8rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.2rem;
  }
  
  .proceed-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .review-modal-content {
    padding: 1.2rem;
    margin: 0.8rem;
  }
  
  .carousel-card {
    padding: 1rem;
    min-height: 160px;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  .carousel-section {
    padding: 1.5rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .carousel-section h2 {
    font-size: 1.5rem !important;
  }
  
  .expectations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .expectation-card {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .expectation-card h3 {
    font-size: 1.3rem;
  }
  
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  header {
    padding: 0.4rem 0.6rem;
  }
  
  .logo img {
    height: 28px;
  }
  
  .hamburger-menu-btn {
    width: 26px;
    height: 26px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .mobile-nav-content {
    width: 240px;
    padding: 60px 1rem 1rem 1rem;
  }
  
  .mobile-user-actions {
    gap: 0.6rem;
    padding-bottom: 1rem;
  }
  
  .mobile-how-does-it-work-btn,
  .mobile-login-btn,
  .mobile-signup-btn {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .mobile-nav a {
    padding: 0.6rem;
    font-size: 0.95rem;
  }
  
  .mobile-gem-counter .coin-balance {
    font-size: 1em;
  }
  
  main {
    padding: 150px 0.6rem 2rem 0.6rem;
  }
  
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
  
  .scambox-reel-container {
    width: 220px;
    height: 120px;
  }
  
  .scambox-art img {
    width: 120px;
    height: 120px;
  }
  
  .spin-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .badge {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .accordion-header {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .accordion-content {
    padding: 0 0.8rem 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .footer-disclaimer {
    padding: 0.8rem;
  }
  
  .footer-disclaimer .footer-logo {
    height: 35px;
  }
  
  .footer-disclaimer p {
    font-size: 0.85rem;
  }
  
  .disclaimer-content {
    padding: 1rem;
    margin: 0.6rem;
  }
  
  .disclaimer-content h2 {
    font-size: 1.1rem;
  }
  
  .proceed-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .review-modal-content {
    padding: 1rem;
    margin: 0.6rem;
  }
  
  .carousel-card {
    padding: 0.8rem;
    min-height: 140px;
  }
  
  .review-text {
    font-size: 0.8rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: 0.4rem 1rem;
  }
  
  .mobile-gem-counter {
    display: none;
  }
  
  main {
    padding: 80px 1rem 2rem 1rem;
  }
  
  .scambox-spin-ui {
    flex-direction: row;
    gap: 1rem;
  }
  
  .scambox-reel-container {
    width: 200px;
    height: 120px;
  }
  
  .scambox-art img {
    width: 120px;
    height: 120px;
  }
}

/* Mobile-first approach for critical layout fixes */

/* Fix the main scambox layout for mobile */
@media (max-width: 768px) {
  .scambox-spin-ui {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .scambox-art {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-right: 0;
    border-radius: 18px;
    overflow: hidden;
  }
  
  .scambox-art img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }
  
  .scambox-reel-container {
    min-width: unset;
    width: 100%;
    max-width: 320px;
    min-height: 280px;
    padding: 1.5rem;
  }
  
  .scambox-reel {
    width: 100%;
    height: 240px;
  }
  
  .scambox-card {
    width: 180px;
    height: 240px;
    margin: 0 4px;
  }
  
  .scambox-card img {
    width: 160px;
    height: auto;
    max-height: 180px;
  }
  
  .scambox-gem-value {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .provably-fair-badge {
    font-size: 0.85rem;
    padding: 0.25em 0.6em;
    bottom: 8px;
    right: 12px;
  }
  
  /* Improve carousel for mobile */
  .carousel-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
  }
  
  .carousel-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .carousel-card {
    min-width: 280px;
    padding: 1rem;
  }
  
  /* Better mobile spacing */
  .hero {
    margin-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Improve trust indicators for mobile */
  .trust-indicators {
    margin: 2rem 0;
  }
  
  .trust-indicators h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .badges {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .badge {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  /* Better FAQ mobile layout */
  .faq h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .accordion-header {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .accordion-content {
    font-size: 0.9rem;
    padding: 0 1rem 1rem 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .scambox-art {
    max-width: 240px;
  }
  
  .scambox-art img {
    max-height: 240px;
  }
  
  .scambox-reel-container {
    max-width: 280px;
    min-height: 240px;
    padding: 1rem;
  }
  
  .scambox-reel {
    height: 200px;
  }
  
  .scambox-card {
    width: 150px;
    height: 200px;
    margin: 0 3px;
  }
  
  .scambox-card img {
    width: 130px;
    max-height: 150px;
  }
  
  .scambox-gem-value {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .provably-fair-badge {
    font-size: 0.8rem;
    padding: 0.2em 0.5em;
  }
  
  .spin-btn {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  
  .carousel-card {
    min-width: 260px;
    padding: 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .trust-indicators h2 {
    font-size: 1.4rem;
  }
  
  .faq h2 {
    font-size: 1.4rem;
  }
  
  .carousel-section h2 {
    font-size: 1.6rem;
  }
}

/* Very small mobile devices */
@media (max-width: 360px) {
  .scambox-art {
    max-width: 200px;
  }
  
  .scambox-art img {
    max-height: 200px;
  }
  
  .scambox-reel-container {
    max-width: 240px;
    min-height: 200px;
    padding: 0.8rem;
  }
  
  .scambox-reel {
    height: 160px;
  }
  
  .scambox-card {
    width: 120px;
    height: 160px;
    margin: 0 2px;
  }
  
  .scambox-card img {
    width: 100px;
    max-height: 120px;
  }
  
  .scambox-gem-value {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .provably-fair-badge {
    font-size: 0.7rem;
    padding: 0.15em 0.4em;
  }
  
  .spin-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .carousel-card {
    min-width: 240px;
    padding: 0.6rem;
  }
  
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
  
  .trust-indicators h2 {
    font-size: 1.2rem;
  }
  
  .faq h2 {
    font-size: 1.2rem;
  }
  
  .carousel-section h2 {
    font-size: 1.4rem;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .scambox-spin-ui {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  
  .scambox-art {
    max-width: 200px;
  }
  
  .scambox-art img {
    max-height: 200px;
  }
  
  .scambox-reel-container {
    max-width: 280px;
    min-height: 200px;
  }
  
  .scambox-reel {
    height: 160px;
  }
  
  .scambox-card {
    width: 120px;
    height: 160px;
  }
  
  .scambox-card img {
    width: 100px;
    max-height: 120px;
  }
  
  main {
    padding: 100px 1rem 1rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .spin-btn {
    min-height: 44px;
    padding: 0.8rem 1.5rem;
  }
  
  .accordion-header {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .carousel-card {
    min-height: 120px;
  }
  
  .badge {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .mobile-login-btn,
  .mobile-signup-btn {
    min-height: 44px;
  }
}

/* Mobile optimization for best drops bar */
@media (max-width: 768px) {
  .best-drops-bar {
    height: 200px;
    margin: 1rem auto 0 auto;
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .best-drop-card {
    width: 120px;
    height: 160px;
    margin: 0 6px;
    flex-shrink: 0;
  }
  
  .best-drop-img-outline {
    width: 90px;
    height: 120px;
    margin: 0.5rem 0 0.3rem 0;
  }
  
  .best-drop-card-img {
    width: 84px;
    height: 114px;
  }
  
  .best-drops-bar-fade {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .best-drops-bar {
    height: 180px;
    margin: 0.8rem auto 0 auto;
  }
  
  .best-drop-card {
    width: 100px;
    height: 140px;
    margin: 0 4px;
  }
  
  .best-drop-img-outline {
    width: 75px;
    height: 100px;
    margin: 0.4rem 0 0.2rem 0;
  }
  
  .best-drop-card-img {
    width: 69px;
    height: 94px;
  }
  
  .best-drops-bar-fade {
    width: 30px;
  }
}

@media (max-width: 360px) {
  .best-drops-bar {
    height: 160px;
    margin: 0.6rem auto 0 auto;
  }
  
  .best-drop-card {
    width: 80px;
    height: 120px;
    margin: 0 3px;
  }
  
  .best-drop-img-outline {
    width: 60px;
    height: 80px;
    margin: 0.3rem 0 0.2rem 0;
  }
  
  .best-drop-card-img {
    width: 54px;
    height: 74px;
  }
  
  .best-drops-bar-fade {
    width: 25px;
  }
}

/* Mobile optimization for drop table modal */
@media (max-width: 768px) {
  .drop-table-modal {
    width: 95vw;
    max-height: 85vh;
    padding: 1.5rem 1rem 1rem 1rem;
    border-radius: 16px;
  }
  
  .drop-table-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .drop-table-close {
    top: 0.8rem;
    right: 1rem;
    font-size: 1.8rem;
  }
  
  .drop-table-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.8rem;
  }
  
  .drop-table-card {
    height: 220px;
    padding: 0.8rem 0.5rem 0.6rem 0.5rem;
  }
  
  .drop-table-card img {
    width: 100px;
    height: 140px;
    margin-bottom: 0.5rem;
  }
  
  .drop-table-card-name {
    font-size: 0.9rem;
    min-height: 2.2em;
    max-width: 120px;
  }
  
  .drop-table-card-gem {
    font-size: 0.9rem;
  }
  
  .drop-table-card-chance {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .drop-table-modal {
    width: 98vw;
    max-height: 90vh;
    padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  }
  
  .drop-table-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .drop-table-close {
    top: 0.6rem;
    right: 0.8rem;
    font-size: 1.6rem;
  }
  
  .drop-table-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 0.6rem;
  }
  
  .drop-table-card {
    height: 180px;
    padding: 0.6rem 0.4rem 0.5rem 0.4rem;
  }
  
  .drop-table-card img {
    width: 80px;
    height: 110px;
    margin-bottom: 0.4rem;
  }
  
  .drop-table-card-name {
    font-size: 0.8rem;
    min-height: 2em;
    max-width: 100px;
  }
  
  .drop-table-card-gem {
    font-size: 0.8rem;
  }
  
  .drop-table-card-chance {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .drop-table-modal {
    width: 100vw;
    max-height: 95vh;
    padding: 1rem 0.6rem 0.6rem 0.6rem;
    border-radius: 12px;
  }
  
  .drop-table-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .drop-table-close {
    top: 0.5rem;
    right: 0.6rem;
    font-size: 1.4rem;
  }
  
  .drop-table-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0.4rem;
  }
  
  .drop-table-card {
    height: 160px;
    padding: 0.5rem 0.3rem 0.4rem 0.3rem;
  }
  
  .drop-table-card img {
    width: 70px;
    height: 95px;
    margin-bottom: 0.3rem;
  }
  
  .drop-table-card-name {
    font-size: 0.75rem;
    min-height: 1.8em;
    max-width: 90px;
  }
  
  .drop-table-card-gem {
    font-size: 0.75rem;
  }
  
  .drop-table-card-chance {
    font-size: 0.7rem;
  }
}

/* Mobile optimization for how-it-works page content */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 1rem;
  }
  
  .intro-text {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }
  
  .intro-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .intro-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .scam-step {
    padding: 1.5rem;
    margin: 1.5rem 0;
    background-size: 200px auto !important;
    background-position: right bottom !important;
  }
  
  .step-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .scam-step p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .reality-box {
    width: 100% !important;
    min-width: unset !important;
    margin: 1rem 0 !important;
    padding: 1.2rem;
  }
  
  .reality-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .truth-list li {
    font-size: 0.9rem;
    margin: 0.6rem 0;
    padding-left: 1.2rem;
  }
  
  .warning-banner {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .warning-banner h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .objectives-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .objective-item {
    padding: 1.2rem;
  }
  
  .objective-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .objective-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .fake-chat-demo {
    padding: 0.8rem;
    margin: 0.8rem 0;
    min-height: 150px;
  }
  
  .fake-message {
    margin: 0.4rem 0;
    font-size: 0.9rem;
  }
  
  .fake-avatar {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 0.8rem;
  }
  
  .intro-text {
    margin: 1rem auto;
    padding: 0 0.8rem;
  }
  
  .intro-text h1 {
    font-size: 1.5rem;
  }
  
  .intro-text p {
    font-size: 0.9rem;
  }
  
  .scam-step {
    padding: 1.2rem;
    margin: 1.2rem 0;
    background-size: 150px auto !important;
  }
  
  .step-header {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .scam-step p {
    font-size: 0.9rem;
  }
  
  .reality-box {
    padding: 1rem;
  }
  
  .reality-box h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .truth-list li {
    font-size: 0.85rem;
    margin: 0.5rem 0;
    padding-left: 1rem;
  }
  
  .warning-banner {
    padding: 1.2rem;
    margin: 1.2rem 0;
  }
  
  .warning-banner h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .objectives-list {
    gap: 0.8rem;
    margin: 1.2rem 0;
  }
  
  .objective-item {
    padding: 1rem;
  }
  
  .objective-item h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .objective-item p {
    font-size: 0.85rem;
  }
  
  .fake-chat-demo {
    padding: 0.6rem;
    margin: 0.6rem 0;
    min-height: 120px;
  }
  
  .fake-message {
    margin: 0.3rem 0;
    font-size: 0.85rem;
  }
  
  .fake-avatar {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .how-it-works-section {
    padding: 0.6rem;
  }
  
  .intro-text {
    margin: 0.8rem auto;
    padding: 0 0.6rem;
  }
  
  .intro-text h1 {
    font-size: 1.3rem;
  }
  
  .intro-text p {
    font-size: 0.85rem;
  }
  
  .scam-step {
    padding: 1rem;
    margin: 1rem 0;
    background-size: 120px auto !important;
  }
  
  .step-header {
    gap: 0.5rem;
    margin-bottom: 0.6rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .scam-step p {
    font-size: 0.85rem;
  }
  
  .reality-box {
    padding: 0.8rem;
  }
  
  .reality-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .truth-list li {
    font-size: 0.8rem;
    margin: 0.4rem 0;
    padding-left: 0.8rem;
  }
  
  .warning-banner {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .warning-banner h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .objectives-list {
    gap: 0.6rem;
    margin: 1rem 0;
  }
  
  .objective-item {
    padding: 0.8rem;
  }
  
  .objective-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .objective-item p {
    font-size: 0.8rem;
  }
  
  .fake-chat-demo {
    padding: 0.5rem;
    margin: 0.5rem 0;
    min-height: 100px;
  }
  
  .fake-message {
    margin: 0.25rem 0;
    font-size: 0.8rem;
  }
  
  .fake-avatar {
    width: 16px;
    height: 16px;
  }
}

/* Touch-friendly improvements for how-it-works page */
@media (hover: none) and (pointer: coarse) {
  .scam-step {
    min-height: 44px;
  }
  
  .objective-item {
    min-height: 44px;
  }
  
  .reality-box {
    min-height: 44px;
  }
}

/* Mobile optimization for reviews page */
@media (max-width: 768px) {
  .review-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    padding: 1rem;
  }
  
  .review-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .review-header-row h1, .review-header-row h2 {
    white-space: normal;
    font-size: 1.5rem;
  }
  
  .review-filters {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .review-filters select {
    min-width: 70px;
    font-size: 0.9em;
  }
  
  .review-filters label {
    font-size: 0.9em;
  }
  
  .review-modal-content {
    width: 95%;
    max-width: none;
    padding: 1.5rem;
    max-height: 80vh;
  }
  
  .modal-trustpilot-header {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    padding: 1rem;
  }
  
  .modal-fb-header {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .modal-fb-name {
    font-size: 1rem;
  }
  
  .modal-fb-date {
    font-size: 0.85em;
  }
  
  .modal-fb-text, .modal-trustpilot-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .before-after {
    padding: 1rem;
  }
  
  .before-after h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .expectations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .expectation-card {
    padding: 1.2rem;
  }
  
  .expectation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .promise-item {
    margin-bottom: 1rem;
  }
  
  .promise-item p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .source {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .review-gallery {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
    padding: 0.8rem;
  }
  
  .review-header-row h1, .review-header-row h2 {
    font-size: 1.3rem;
  }
  
  .review-filters {
    gap: 0.4rem;
  }
  
  .review-filters select {
    min-width: 60px;
    font-size: 0.85em;
  }
  
  .review-filters label {
    font-size: 0.85em;
  }
  
  .review-modal-content {
    padding: 1.2rem;
    max-height: 75vh;
  }
  
  .modal-trustpilot-header {
    margin: -1.2rem -1.2rem 0.8rem -1.2rem;
    padding: 0.8rem;
  }
  
  .before-after {
    padding: 0.8rem;
  }
  
  .before-after h2 {
    font-size: 1.3rem;
  }
  
  .expectations {
    gap: 1.2rem;
  }
  
  .expectation-card {
    padding: 1rem;
  }
  
  .expectation-card h3 {
    font-size: 1.1rem;
  }
  
  .promise-item p {
    font-size: 0.9rem;
  }
}

/* Mobile optimization for report page */
@media (max-width: 768px) {
  .card {
    padding: 1.2rem !important;
    margin-bottom: 1.5rem;
  }
  
  .card h1 {
    font-size: 1.6rem !important;
  }
  
  .card h2 {
    font-size: 1.2rem !important;
  }
  
  .card h3 {
    font-size: 1rem !important;
  }
  
  .card p, .card ul, .card li {
    font-size: 1rem;
  }
  
  .card ul li {
    margin-bottom: 1rem;
    padding-left: 1.2em;
  }
  
  .card ul li:before {
    width: 0.6em;
    height: 0.6em;
    top: 0.6em;
  }
  
  .resource-icon {
    height: 20px;
    margin-right: 4px;
  }
  
  .reddit-thread {
    padding: 0.8rem 1rem;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .review-carousel {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .review-item {
    min-width: unset;
    max-width: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .hashtags {
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
  
  .hashtags h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 1rem !important;
    margin-bottom: 1.2rem;
  }
  
  .card h1 {
    font-size: 1.4rem !important;
  }
  
  .card h2 {
    font-size: 1.1rem !important;
  }
  
  .card h3 {
    font-size: 0.95rem !important;
  }
  
  .card p, .card ul, .card li {
    font-size: 0.95rem;
  }
  
  .card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1em;
  }
  
  .card ul li:before {
    width: 0.5em;
    height: 0.5em;
    top: 0.5em;
  }
  
  .resource-icon {
    height: 18px;
    margin-right: 3px;
  }
  
  .reddit-thread {
    padding: 0.6rem 0.8rem;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
  }
  
  .review-carousel {
    gap: 0.6rem;
  }
  
  .review-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .hashtags {
    padding: 0.8rem 1rem;
    margin-top: 1.2rem;
    font-size: 0.95rem;
  }
  
  .hashtags h2 {
    font-size: 1.1rem;
  }
}

/* Mobile optimization for class-action page */
@media (max-width: 768px) {
  .class-action-section {
    padding: 1rem;
  }
  
  .class-action-section h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .submission-counter {
    text-align: center;
    margin: 1.5rem 0;
  }
  
  .submission-counter h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .counter-number {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
  
  .submission-counter p {
    font-size: 1rem;
  }
  
  .legal-disclaimer {
    margin: 1.5rem 0;
  }
  
  .legal-disclaimer h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .legal-disclaimer p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  #classActionForm {
    padding: 1rem;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input, .form-group textarea, .form-group select {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .file-input-wrapper {
    margin-bottom: 1.5rem;
  }
  
  .file-input-button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  
  .checkbox-wrapper {
    margin-bottom: 1.5rem;
  }
  
  .checkbox-wrapper label {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .g-recaptcha {
    margin-bottom: 1.5rem !important;
    margin-left: 0 !important;
    transform: scale(0.9);
    transform-origin: left center;
  }
  
  button[type="submit"] {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .success-message {
    font-size: 1rem;
    padding: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .class-action-section {
    padding: 0.8rem;
  }
  
  .class-action-section h1 {
    font-size: 1.5rem;
  }
  
  .submission-counter h2 {
    font-size: 1.1rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
  
  .submission-counter p {
    font-size: 0.95rem;
  }
  
  .legal-disclaimer h2 {
    font-size: 1.1rem;
  }
  
  .legal-disclaimer p {
    font-size: 0.95rem;
  }
  
  #classActionForm {
    padding: 0.8rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-group input, .form-group textarea, .form-group select {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
  
  .file-input-button {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
  
  .checkbox-wrapper label {
    font-size: 0.9rem;
  }
  
  .g-recaptcha {
    transform: scale(0.8);
  }
  
  button[type="submit"] {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  
  .success-message {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}

/* Mobile optimization for disclaimer page */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .anchor-menu {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
  
  .anchor-menu h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .anchor-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .anchor-menu li {
    margin-bottom: 0;
  }
  
  .anchor-menu a {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
  }
  
  .card.section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card.section h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .card.section h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .card.section ul {
    margin-bottom: 1rem;
  }
  
  .card.section li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .card#gambling-help {
    padding: 1.5rem;
  }
  
  .card#gambling-help h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .card#gambling-help p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0.8rem;
  }
  
  .anchor-menu {
    margin-bottom: 1.2rem;
    padding: 0.8rem;
  }
  
  .anchor-menu h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .anchor-menu a {
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
  }
  
  .card.section {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .card.section h1 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .card.section h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card.section p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .card.section li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .card#gambling-help {
    padding: 1.2rem;
  }
  
  .card#gambling-help h1 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .card#gambling-help p {
    font-size: 0.95rem;
  }
}

/* Touch-friendly improvements for all pages */
@media (hover: none) and (pointer: coarse) {
  .card, .scam-step, .objective-item, .review-item, .expectation-card {
    min-height: 44px;
  }
  
  .anchor-menu a, .form-group input, .form-group textarea, .form-group select {
    min-height: 44px;
  }
  
  button, .file-input-button {
    min-height: 44px;
  }
}

/* Desktop Navigation */
.desktop-nav,
.desktop-user-actions {
  display: flex;
  align-items: center;
}

/* Mobile Navigation */
.hamburger-menu-btn,
.mobile-nav-overlay,
.mobile-gem-counter {
  display: none;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  /* Hide desktop elements */
  .desktop-nav,
  .desktop-user-actions {
    display: none;
  }

  /* Show mobile elements */
  .hamburger-menu-btn {
    display: flex;
  }

  .mobile-gem-counter {
    display: block;
  }

  /* Mobile nav overlay only shows when active */
  .mobile-nav-overlay {
    display: none;
  }

  .mobile-nav-overlay.active {
    display: flex;
  }
}

/* Mobile header layout */
@media (max-width: 768px) {
  header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
  }

  /* Hide desktop elements */
  .desktop-nav,
  .desktop-user-actions {
    display: none !important;
  }

  /* Logo positioning */
  .logo {
    order: 1;
    flex: 0 1 auto;
  }

  /* Hamburger menu positioning */
  .hamburger-menu-btn {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
  }

  /* Mobile gem counter */
  .mobile-gem-counter {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-gem-counter .coin-balance {
    text-align: center;
    margin: 0;
    font-size: 1.2em;
  }

  /* Mobile navigation overlay */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
  }

  .mobile-nav-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-content {
    width: 100%;
    max-width: 320px;
    padding: 2rem;
  }

  .mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    text-align: center;
  }
}

.scambox-main {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px #000a);
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .scambox-spin-ui {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .scambox-art {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .scambox-art .scambox-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .scambox-reel-container {
    width: 100%;
  }
}

.scambox-art:hover .scambox-main {
  transform: scale(1.05);
}