/* ============================================
   赏金女王 - Bounty Queen
   Victorian Royal Court Gothic Revival Theme
   CSS Prefix: sjc-
   Platform ID: SLOT-SJC-2026-3803
   ============================================ */

/* === Font Face === */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.woff2') format('woff2'),
       url('../fonts/PlayfairDisplay.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora.woff2') format('woff2'),
       url('../fonts/Lora.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --sjc-burgundy: #8B0000;
  --sjc-dark-burgundy: #4a0000;
  --sjc-gold: #D4AF37;
  --sjc-dark-gold: #B8960C;
  --sjc-royal-blue: #483D8B;
  --sjc-ivory: #FFF8DC;
  --sjc-antique-white: #FDF5E6;
  --sjc-charcoal: #36454F;
  --sjc-slate: #708090;
  --sjc-font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sjc-font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --sjc-radius: 4px;
  --sjc-shadow: 0 6px 25px rgba(139,0,0,0.2);
  --sjc-transition: all 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sjc-font-body);
  color: var(--sjc-charcoal);
  background-color: var(--sjc-antique-white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: var(--sjc-burgundy);
  text-decoration: none;
  transition: var(--sjc-transition);
}

a:hover {
  color: var(--sjc-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sjc-font-title);
  color: var(--sjc-burgundy);
  line-height: 1.3;
}

/* === Container === */
.sjc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Animations === */
@keyframes sjc-fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sjc-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sjc-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sjc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sjc-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212,175,55,0.5)); }
  50% { filter: drop-shadow(0 0 25px rgba(212,175,55,0.9)); }
}

@keyframes sjc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sjc-underline-expand {
  from { width: 0; }
  to { width: 100%; }
}

/* === Loading Screen === */
.sjc-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sjc-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.sjc-loading.sjc-loading--hidden {
  opacity: 0;
  pointer-events: none;
}

.sjc-loading__logo {
  font-family: var(--sjc-font-title);
  font-size: 3rem;
  color: var(--sjc-gold);
  animation: sjc-spin 2s linear infinite;
}

/* === Navigation === */
.sjc-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(139,0,0,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--sjc-gold);
  border-bottom: 1px solid var(--sjc-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.sjc-nav__logo {
  font-family: var(--sjc-font-title);
  font-size: 1.6rem;
  color: var(--sjc-gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.sjc-nav__logo:hover {
  color: var(--sjc-gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.sjc-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.sjc-nav__item {
  position: relative;
}

.sjc-nav__link {
  display: block;
  padding: 0 1rem;
  color: var(--sjc-ivory);
  font-family: var(--sjc-font-body);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 80px;
  transition: color 0.3s ease;
  position: relative;
}

.sjc-nav__link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sjc-gold);
  transition: width 0.3s ease;
}

.sjc-nav__link:hover,
.sjc-nav__link--active {
  color: var(--sjc-gold);
}

.sjc-nav__link:hover::after,
.sjc-nav__link--active::after {
  width: 80%;
}

.sjc-nav__cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--sjc-gold), var(--sjc-dark-gold));
  color: var(--sjc-burgundy) !important;
  font-weight: 700;
  border-radius: var(--sjc-radius);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--sjc-transition);
  line-height: 1.5;
}

.sjc-nav__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
  color: var(--sjc-burgundy) !important;
}

/* Mobile Nav */
.sjc-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.sjc-nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sjc-gold);
  transition: var(--sjc-transition);
}

.sjc-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--sjc-burgundy);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 2rem;
  flex-direction: column;
}

.sjc-mobile-menu.sjc-mobile-menu--open {
  right: 0;
}

.sjc-mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--sjc-gold);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--sjc-font-title);
}

.sjc-mobile-menu__list {
  list-style: none;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sjc-mobile-menu__link {
  display: block;
  padding: 1rem 0;
  color: var(--sjc-ivory);
  font-size: 1.25rem;
  font-family: var(--sjc-font-body);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.sjc-mobile-menu__link:hover {
  color: var(--sjc-gold);
}

.sjc-mobile-menu__buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* === Buttons === */
.sjc-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--sjc-radius);
  font-family: var(--sjc-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--sjc-transition);
  border: none;
  text-align: center;
}

.sjc-btn--primary {
  background: linear-gradient(135deg, var(--sjc-gold), var(--sjc-dark-gold));
  color: var(--sjc-burgundy);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.sjc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,175,55,0.5);
  color: var(--sjc-burgundy);
}

