/* ============================================
   综艺工厂 - Variety Factory Main Stylesheet
   CSS Prefix: variety-
   ============================================ */

/* === Google Fonts Import (Comic Neue) === */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

/* === CSS Variables === */
:root {
  --variety-primary: #FFDD00;
  --variety-secondary: #FF33A8;
  --variety-accent: #00C4FF;
  --variety-text: #333333;
  --variety-link: #FF33A8;
  --variety-white: #FFFFFF;
  --variety-black: #000000;
  --variety-bg-light: #FFF9E6;
  --variety-font: 'Comic Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --variety-radius: 12px;
  --variety-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  --variety-border: 3px solid #333;
}

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

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

body {
  font-family: var(--variety-font);
  color: var(--variety-text);
  background-color: var(--variety-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--variety-link);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--variety-primary);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--variety-font);
  font-weight: 700;
  line-height: 1.3;
}

/* === Hidden Jammer Blocks === */
.sticker-jammer-block {
  display: none !important;
}

/* === Navigation === */
#variety-header {
  background: var(--variety-secondary);
  padding: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}

.variety-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.variety-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.variety-logo-icon {
  font-size: 28px;
}

.sp-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--variety-white);
  text-shadow: 2px 2px 0 var(--variety-primary), -1px -1px 0 #333;
  letter-spacing: 2px;
}

.variety-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.variety-nav-links li {
  display: flex;
  align-items: center;
}

.variety-nav-links li:not(:last-child)::after {
  content: '|';
  color: var(--variety-primary);
  font-weight: 700;
  margin: 0 12px;
  font-size: 18px;
}

.variety-nav-links a {
  color: var(--variety-white);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 4px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
}

.variety-nav-links a:hover {
  color: var(--variety-primary);
  transform: scale(1.15);
  animation: variety-jelly 0.5s ease;
}

@keyframes variety-jelly {
  0% { transform: scale(1); }
  30% { transform: scale(1.2, 0.85); }
  50% { transform: scale(0.9, 1.1); }
  70% { transform: scale(1.1, 0.95); }
  100% { transform: scale(1.15); }
}

/* Hamburger Menu */
.variety-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.variety-hamburger span {
  width: 28px;
  height: 3px;
  background: var(--variety-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.variety-hamburger.variety-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.variety-hamburger.variety-active span:nth-child(2) {
  opacity: 0;
}

.variety-hamburger.variety-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Panel */
.variety-mobile-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 51, 168, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 30px 20px 40px;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.variety-mobile-menu.variety-open {
  transform: translateY(0);
}

.variety-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.variety-mobile-menu ul li a {
  color: var(--variety-white);
  font-size: 18px;
  font-weight: 700;
  padding: 12px;
  display: block;
  background: rgba(255,221,0,0.2);
  border-radius: var(--variety-radius);
  border: 2px solid var(--variety-primary);
}

.variety-mobile-menu ul li a:hover {
  background: var(--variety-primary);
  color: var(--variety-text);
}

/* === Hero Section === */
.variety-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--variety-primary) 0%, var(--variety-secondary) 100%);
}

.variety-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.variety-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.variety-hero-title {
  font-size: 3.5rem;
  color: var(--variety-white);
  text-shadow: 4px 4px 0 var(--variety-secondary), -2px -2px 0 #333;
  margin-bottom: 20px;
  animation: variety-bounce-in 1s ease;
}

.variety-hero-subtitle {
  font-size: 1.4rem;
  color: var(--variety-white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  max-width: 700px;
  margin: 0 auto;
}

@keyframes variety-bounce-in {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* === Section Common === */
.variety-section {
  padding: 60px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.variety-section-alt {
  background: var(--variety-white);
}

.variety-section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--variety-text);
  text-shadow: 2px 2px 0 var(--variety-primary);
  position: relative;
  display: inline-block;
  width: 100%;
}

.variety-section-title .variety-hot-badge {
  display: inline-block;
  background: #FF4444;
  color: white;
  font-size: 0.6em;
  padding: 2px 10px;
  border-radius: 20px;
  vertical-align: super;
  animation: variety-pulse 1.5s infinite;
}

@keyframes variety-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.variety-section-desc {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === Cards === */
.variety-card {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  box-shadow: var(--variety-shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: rotate(-1deg);
}

.variety-card:nth-child(even) {
  transform: rotate(1deg);
}

.variety-card:hover {
  transform: rotate(0deg) scale(1.03) translateY(-5px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.25);
}

.variety-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: var(--variety-border);
}

.variety-card-body {
  padding: 16px;
}

.variety-card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--variety-text);
}

