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

/* Google Fonts - Comic Neue */
@font-face {
  font-family: 'Comic Neue';
  font-style: normal;
  font-weight: 400;
  src: local('Comic Neue Regular'), local('ComicNeue-Regular');
}

@font-face {
  font-family: 'Comic Neue';
  font-style: normal;
  font-weight: 700;
  src: local('Comic Neue Bold'), local('ComicNeue-Bold');
}

/* ===== CSS Variables ===== */
:root {
  --variety-primary: #FFDD00;
  --variety-secondary: #FF33A8;
  --variety-accent: #00C4FF;
  --variety-text: #333333;
  --variety-link: #FF33A8;
  --variety-white: #FFFFFF;
  --variety-bg: #FFF9E6;
  --variety-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  --variety-border: 3px solid #333;
  --variety-radius: 12px;
}

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

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

body {
  font-family: 'Comic Neue', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--variety-text);
  background-color: var(--variety-bg);
  line-height: 1.6;
  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-weight: 700;
  line-height: 1.3;
}

/* ===== Sticker Jammer Block ===== */
.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-container {
  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;
}

.variety-logo img {
  width: 40px;
  height: 40px;
}

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

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

.variety-nav-links li {
  position: relative;
}

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

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

.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;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

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

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

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

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

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

.variety-mobile-menu.active {
  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: 1.2rem;
  font-weight: 700;
  display: block;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

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

.variety-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
}

.variety-mobile-overlay.active {
  display: block;
}

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

.variety-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  opacity: 0.3;
}

.variety-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.variety-hero-subtitle {
  font-size: 1.3rem;
  color: var(--variety-white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.variety-hero-img {
  max-width: 400px;
  margin: 0 auto;
  border: var(--variety-border);
  border-radius: 20px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  animation: variety-float 3s ease-in-out infinite;
}

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

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

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

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

.variety-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--variety-secondary);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

/* ===== Sticker Card Style ===== */
.variety-card {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  box-shadow: var(--variety-shadow);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

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

.variety-card::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 40px;
  height: 40px;
  background: var(--variety-primary);
  border: 2px solid #333;
  border-radius: 0 var(--variety-radius) 0 var(--variety-radius);
  transform: rotate(5deg);
}

.variety-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #333;
  margin-bottom: 15px;
}

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

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

/* ===== 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 Section ===== */
.variety-highlight-chart {
  background: linear-gradient(180deg, #FFF5CC 0%, var(--variety-bg) 100%);
}

.variety-rank-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.variety-rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  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-rank-item:hover {
  transform: translateX(8px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
}

.variety-rank-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--variety-white);
  border: 2px solid #333;
  flex-shrink: 0;
}

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

.variety-rank-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #333;
  flex-shrink: 0;
}

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

.variety-rank-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

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

.variety-hot-tag {
  display: inline-block;
  background: #FF4444;
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
  animation: variety-pulse 1.5s infinite;
}

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

/* ===== Gossip Express ===== */
.variety-gossip-express {
  background: linear-gradient(135deg, #FFE6F5 0%, #FFF5CC 100%);
  overflow: hidden;
}

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

.variety-gossip-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: var(--variety-border);
  border-radius: 20px 20px 20px 4px;
  padding: 16px 20px;
  min-width: 280px;
  max-width: 320px;
  box-shadow: var(--variety-shadow);
  position: relative;
  flex-shrink: 0;
}

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

.variety-gossip-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--variety-secondary);
}

.variety-gossip-text {
  font-size: 0.85rem;
  color: #666;
}

/* ===== New Show Section ===== */
.variety-new-show {
  background: var(--variety-bg);
}

.variety-show-poster {
  position: relative;
  border-radius: var(--variety-radius);
  overflow: hidden;
  border: var(--variety-border);
  box-shadow: var(--variety-shadow);
}

.variety-show-poster img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.variety-show-poster-info {
  padding: 16px;
  background: var(--variety-white);
}

.variety-show-poster-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--variety-primary);
  color: var(--variety-text);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  border: 2px solid #333;
  transform: rotate(5deg);
}