.sjc-btn--secondary {
  background: var(--sjc-burgundy);
  color: var(--sjc-ivory);
  border: 2px solid var(--sjc-gold);
}

.sjc-btn--secondary:hover {
  background: var(--sjc-gold);
  color: var(--sjc-burgundy);
}

.sjc-btn--outline {
  background: transparent;
  border: 2px solid var(--sjc-burgundy);
  color: var(--sjc-burgundy);
}

.sjc-btn--outline:hover {
  background: var(--sjc-burgundy);
  color: var(--sjc-ivory);
}

.sjc-btn--light {
  background: transparent;
  border: 2px solid var(--sjc-gold);
  color: var(--sjc-gold);
}

.sjc-btn--light:hover {
  background: var(--sjc-gold);
  color: var(--sjc-burgundy);
}

/* === Section Titles === */
.sjc-section-title {
  font-family: var(--sjc-font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--sjc-burgundy);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.2rem;
}

.sjc-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sjc-gold), transparent);
}

.sjc-section-subtitle {
  text-align: center;
  color: var(--sjc-slate);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* === Gold Divider === */
.sjc-divider {
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0 20 Q300 0 600 20 Q900 40 1200 20' stroke='%23D4AF37' fill='none' stroke-width='1.5'/%3E%3Ccircle cx='600' cy='20' r='4' fill='%23D4AF37'/%3E%3Ccircle cx='560' cy='20' r='2' fill='%23D4AF37'/%3E%3Ccircle cx='640' cy='20' r='2' fill='%23D4AF37'/%3E%3C/svg%3E") center/contain no-repeat;
  margin: 0 auto;
}

/* === Hero Section === */
.sjc-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.sjc-hero__video,
.sjc-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sjc-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(139,0,0,0.4), rgba(139,0,0,0.75));
  z-index: 1;
}

.sjc-hero__content {
  position: relative;
  z-index: 2;
  color: var(--sjc-ivory);
  max-width: 900px;
  padding: 0 2rem;
}

.sjc-hero__title {
  font-family: var(--sjc-font-title);
  font-size: clamp(2rem, 7vw, 4.5rem);
  color: var(--sjc-gold);
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  animation: sjc-fadeInDown 1s ease-out;
}

.sjc-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--sjc-ivory);
  margin-bottom: 2rem;
  animation: sjc-fadeInUp 1s ease-out 0.5s both;
  line-height: 1.8;
}

.sjc-hero__cta {
  animation: sjc-fadeInUp 1s ease-out 1s both;
}

.sjc-hero__promo {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,248,220,0.8);
  animation: sjc-fadeIn 1s ease-out 1.5s both;
}

/* === Featured Games === */
.sjc-featured-games {
  padding: 5rem 0;
  background-color: var(--sjc-antique-white);
  background-image: url('../images/fabric-texture.webp');
  background-size: 400px;
}

.sjc-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.sjc-game-card {
  background-color: var(--sjc-burgundy);
  border: 2px solid var(--sjc-gold);
  border-radius: var(--sjc-radius);
  overflow: hidden;
  box-shadow: var(--sjc-shadow);
  transition: var(--sjc-transition);
}

.sjc-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(139,0,0,0.35);
}

.sjc-game-card__image-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.sjc-game-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sjc-game-card:hover .sjc-game-card__image-wrapper img {
  transform: scale(1.08);
}

.sjc-game-card__info {
  padding: 1.2rem 1.5rem;
}

.sjc-game-card__title {
  font-family: var(--sjc-font-title);
  font-size: 1.15rem;
  color: var(--sjc-gold);
  margin-bottom: 0.6rem;
}

.sjc-game-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sjc-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 2px;
  font-weight: 600;
}

.sjc-tag--rtp {
  background: rgba(212,175,55,0.2);
  color: var(--sjc-gold);
  border: 1px solid var(--sjc-gold);
}

.sjc-tag--feature {
  background: rgba(72,61,139,0.3);
  color: var(--sjc-ivory);
  border: 1px solid var(--sjc-royal-blue);
}

/* === Brand Video === */
.sjc-brand-video {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--sjc-dark-burgundy), var(--sjc-burgundy));
  text-align: center;
}

.sjc-brand-video .sjc-section-title {
  color: var(--sjc-gold);
}