.variety-card-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.variety-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #999;
}

/* === Grid Layouts === */
.variety-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.variety-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.variety-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* === Highlight Chart / Ranking === */
.variety-ranking-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.variety-ranking-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  box-shadow: var(--variety-shadow);
  transition: all 0.3s ease;
}

.variety-ranking-item:hover {
  transform: translateX(8px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
}

.variety-ranking-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.variety-rank-gold { background: linear-gradient(135deg, #FFD700, #FFA500); }
.variety-rank-silver { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); }
.variety-rank-bronze { background: linear-gradient(135deg, #CD7F32, #A0522D); }
.variety-rank-normal { background: var(--variety-secondary); }

.variety-ranking-info {
  flex: 1;
}

.variety-ranking-title {
  font-weight: 700;
  font-size: 1rem;
}

.variety-ranking-views {
  font-size: 0.85rem;
  color: #999;
}

/* === Gossip Express / Marquee === */
.variety-marquee-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--variety-primary), var(--variety-secondary));
  padding: 20px 0;
  border: var(--variety-border);
  border-radius: var(--variety-radius);
}

.variety-marquee-track {
  display: flex;
  gap: 24px;
  animation: variety-scroll 30s linear infinite;
  width: max-content;
}

.variety-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes variety-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.variety-gossip-bubble {
  background: var(--variety-white);
  border: 2px solid #333;
  border-radius: 20px;
  padding: 12px 20px;
  min-width: 280px;
  max-width: 320px;
  position: relative;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.variety-gossip-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--variety-white);
}

/* === Show Calendar === */
.variety-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.variety-calendar-header {
  background: var(--variety-secondary);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 0.9rem;
}

.variety-calendar-day {
  background: var(--variety-white);
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 10px;
  min-height: 80px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.variety-calendar-day:hover {
  border-color: var(--variety-secondary);
  transform: scale(1.05);
}

.variety-calendar-day.variety-has-show {
  border-color: var(--variety-primary);
  background: #FFFBE6;
}

.variety-calendar-day-num {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.variety-calendar-show-tag {
  background: var(--variety-secondary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}

/* === Mailbox / Feedback === */
.variety-feedback-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  padding: 30px;
  box-shadow: var(--variety-shadow);
}

.variety-form-group {
  margin-bottom: 20px;
}

.variety-form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--variety-text);
}

.variety-form-group input,
.variety-form-group textarea,
.variety-form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--variety-font);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.variety-form-group input:focus,
.variety-form-group textarea:focus {
  outline: none;
  border-color: var(--variety-secondary);
}

.variety-btn {
  display: inline-block;
  background: var(--variety-primary);
  color: var(--variety-text);
  font-family: var(--variety-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  box-shadow: var(--variety-shadow);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: center;
}

.variety-btn:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
  background: var(--variety-secondary);
  color: var(--variety-white);
}

.variety-btn-secondary {
  background: var(--variety-secondary);
  color: var(--variety-white);
}

.variety-btn-secondary:hover {
  background: var(--variety-primary);
  color: var(--variety-text);
}

/* === Section Backgrounds with Images === */
.variety-section-with-bg {
  position: relative;
  overflow: hidden;
}

.variety-section-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.variety-section-with-bg .variety-section {
  position: relative;
  z-index: 1;
}

/* === Classic Hits TV Wall === */
.variety-tv-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.variety-tv-frame {
  background: #444;
  border: 8px solid #666;
  border-radius: 12px;
  padding: 8px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), var(--variety-shadow);
  transition: all 0.3s ease;
}

.variety-tv-frame:hover {
  border-color: var(--variety-primary);
  transform: scale(1.03);
}