/* ===== Classic Hits ===== */
.variety-classic-hits {
  background: repeating-conic-gradient(#f0f0f0 0% 25%, #e8e8e8 0% 50%) 50% / 20px 20px;
  position: relative;
}

.variety-classic-hits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 249, 230, 0.9);
}

.variety-classic-hits > * {
  position: relative;
  z-index: 1;
}

.variety-tv-card {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 16px;
  border: 4px solid #555;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.variety-tv-screen {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid #888;
  margin-bottom: 12px;
}

.variety-tv-screen img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
}

.variety-tv-label {
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Game Challenge ===== */
.variety-game-challenge {
  background: linear-gradient(135deg, var(--variety-accent) 0%, #7B68EE 100%);
  text-align: center;
  padding: 60px 20px;
}

.variety-game-challenge .variety-section-title {
  color: var(--variety-white);
}

.variety-game-challenge .variety-section-title::after {
  background: var(--variety-primary);
}

.variety-game-btn {
  display: inline-block;
  background: var(--variety-primary);
  color: var(--variety-text);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 40px;
  border: var(--variety-border);
  border-radius: 50px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  margin-top: 20px;
}

.variety-game-btn:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
  color: var(--variety-text);
}

/* ===== Fandom Intel ===== */
.variety-fandom-intel {
  background: linear-gradient(180deg, #FFE6F5 0%, var(--variety-bg) 100%);
}

/* ===== Behind the Scenes ===== */
.variety-behind-scenes {
  background: var(--variety-bg);
}

/* ===== Show Calendar ===== */
.variety-show-calendar {
  background: linear-gradient(180deg, #E6F9FF 0%, var(--variety-bg) 100%);
}

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

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

.variety-calendar-day {
  background: var(--variety-white);
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  min-height: 80px;
  text-align: center;
  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: #FFFDE6;
}

.variety-calendar-date {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.variety-calendar-show {
  font-size: 0.7rem;
  color: var(--variety-secondary);
  font-weight: 700;
}

/* ===== Director's Mailbox ===== */
.variety-mailbox {
  background: linear-gradient(135deg, #FFF5CC 0%, #FFE6F5 100%);
}

.variety-mailbox-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--variety-shadow);
}

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

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

.variety-form-input,
.variety-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: var(--variety-border);
  border-radius: var(--variety-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.variety-form-input:focus,
.variety-form-textarea:focus {
  outline: none;
  border-color: var(--variety-secondary);
  box-shadow: 0 0 0 3px rgba(255, 51, 168, 0.2);
}

.variety-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.variety-form-submit {
  background: var(--variety-secondary);
  color: var(--variety-white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: var(--variety-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
}

.variety-form-submit:hover {
  background: var(--variety-primary);
  color: var(--variety-text);
  transform: scale(1.02);
}

/* ===== Vote Section ===== */
.variety-vote-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.variety-vote-btn {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--variety-text);
}

.variety-vote-btn:hover,
.variety-vote-btn.active {
  background: var(--variety-primary);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: var(--variety-shadow);
}

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

.variety-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

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

.variety-footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--variety-secondary);
  border-radius: 2px;
}

.variety-footer-links {
  list-style: none;
}

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

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

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

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

.variety-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  line-height: 2;
}

.variety-footer-bottom a {
  color: #bbb;
  font-size: 0.8rem;
}

.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.75rem;
  margin: 8px 0;
}

/* ===== Animations ===== */
.variety-animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Wobble on hover for cards */
.variety-wobble:hover {
  animation: variety-wobble 0.5s ease;
}

@keyframes variety-wobble {
  0% { transform: rotate(0); }
  15% { transform: rotate(-3deg); }
  30% { transform: rotate(2deg); }
  45% { transform: rotate(-2deg); }
  60% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0); }
}

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

.variety-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}

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

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

.variety-content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.variety-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.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 ease;
}

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

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

.variety-video-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.variety-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 51, 168, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.variety-play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

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

.variety-video-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--variety-text);
}