.sjc-video-player-wrapper {
  position: relative;
  width: 85%;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border: 3px solid var(--sjc-gold);
  border-radius: var(--sjc-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.sjc-video-player-wrapper .sjc-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.sjc-video-player-wrapper .sjc-video-embed iframe,
.sjc-video-player-wrapper .sjc-video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sjc-video-poster {
  position: relative;
  cursor: pointer;
}

.sjc-video-poster img {
  width: 100%;
  display: block;
}

.sjc-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  border: 3px solid var(--sjc-ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sjc-transition);
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

.sjc-video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--sjc-burgundy);
  margin-left: 4px;
}

.sjc-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 50px rgba(212,175,55,0.8);
}

/* === Leaderboard === */
.sjc-leaderboard {
  padding: 5rem 0;
  background-color: var(--sjc-antique-white);
}

.sjc-leaderboard__podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.sjc-podium-place {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--sjc-radius);
  background: white;
  border: 2px solid var(--sjc-gold);
  box-shadow: var(--sjc-shadow);
  min-width: 160px;
}

.sjc-podium-place--gold {
  order: 2;
  transform: translateY(-20px);
  border-color: var(--sjc-gold);
  background: linear-gradient(to bottom, #fffbe6, white);
}

.sjc-podium-place--silver {
  order: 1;
  border-color: #C0C0C0;
}

.sjc-podium-place--bronze {
  order: 3;
  border-color: #CD7F32;
}

.sjc-podium-place__avatar-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--sjc-gold);
  overflow: hidden;
  margin: 0 auto 0.8rem;
}

.sjc-podium-place__avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sjc-podium-place__name {
  display: block;
  font-weight: 700;
  color: var(--sjc-charcoal);
  font-size: 0.95rem;
}

.sjc-podium-place__winnings {
  display: block;
  font-family: var(--sjc-font-title);
  font-size: 1.3rem;
  color: var(--sjc-gold);
  margin-top: 0.3rem;
}

.sjc-leaderboard__list {
  list-style: none;
  background: rgba(139,0,0,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--sjc-radius);
  overflow: hidden;
}

.sjc-leaderboard__item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: background 0.2s ease;
}

.sjc-leaderboard__item:hover {
  background: rgba(212,175,55,0.08);
}

.sjc-leaderboard__item:last-child {
  border-bottom: none;
}

.sjc-leaderboard__rank {
  width: 40px;
  font-family: var(--sjc-font-title);
  font-size: 1.2rem;
  color: var(--sjc-burgundy);
  font-weight: 700;
}

.sjc-leaderboard__name {
  flex: 1;
  color: var(--sjc-charcoal);
}

.sjc-leaderboard__winnings {
  font-family: var(--sjc-font-title);
  color: var(--sjc-gold);
  font-weight: 700;
}

/* === Daily Reward Wheel === */
.sjc-daily-reward {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--sjc-dark-burgundy), var(--sjc-burgundy));
  text-align: center;
}

.sjc-daily-reward .sjc-section-title {
  color: var(--sjc-gold);
}

.sjc-wheel-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}

.sjc-reward-wheel {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 6px solid var(--sjc-gold);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
  transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sjc-wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sjc-ivory);
}

.sjc-wheel-spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sjc-royal-blue);
  color: var(--sjc-gold);
  border: 3px solid var(--sjc-gold);
  font-family: var(--sjc-font-title);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: var(--sjc-transition);
  box-shadow: 0 0 20px rgba(72,61,139,0.5);
}

.sjc-wheel-spin-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 35px rgba(72,61,139,0.8);
}

.sjc-wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--sjc-gold);
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* === Blog Preview === */
.sjc-blog-preview {
  padding: 5rem 0;
  background-color: var(--sjc-antique-white);
}

.sjc-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.sjc-article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: var(--sjc-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: var(--sjc-transition);
  border: 1px solid rgba(212,175,55,0.2);
}

.sjc-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  color: inherit;
}

.sjc-article-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.sjc-article-card__content {
  padding: 1.5rem;
}

.sjc-article-card__title {
  font-family: var(--sjc-font-title);
  font-size: 1.15rem;
  color: var(--sjc-burgundy);
  margin-bottom: 0.6rem;
}