.variety-tv-screen {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.variety-tv-label {
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
  padding: 8px 0 4px;
  font-weight: 700;
}

/* === Game Challenge Cards === */
.variety-game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.variety-game-card {
  background: linear-gradient(135deg, var(--variety-primary), var(--variety-secondary));
  border: var(--variety-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: var(--variety-white);
  box-shadow: var(--variety-shadow);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.variety-game-card:hover {
  transform: scale(1.05) rotate(-2deg);
}

.variety-game-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.variety-game-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.variety-game-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* === Fandom Intel === */
.variety-intel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.variety-intel-card {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  padding: 20px;
  box-shadow: var(--variety-shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.variety-intel-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
}

.variety-intel-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.variety-intel-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.variety-intel-text {
  font-size: 0.9rem;
  color: #666;
}

/* === Footer === */
#variety-footer {
  background: #333;
  color: #ccc;
  padding: 50px 20px 20px;
}

.variety-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #555;
}

.variety-footer-col h3 {
  color: var(--variety-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.variety-footer-col ul {
  list-style: none;
}

.variety-footer-col ul li {
  margin-bottom: 8px;
}

.variety-footer-col ul li a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.variety-footer-col ul li a:hover {
  color: var(--variety-primary);
}

.variety-footer-slogan {
  font-size: 1.3rem;
  color: var(--variety-primary);
  font-weight: 700;
  line-height: 1.8;
}

.variety-footer-bottom {
  max-width: 1440px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  line-height: 2;
}

.variety-footer-bottom a {
  color: #aaa;
}

.variety-footer-bottom a:hover {
  color: var(--variety-primary);
}

.variety-honor-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 8px 0;
}

/* === Page Banner === */
.variety-page-banner {
  background: linear-gradient(135deg, var(--variety-secondary), var(--variety-primary));
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.variety-page-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.variety-page-banner h1 {
  font-size: 2.5rem;
  color: var(--variety-white);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.variety-page-banner p {
  color: var(--variety-white);
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* === Video List Page === */
.variety-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.variety-video-card {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  overflow: hidden;
  box-shadow: var(--variety-shadow);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.variety-video-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

.variety-video-thumb-wrap {
  position: relative;
  overflow: hidden;
}

.variety-video-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.variety-video-card:hover .variety-video-thumb {
  transform: scale(1.05);
}

.variety-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 51, 168, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.variety-video-card:hover .variety-video-play-btn {
  opacity: 1;
}

.variety-video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.variety-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.variety-video-info {
  padding: 14px;
}

.variety-video-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.variety-video-meta {
  font-size: 0.8rem;
  color: #999;
  display: flex;
  justify-content: space-between;
}

/* === Recording Studio Page === */
.variety-studio-hero {
  background: linear-gradient(135deg, #1a0033, #330066);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.variety-studio-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.variety-studio-title {
  font-size: 3rem;
  color: var(--variety-primary);
  text-shadow: 3px 3px 0 var(--variety-secondary);
  position: relative;
  z-index: 1;
}

.variety-studio-subtitle {
  color: var(--variety-white);
  font-size: 1.2rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.variety-studio-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.variety-studio-game-card {
  background: linear-gradient(135deg, var(--variety-primary), #FFE066);
  border: 4px solid #333;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.variety-studio-game-card:hover {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.variety-studio-game-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.variety-studio-game-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--variety-text);
  margin-bottom: 8px;
}

.variety-studio-game-desc {
  font-size: 0.9rem;
  color: #555;
}

/* Scoreboard */
.variety-scoreboard {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  padding: 20px;
  box-shadow: var(--variety-shadow);
}

.variety-scoreboard h3 {
  text-align: center;
  color: var(--variety-secondary);
  margin-bottom: 16px;
}

.variety-score-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.variety-score-name {
  font-weight: 700;
}

.variety-score-pts {
  color: var(--variety-secondary);
  font-weight: 700;
}

/* === Game Area === */
.variety-game-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.variety-game-board {
  background: var(--variety-white);
  border: 4px solid var(--variety-secondary);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--variety-shadow);
}

.variety-game-question {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--variety-text);
}

.variety-game-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.variety-game-option {
  padding: 14px;
  background: var(--variety-bg-light);
  border: 3px solid #ddd;
  border-radius: 12px;
  font-family: var(--variety-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variety-game-option:hover {
  border-color: var(--variety-secondary);
  background: #FFF0F7;
  transform: scale(1.03);
}

.variety-game-option.variety-correct {
  background: #d4edda;
  border-color: #28a745;
}

.variety-game-option.variety-wrong {
  background: #f8d7da;
  border-color: #dc3545;
}

.variety-game-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--variety-secondary);
  margin-top: 16px;
}

/* === APP Download Page === */
.variety-app-hero {
  background: linear-gradient(135deg, var(--variety-primary), var(--variety-secondary));
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.variety-app-hero-img {
  max-width: 300px;
  margin: 0 auto 30px;
  animation: variety-float 3s ease-in-out infinite;
}

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

.variety-app-title {
  font-size: 2.5rem;
  color: var(--variety-white);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

.variety-app-subtitle {
  font-size: 1.1rem;
  color: var(--variety-white);
  max-width: 600px;
  margin: 0 auto 30px;
}

.variety-app-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.variety-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--variety-white);
  color: var(--variety-text);
  font-family: var(--variety-font);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border: 3px solid #333;
  border-radius: 50px;
  box-shadow: var(--variety-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.variety-app-btn:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
}

.variety-app-btn-icon {
  font-size: 1.5rem;
}

.variety-app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.variety-app-feature {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--variety-shadow);
}

.variety-app-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.variety-app-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.variety-app-feature p {
  font-size: 0.9rem;
  color: #666;
}

.variety-qr-section {
  text-align: center;
  padding: 40px 20px;
}

.variety-qr-box {
  display: inline-block;
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  padding: 20px;
  box-shadow: var(--variety-shadow);
}

.variety-qr-placeholder {
  width: 180px;
  height: 180px;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
}

/* === Breadcrumb === */
.variety-breadcrumb {
  padding: 12px 20px;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #999;
}

.variety-breadcrumb a {
  color: var(--variety-link);
}

.variety-breadcrumb span {
  margin: 0 6px;
}

/* === Pagination === */
.variety-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 30px 0;
}

.variety-pagination a,
.variety-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.variety-pagination a:hover {
  border-color: var(--variety-secondary);
  background: #FFF0F7;
}

.variety-pagination .variety-page-active {
  background: var(--variety-secondary);
  color: white;
  border-color: var(--variety-secondary);
}

/* === Responsive Design === */

/* 1440px */
@media (max-width: 1440px) {
  .variety-section {
    padding: 50px 20px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .variety-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-tv-wall {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-game-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-studio-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-app-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-hero-title {
    font-size: 2.5rem;
  }
}

/* 768px */
@media (max-width: 768px) {
  .variety-nav-links {
    display: none;
  }
  .variety-hamburger {
    display: flex;
  }
  .variety-mobile-menu {
    display: block;
  }
  .variety-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety-grid-2 {
    grid-template-columns: 1fr;
  }
  .variety-intel-grid {
    grid-template-columns: 1fr;
  }
  .variety-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .variety-hero-title {
    font-size: 2rem;
  }
  .variety-hero-subtitle {
    font-size: 1.1rem;
  }
  .variety-section-title {
    font-size: 1.7rem;
  }
  .variety-calendar {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
  .variety-calendar-day {
    min-height: 60px;
    padding: 6px;
    font-size: 0.75rem;
  }
  .variety-page-banner h1 {
    font-size: 1.8rem;
  }
  .variety-studio-title {
    font-size: 2rem;
  }
  .variety-app-title {
    font-size: 1.8rem;
  }
}

/* 360px */
@media (max-width: 480px) {
  .variety-grid-3,
  .variety-grid-4,
  .variety-video-grid {
    grid-template-columns: 1fr;
  }
  .variety-tv-wall {
    grid-template-columns: 1fr;
  }
  .variety-game-cards,
  .variety-studio-games {
    grid-template-columns: 1fr;
  }
  .variety-app-features {
    grid-template-columns: 1fr;
  }
  .variety-game-options {
    grid-template-columns: 1fr;
  }
  .variety-hero {
    min-height: 350px;
  }
  .variety-hero-title {
    font-size: 1.6rem;
  }
  .sp-logo-text {
    font-size: 16px;
  }
  .variety-section {
    padding: 30px 15px;
  }
  .variety-calendar {
    gap: 2px;
  }
  .variety-calendar-day {
    min-height: 45px;
    padding: 4px;
    font-size: 0.65rem;
  }
  .variety-calendar-header {
    font-size: 0.7rem;
    padding: 6px;
  }
}

/* === Utility Classes === */
.variety-text-center { text-align: center; }
.variety-mt-20 { margin-top: 20px; }
.variety-mb-20 { margin-bottom: 20px; }
.variety-mt-40 { margin-top: 40px; }
.variety-mb-40 { margin-bottom: 40px; }

/* === Scroll Animation === */
.variety-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.variety-fade-in.variety-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Article Page === */
.variety-article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.variety-article-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--variety-text);
}

.variety-article-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px dashed #eee;
}

.variety-article-content {
  font-size: 1rem;
  line-height: 2;
}

.variety-article-content p {
  margin-bottom: 16px;
}

.variety-article-content img {
  border-radius: var(--variety-radius);
  border: var(--variety-border);
  margin: 20px 0;
}

/* === Vote / Poll === */
.variety-poll {
  max-width: 600px;
  margin: 0 auto;
}

.variety-poll-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--variety-white);
  border: 2px solid #eee;
  border-radius: var(--variety-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.variety-poll-option:hover {
  border-color: var(--variety-secondary);
  background: #FFF0F7;
}

.variety-poll-option input[type="radio"] {
  accent-color: var(--variety-secondary);
  width: 18px;
  height: 18px;
}

.variety-poll-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.variety-poll-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--variety-primary), var(--variety-secondary));
  border-radius: 4px;
  transition: width 0.5s ease;
}