.variety-video-meta {
  font-size: 0.8rem;
  color: #999;
}

/* ===== Recording Studio Page ===== */
.variety-studio-hero {
  background: linear-gradient(135deg, #7B68EE 0%, var(--variety-secondary) 50%, var(--variety-primary) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.variety-studio-hero h1 {
  font-size: 3rem;
  color: var(--variety-white);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  -webkit-text-stroke: 2px #333;
}

.variety-game-start {
  font-size: 4rem;
  font-weight: 700;
  color: var(--variety-primary);
  text-shadow: 4px 4px 0 #333;
  -webkit-text-stroke: 3px #333;
  animation: variety-pulse 1.5s infinite;
  margin-bottom: 20px;
}

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

.variety-game-card {
  background: var(--variety-white);
  border: 4px solid #333;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.variety-game-card:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.25);
  border-color: var(--variety-secondary);
}

.variety-game-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #333;
  margin: 0 auto 16px;
}

.variety-game-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--variety-secondary);
}

.variety-game-card p {
  font-size: 0.9rem;
  color: #666;
}

/* Scoreboard */
.variety-scoreboard {
  background: var(--variety-white);
  border: var(--variety-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--variety-shadow);
  max-width: 350px;
  margin: 0 auto;
}

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

.variety-score-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 6px;
  background: #f9f9f9;
  border-radius: 8px;
}

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

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

/* ===== APP Download Page ===== */
.variety-app-hero {
  background: linear-gradient(135deg, var(--variety-primary) 0%, var(--variety-secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.variety-app-logo {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  border: 4px solid #333;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  animation: variety-spin-slow 10s linear infinite;
  margin-bottom: 30px;
}

@keyframes variety-spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.variety-app-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.variety-app-btn:hover {
  transform: scale(1.05);
  border-color: var(--variety-primary);
  color: var(--variety-primary);
}

.variety-app-qr {
  margin-top: 30px;
  width: 160px;
  height: 160px;
  border: 4px solid #333;
  border-radius: 16px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

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

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

.variety-article-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

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

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

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

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

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

/* 1024px */
@media (max-width: 1024px) {
  .variety-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .variety-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .variety-hero-title {
    font-size: 2.5rem;
  }

  .variety-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (max-width: 768px) {
  .variety-nav-links {
    display: none;
  }

  .variety-hamburger {
    display: flex;
  }

  .variety-mobile-menu {
    display: block;
  }

  .variety-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .variety-grid-3 {
    grid-template-columns: 1fr;
  }

  .variety-grid-2 {
    grid-template-columns: 1fr;
  }

  .variety-hero {
    min-height: 400px;
    padding: 40px 16px;
  }

  .variety-hero-title {
    font-size: 2rem;
  }

  .variety-hero-subtitle {
    font-size: 1rem;
  }

  .variety-section-title {
    font-size: 1.6rem;
  }

  .variety-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .variety-footer-col h3::after {
    margin: 0 auto;
  }

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

  .variety-calendar-day {
    min-height: 60px;
    padding: 4px;
  }

  .variety-calendar-date {
    font-size: 0.85rem;
  }

  .variety-calendar-show {
    font-size: 0.6rem;
  }

  .variety-page-banner h1 {
    font-size: 1.8rem;
  }

  .variety-game-start {
    font-size: 2.5rem;
  }

  .variety-studio-hero h1 {
    font-size: 2rem;
  }
}

/* 360px */
@media (max-width: 360px) {
  .variety-grid-4 {
    grid-template-columns: 1fr;
  }

  .variety-hero-title {
    font-size: 1.5rem;
  }

  .variety-hero-subtitle {
    font-size: 0.9rem;
  }

  .sp-logo-text {
    font-size: 1.2rem;
  }

  .variety-section-title {
    font-size: 1.3rem;
  }

  .variety-rank-item {
    flex-direction: column;
    text-align: center;
  }

  .variety-rank-thumb {
    width: 100%;
    height: 120px;
  }

  .variety-calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .variety-game-card img {
    width: 80px;
    height: 80px;
  }
}

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