.sjc-article-card__excerpt {
  color: var(--sjc-slate);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sjc-article-card__readmore {
  color: var(--sjc-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* === Jewel Showcase === */
.sjc-jewel-showcase {
  padding: 5rem 0;
  background: radial-gradient(circle at center, var(--sjc-dark-burgundy), var(--sjc-burgundy));
  text-align: center;
}

.sjc-jewel-showcase .sjc-section-title {
  color: var(--sjc-gold);
}

.sjc-jewel-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.sjc-jewel-item {
  text-align: center;
  color: var(--sjc-ivory);
  flex: 0 1 150px;
}

.sjc-jewel-item__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: sjc-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(212,175,55,0.6));
}

.sjc-jewel-name {
  display: block;
  font-family: var(--sjc-font-title);
  font-size: 1rem;
  color: var(--sjc-gold);
  margin-bottom: 0.3rem;
}

.sjc-jewel-value {
  display: block;
  font-size: 0.85rem;
  color: var(--sjc-ivory);
  opacity: 0.8;
}

/* === Social Proof / Testimonials === */
.sjc-social-proof {
  padding: 5rem 0;
  background-color: var(--sjc-antique-white);
}

.sjc-testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.sjc-testimonial-card {
  background: white;
  border-left: 5px solid var(--sjc-gold);
  padding: 2rem;
  border-radius: var(--sjc-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.sjc-testimonial-text {
  font-style: italic;
  color: var(--sjc-charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.sjc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sjc-testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--sjc-gold);
  object-fit: cover;
}

.sjc-testimonial-author span {
  color: var(--sjc-slate);
  font-size: 0.9rem;
}

/* === Beginner Guide === */
.sjc-beginner-guide {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(139,0,0,0.05), rgba(212,175,55,0.05));
}

.sjc-guide-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.sjc-guide-step {
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 220px;
}

.sjc-guide-step__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sjc-gold), var(--sjc-dark-gold));
  color: var(--sjc-burgundy);
  font-family: var(--sjc-font-title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 65px;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.sjc-guide-step__title {
  font-family: var(--sjc-font-title);
  font-size: 1.15rem;
  color: var(--sjc-burgundy);
  margin-bottom: 0.6rem;
}

.sjc-guide-step__text {
  color: var(--sjc-slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === VIP Club === */
.sjc-vip-club {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--sjc-burgundy), var(--sjc-dark-burgundy));
  color: var(--sjc-ivory);
  text-align: center;
}

.sjc-vip-club .sjc-section-title {
  color: var(--sjc-gold);
}

.sjc-vip-perks {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.sjc-vip-perk {
  text-align: center;
  flex: 0 1 180px;
}

.sjc-vip-perk__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--sjc-gold);
  animation: sjc-glow 3s ease-in-out infinite;
}

.sjc-vip-perk h4 {
  color: var(--sjc-ivory);
  font-family: var(--sjc-font-title);
  font-size: 1rem;
}

/* === Partners === */
.sjc-partners {
  padding: 4rem 0;
  background-color: var(--sjc-antique-white);
  text-align: center;
}

.sjc-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.sjc-logos-container .sjc-partner-logo {
  height: 55px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--sjc-transition);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--sjc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sjc-font-title);
  color: var(--sjc-slate);
  font-size: 0.85rem;
  min-width: 120px;
}

.sjc-logos-container .sjc-partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--sjc-gold);
  color: var(--sjc-gold);
}

/* === Behind the Scenes === */
.sjc-behind-the-scenes {
  padding: 5rem 0;
  background-color: white;
}

.sjc-bts-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
}

.sjc-bts-content img {
  max-width: 45%;
  border-radius: var(--sjc-radius);
  border: 2px solid var(--sjc-gold);
  box-shadow: var(--sjc-shadow);
}

.sjc-bts-text h3 {
  font-family: var(--sjc-font-title);
  color: var(--sjc-burgundy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sjc-bts-text p {
  color: var(--sjc-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.sjc-link {
  color: var(--sjc-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--sjc-transition);
}

.sjc-link:hover {
  border-bottom-color: var(--sjc-gold);
  color: var(--sjc-gold);
}

/* === Responsible Gaming === */
.sjc-responsible-gaming {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.3);
  background-color: var(--sjc-antique-white);
}

.sjc-responsible-gaming p {
  max-width: 600px;
  margin: 1rem auto 2rem;
  color: var(--sjc-slate);
}

/* === Footer === */
.sjc-footer-divider {
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 50'%3E%3Cpath d='M0 25 C200 10, 400 40, 600 25 C800 10, 1000 40, 1200 25' stroke='%23D4AF37' fill='none' stroke-width='1.5'/%3E%3Ccircle cx='300' cy='25' r='3' fill='%23D4AF37'/%3E%3Ccircle cx='600' cy='25' r='5' fill='%23D4AF37'/%3E%3Ccircle cx='900' cy='25' r='3' fill='%23D4AF37'/%3E%3C/svg%3E") center/contain no-repeat;
}

.sjc-footer {
  background: var(--sjc-dark-burgundy);
  color: var(--sjc-ivory);
  padding: 4rem 0 0;
}

.sjc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.sjc-footer__brand-logo {
  font-family: var(--sjc-font-title);
  font-size: 1.5rem;
  color: var(--sjc-gold);
  margin-bottom: 1rem;
  display: block;
}

.sjc-footer__brand-text {
  color: rgba(255,248,220,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sjc-footer__social {
  display: flex;
  gap: 1rem;
}

.sjc-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sjc-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sjc-gold);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--sjc-transition);
}

.sjc-footer__social-link:hover {
  background: var(--sjc-gold);
  color: var(--sjc-burgundy);
}

.sjc-footer__heading {
  font-family: var(--sjc-font-title);
  font-size: 1.1rem;
  color: var(--sjc-gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

.sjc-footer__links {
  list-style: none;
}

.sjc-footer__links li {
  margin-bottom: 0.6rem;
}

.sjc-footer__links a {
  color: rgba(255,248,220,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--sjc-transition);
}

.sjc-footer__links a:hover {
  color: var(--sjc-gold);
  padding-left: 5px;
}

.sjc-footer__bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  background: rgba(0,0,0,0.3);
  text-align: center;
}

.sjc-footer__copyright {
  color: rgba(255,248,220,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.sjc-footer__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.sjc-footer__badge {
  font-size: 0.75rem;
  color: rgba(255,248,220,0.5);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 2px;
}

.sjc-footer__license {
  color: rgba(255,248,220,0.4);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* === Breadcrumb === */
.sjc-breadcrumb {
  padding: 6rem 0 1rem;
  background: var(--sjc-antique-white);
}

.sjc-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 0.85rem;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.sjc-breadcrumb__list li::after {
  content: '>';
  margin-left: 0.3rem;
  color: var(--sjc-slate);
}

.sjc-breadcrumb__list li:last-child::after {
  display: none;
}

.sjc-breadcrumb__list a {
  color: var(--sjc-gold);
  text-decoration: none;
}

.sjc-breadcrumb__list span {
  color: var(--sjc-slate);
}

/* === Page Header === */
.sjc-page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--sjc-burgundy), var(--sjc-dark-burgundy));
  color: var(--sjc-ivory);
  position: relative;
}

.sjc-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--sjc-antique-white));
}

.sjc-page-header h1 {
  color: var(--sjc-gold);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.sjc-page-header p {
  color: var(--sjc-ivory);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* === Content Page === */
.sjc-content-page {
  padding: 3rem 0 5rem;
}

.sjc-content-page .sjc-container {
  max-width: 900px;
}

.sjc-content-page h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212,175,55,0.3);
}

.sjc-content-page h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}

.sjc-content-page h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
}

.sjc-content-page p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.sjc-content-page img {
  border-radius: var(--sjc-radius);
  border: 2px solid var(--sjc-gold);
  margin: 2rem 0;
  box-shadow: var(--sjc-shadow);
}

.sjc-content-page blockquote {
  border-left: 4px solid var(--sjc-gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(212,175,55,0.05);
  font-style: italic;
  color: var(--sjc-charcoal);
}

.sjc-content-page ul, .sjc-content-page ol {
  margin: 1rem 0 1.5rem 2rem;
}

.sjc-content-page li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* === Game List Page === */
.sjc-game-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--sjc-radius);
}

.sjc-filter-select,
.sjc-filter-input {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--sjc-radius);
  font-family: var(--sjc-font-body);
  font-size: 0.9rem;
  color: var(--sjc-charcoal);
  background: white;
  min-width: 160px;
}

.sjc-filter-select:focus,
.sjc-filter-input:focus {
  outline: none;
  border-color: var(--sjc-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.sjc-game-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.sjc-game-list-card {
  background: white;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--sjc-radius);
  overflow: hidden;
  transition: var(--sjc-transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sjc-game-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139,0,0,0.15);
  border-color: var(--sjc-gold);
}

.sjc-game-list-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sjc-game-list-card__body {
  padding: 1.2rem;
}

.sjc-game-list-card__title {
  font-family: var(--sjc-font-title);
  font-size: 1.1rem;
  color: var(--sjc-burgundy);
  margin-bottom: 0.4rem;
}

.sjc-game-list-card__desc {
  font-size: 0.85rem;
  color: var(--sjc-slate);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.sjc-game-list-card__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sjc-game-list-card__actions {
  display: flex;
  gap: 0.5rem;
}

.sjc-game-list-card__actions .sjc-btn {
  flex: 1;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
}

/* === APP Download === */
.sjc-app-section {
  padding: 5rem 0;
}

.sjc-app-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sjc-app-mockup {
  flex: 0 0 40%;
  text-align: center;
}

.sjc-app-mockup img {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 3px solid var(--sjc-gold);
}

.sjc-app-info {
  flex: 1;
}

.sjc-app-features {
  list-style: none;
  margin: 2rem 0;
}

.sjc-app-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sjc-app-features__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sjc-gold), var(--sjc-dark-gold));
  color: var(--sjc-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sjc-app-features h4 {
  color: var(--sjc-burgundy);
  margin-bottom: 0.2rem;
}

.sjc-app-features p {
  color: var(--sjc-slate);
  font-size: 0.9rem;
}

.sjc-download-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sjc-download-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: var(--sjc-burgundy);
  color: var(--sjc-ivory);
  border-radius: var(--sjc-radius);
  text-decoration: none;
  border: 2px solid var(--sjc-gold);
  transition: var(--sjc-transition);
  font-size: 0.9rem;
}

.sjc-download-btn:hover {
  background: var(--sjc-gold);
  color: var(--sjc-burgundy);
}

.sjc-download-btn__icon {
  font-size: 1.5rem;
}

.sjc-qr-section {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.sjc-qr-item {
  text-align: center;
}

.sjc-qr-item img {
  width: 120px;
  height: 120px;
  border: 2px solid var(--sjc-gold);
  border-radius: var(--sjc-radius);
}

.sjc-qr-item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--sjc-slate);
}

/* === FAQ === */
.sjc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.sjc-faq-item {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--sjc-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
}

.sjc-faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sjc-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sjc-burgundy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.sjc-faq-question:hover {
  background: rgba(212,175,55,0.05);
}

.sjc-faq-question__icon {
  font-size: 1.2rem;
  color: var(--sjc-gold);
  transition: transform 0.3s ease;
}

.sjc-faq-item--open .sjc-faq-question__icon {
  transform: rotate(45deg);
}

.sjc-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.sjc-faq-item--open .sjc-faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.sjc-faq-answer p {
  color: var(--sjc-charcoal);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === Responsive Design === */
@media (max-width: 1279px) {
  .sjc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1023px) {
  .sjc-nav__menu {
    display: none;
  }
  
  .sjc-nav__cta {
    display: none;
  }
  
  .sjc-nav__hamburger {
    display: flex;
  }
  
  .sjc-mobile-menu {
    display: flex;
  }
  
  .sjc-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sjc-bts-content {
    flex-direction: column;
  }
  
  .sjc-bts-content img {
    max-width: 100%;
  }
  
  .sjc-app-layout {
    flex-direction: column;
    text-align: center;
  }
  
  .sjc-app-mockup {
    flex: none;
  }
}

@media (max-width: 767px) {
  .sjc-nav {
    height: 60px;
    padding: 0 1rem;
  }
  
  .sjc-nav__logo {
    font-size: 1.2rem;
  }
  
  .sjc-hero {
    min-height: 500px;
  }
  
  .sjc-hero__title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  
  .sjc-leaderboard__podium {
    flex-direction: column;
    align-items: center;
  }
  
  .sjc-podium-place--gold {
    order: 0;
    transform: none;
  }
  
  .sjc-podium-place--silver {
    order: 1;
  }
  
  .sjc-podium-place--bronze {
    order: 2;
  }
  
  .sjc-article-grid {
    grid-template-columns: 1fr;
  }
  
  .sjc-guide-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .sjc-vip-perks {
    gap: 1.5rem;
  }
  
  .sjc-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sjc-page-header {
    padding: 7rem 0 3rem;
  }
  
  .sjc-reward-wheel {
    width: 280px;
    height: 280px;
  }
  
  .sjc-jewel-grid {
    gap: 1.5rem;
  }
  
  .sjc-game-filters {
    flex-direction: column;
  }
  
  .sjc-filter-select,
  .sjc-filter-input {
    width: 100%;
  }
}

@media (max-width: 639px) {
  .sjc-container {
    padding: 0 1rem;
  }
  
  .sjc-game-grid {
    grid-template-columns: 1fr;
  }
  
  .sjc-game-list-grid {
    grid-template-columns: 1fr;
  }
  
  .sjc-download-buttons {
    flex-direction: column;
  }
  
  .sjc-testimonial-slider {
    grid-template-columns: 1fr;
  }
}
