/* ============================================================
   每日大赛 - 全球厨艺烹饪大赛直播平台
   Culinary King (ck-) Design System
   主色调: 辉煌金 #D4AF37 | 大理石白 #FDFDFD | 曜石黑 #36454F
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #36454F;
  background-color: #FDFDFD;
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8962e;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  color: #36454F;
  line-height: 1.4;
  font-weight: 700;
}

/* ---- Typography Scale ---- */
.ck-h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.ck-h2 { font-size: 2rem; margin-bottom: 1.2rem; }
.ck-h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* ---- Utility Classes ---- */
.ck-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ck-section {
  padding: 4rem 0;
}

.ck-section-alt {
  padding: 4rem 0;
  background: linear-gradient(180deg, #FDFDFD 0%, #f8f5ec 50%, #FDFDFD 100%);
}

.ck-gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 1rem auto;
}

.ck-gold-line-left {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, transparent);
  margin: 1rem 0;
}

.ck-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.ck-section-title h2 {
  font-size: 2rem;
  color: #36454F;
  position: relative;
  display: inline-block;
}

.ck-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #D4AF37;
}

.ck-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #FDFDFD;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 1px;
}

.ck-btn:hover {
  background: linear-gradient(135deg, #b8962e, #9a7d25);
  color: #FDFDFD;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.ck-btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #D4AF37;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ck-btn-outline:hover {
  background: #D4AF37;
  color: #FDFDFD;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.ck-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #36454F 100%);
  padding: 0;
  position: relative;
  z-index: 100;
}

.ck-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1440px;
  margin: 0 auto;
}

.ck-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ck-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.ck-logo-text {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ck-nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

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

.ck-nav-link {
  color: #FDFDFD;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  display: block;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ck-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.ck-nav-link:hover {
  color: #D4AF37;
}

.ck-nav-link:hover::after {
  width: 80%;
}

.ck-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ck-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
}

.ck-search-input {
  background: transparent;
  border: none;
  color: #FDFDFD;
  font-size: 0.85rem;
  outline: none;
  width: 120px;
}

.ck-search-input::placeholder {
  color: rgba(253,253,253,0.5);
}

.ck-search-btn {
  background: none;
  border: none;
  color: #D4AF37;
  cursor: pointer;
  font-size: 1rem;
}

.ck-login-btn {
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #FDFDFD;
  border: none;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ck-login-btn:hover {
  background: linear-gradient(135deg, #b8962e, #9a7d25);
  transform: translateY(-1px);
}

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

.ck-hamburger span {
  width: 28px;
  height: 3px;
  background: #D4AF37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ============================================================
   HERO BANNER / CAROUSEL
   ============================================================ */
.ck-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.ck-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.ck-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.ck-hero-slide.ck-active {
  opacity: 1;
}

.ck-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(54,69,79,0.5) 50%, rgba(212,175,55,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.ck-hero-content {
  max-width: 800px;
}

.ck-hero-content h1 {
  font-size: 3rem;
  color: #FDFDFD;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ck-hero-content h1 span {
  color: #D4AF37;
}

.ck-hero-content p {
  font-size: 1.2rem;
  color: rgba(253,253,253,0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ck-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ck-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(253,253,253,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.ck-hero-dot.ck-active {
  background: #D4AF37;
  transform: scale(1.2);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.ck-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ck-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  background: #1a1a1a;
}

.ck-video-card:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.ck-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.ck-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ck-video-play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #FDFDFD;
  margin-left: 4px;
}

.ck-video-card:hover .ck-video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: #D4AF37;
}

.ck-video-info {
  padding: 1rem;
}

.ck-video-info h3 {
  font-size: 1rem;
  color: #FDFDFD;
  margin-bottom: 0.3rem;
}

.ck-video-info p {
  font-size: 0.85rem;
  color: rgba(253,253,253,0.6);
}

/* Video Modal */
.ck-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.ck-modal.ck-active {
  display: flex;
}

.ck-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.ck-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #D4AF37;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.ck-modal-close:hover {
  color: #FDFDFD;
}

.ck-modal-content video {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #D4AF37;
}

/* ============================================================
   SCHEDULE / TIMELINE
   ============================================================ */
.ck-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.ck-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #D4AF37, rgba(212,175,55,0.2));
}

.ck-timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #FDFDFD;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s ease;
}

.ck-timeline-item:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212,175,55,0.15);
}

.ck-timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 1.8rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D4AF37;
  border: 3px solid #FDFDFD;
  box-shadow: 0 0 0 2px #D4AF37;
}

.ck-timeline-date {
  font-size: 0.85rem;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.ck-timeline-title {
  font-size: 1.1rem;
  color: #36454F;
  margin-bottom: 0.3rem;
}

.ck-timeline-desc {
  font-size: 0.9rem;
  color: #6b7b8d;
}

/* ============================================================
   RECIPE CARDS
   ============================================================ */
.ck-recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ck-recipe-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #FDFDFD;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.3s ease;
}

.ck-recipe-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212,175,55,0.15);
  transform: translateY(-3px);
}

.ck-recipe-img {
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.ck-recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ck-recipe-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.ck-recipe-info p {
  font-size: 0.9rem;
  color: #6b7b8d;
  margin-bottom: 0.8rem;
}

.ck-recipe-stars {
  color: #D4AF37;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================================
   VS BATTLE
   ============================================================ */
.ck-battle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
}

.ck-battle-chef {
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.ck-battle-chef img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #D4AF37;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.ck-battle-chef:hover img {
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

.ck-battle-chef h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.ck-battle-chef p {
  font-size: 0.9rem;
  color: #6b7b8d;
}

.ck-battle-vs {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
  line-height: 1;
}

/* ============================================================
   RESERVATION FORM
   ============================================================ */
.ck-reservation {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, #FDFDFD, #f8f5ec);
  border-radius: 12px;
  border: 2px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 40px rgba(212,175,55,0.1);
}

.ck-form-group {
  margin-bottom: 1.5rem;
}

.ck-form-group label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #36454F;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ck-form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 6px;
  font-size: 0.95rem;
  color: #36454F;
  background: #FDFDFD;
  transition: border-color 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.ck-form-input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

.ck-form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #FDFDFD;
  border: none;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.ck-form-submit:hover {
  background: linear-gradient(135deg, #b8962e, #9a7d25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* ============================================================
   WORLD MAP
   ============================================================ */
.ck-map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.ck-map-wrapper img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(212,175,55,0.2);
}

.ck-map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #D4AF37;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #FDFDFD;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ck-map-pin:hover {
  transform: scale(1.5);
  z-index: 10;
}

.ck-map-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #36454F;
  color: #FDFDFD;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid #D4AF37;
}

.ck-map-pin:hover .ck-map-tooltip {
  opacity: 1;
}

/* ============================================================
   CRITIC / COLUMNIST
   ============================================================ */
.ck-critic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ck-critic-card {
  padding: 2rem;
  background: #FDFDFD;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.ck-critic-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212,175,55,0.15);
}

.ck-critic-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4AF37;
  margin: 0 auto 1rem;
}

.ck-critic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.ck-critic-card .ck-critic-title {
  font-size: 0.85rem;
  color: #D4AF37;
  margin-bottom: 0.8rem;
}

.ck-critic-card p {
  font-size: 0.9rem;
  color: #6b7b8d;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ck-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #36454F 100%);
  color: rgba(253,253,253,0.8);
  padding: 4rem 0 0;
}

.ck-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.ck-footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.ck-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #D4AF37;
}

.ck-footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.ck-footer-col ul li {
  margin-bottom: 0.5rem;
}

.ck-footer-col ul li a {
  color: rgba(253,253,253,0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.ck-footer-col ul li a:hover {
  color: #D4AF37;
}

.ck-footer-honors {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 2rem 0;
  text-align: center;
}

.ck-honor-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.ck-honor-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(253,253,253,0.8);
}

.ck-honor-icon {
  font-size: 1.2rem;
}

.ck-footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 1.5rem 0;
  text-align: center;
}

.ck-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253,253,253,0.5);
  margin-bottom: 0.3rem;
}

.ck-auth-number {
  font-size: 0.85rem;
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ck-breadcrumb {
  padding: 1rem 0;
  background: #f8f5ec;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

.ck-breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ck-breadcrumb-list li::after {
  content: '>';
  margin-left: 0.5rem;
  color: #b8962e;
}

.ck-breadcrumb-list li:last-child::after {
  display: none;
}

.ck-breadcrumb-list li a {
  color: #6b7b8d;
}

.ck-breadcrumb-list li:last-child a {
  color: #D4AF37;
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.ck-page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ck-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.75), rgba(54,69,79,0.6));
}

.ck-page-hero-content {
  position: relative;
  z-index: 1;
}

.ck-page-hero h1 {
  font-size: 2.5rem;
  color: #FDFDFD;
  margin-bottom: 0.5rem;
}

.ck-page-hero p {
  font-size: 1.1rem;
  color: rgba(253,253,253,0.8);
}

.ck-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.ck-article p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.ck-article-img {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.2);
}

.ck-article-img img {
  width: 100%;
}

.ck-internal-links {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f5ec;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.ck-internal-links h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #D4AF37;
}

.ck-internal-links ul {
  list-style: none;
}

.ck-internal-links ul li {
  margin-bottom: 0.5rem;
}

.ck-internal-links ul li a {
  color: #36454F;
  font-size: 0.95rem;
}

.ck-internal-links ul li a:hover {
  color: #D4AF37;
}

/* ============================================================
   HALL OF FAME (Star Chef Hall)
   ============================================================ */
.ck-hall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ck-hall-card {
  background: #FDFDFD;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.2);
  transition: all 0.4s ease;
  text-align: center;
  padding-bottom: 1.5rem;
}

.ck-hall-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.ck-hall-card-img {
  position: relative;
  overflow: hidden;
}

.ck-hall-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.ck-hall-card:hover .ck-hall-card-img img {
  filter: grayscale(0%);
}

.ck-hall-card-year {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(212,175,55,0.9);
  color: #FDFDFD;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.ck-hall-card h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.3rem;
}

.ck-hall-card .ck-hall-country {
  font-size: 0.85rem;
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.ck-hall-card .ck-hall-dish {
  font-size: 0.9rem;
  color: #6b7b8d;
  padding: 0 1rem;
}

/* ============================================================
   APP DOWNLOAD PAGE
   ============================================================ */
.ck-app-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  min-height: 60vh;
}

.ck-app-info {
  max-width: 500px;
}

.ck-app-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ck-app-info p {
  font-size: 1.1rem;
  color: #6b7b8d;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ck-app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ck-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #FDFDFD;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ck-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  color: #FDFDFD;
}

.ck-app-mockup {
  max-width: 350px;
}

.ck-app-mockup img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.ck-faq-item {
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.ck-faq-question {
  padding: 1.2rem 1.5rem;
  background: #FDFDFD;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #36454F;
  transition: background 0.3s ease;
}

.ck-faq-question:hover {
  background: #f8f5ec;
}

.ck-faq-toggle {
  color: #D4AF37;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.ck-faq-item.ck-active .ck-faq-toggle {
  transform: rotate(45deg);
}

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

.ck-faq-item.ck-active .ck-faq-answer {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

.ck-faq-answer p {
  font-size: 0.95rem;
  color: #6b7b8d;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE - Mobile First Approach
   ============================================================ */

/* Base: 320px+ (mobile) - already styled above */

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .ck-h1 { font-size: 2.8rem; }
  .ck-h2 { font-size: 2.2rem; }
  .ck-container { padding: 0 2rem; }
  .ck-hero-content h1 { font-size: 3.5rem; }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .ck-h1 { font-size: 3.2rem; }
  .ck-container { padding: 0 3rem; }
}

/* Large Desktop: 1440px+ */
@media (min-width: 1440px) {
  .ck-container { padding: 0 4rem; }
  .ck-hero-content h1 { font-size: 4rem; }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .ck-hamburger {
    display: flex;
  }

  .ck-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #36454F);
    flex-direction: column;
    padding: 1rem;
    border-top: 2px solid #D4AF37;
  }

  .ck-nav-links.ck-active {
    display: flex;
  }

  .ck-nav-right {
    display: none;
  }

  .ck-nav-right.ck-mobile-show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: #1a1a1a;
    justify-content: center;
  }

  .ck-hero {
    height: 70vh;
    min-height: 400px;
  }

  .ck-hero-content h1 {
    font-size: 1.8rem;
  }

  .ck-hero-content p {
    font-size: 1rem;
  }

  .ck-video-grid {
    grid-template-columns: 1fr;
  }

  .ck-recipe-grid {
    grid-template-columns: 1fr;
  }

  .ck-recipe-card {
    flex-direction: column;
  }

  .ck-recipe-img {
    width: 100%;
    min-width: auto;
    height: 200px;
  }

  .ck-battle {
    flex-direction: column;
    gap: 1rem;
  }

  .ck-battle-vs {
    font-size: 3rem;
  }

  .ck-critic-grid {
    grid-template-columns: 1fr;
  }

  .ck-footer-grid {
    grid-template-columns: 1fr;
  }

  .ck-hall-grid {
    grid-template-columns: 1fr;
  }

  .ck-app-hero {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .ck-app-info h1 {
    font-size: 1.8rem;
  }

  .ck-page-hero h1 {
    font-size: 1.8rem;
  }

  .ck-section {
    padding: 2.5rem 0;
  }

  .ck-honor-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .ck-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ck-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ck-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ck-animate {
  animation: ck-fadeInUp 0.8s ease forwards;
}

.ck-gold-shimmer {
  background: linear-gradient(90deg, #D4AF37, #f0d060, #D4AF37);
  background-size: 200% 100%;
  animation: ck-shimmer 3s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MARBLE TEXTURE BACKGROUND
   ============================================================ */
.ck-marble-bg {
  background-color: #f8f5ec;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 50%);
}

/* ============================================================
   INNER PAGE VIDEO PLAYER
   ============================================================ */
.ck-video-player {
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(212,175,55,0.3);
}

/* ============================================================
   CONTENT GRID (for inner pages)
   ============================================================ */
.ck-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ck-content-card {
  background: #FDFDFD;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.3s ease;
}

.ck-content-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212,175,55,0.15);
  transform: translateY(-3px);
}

.ck-content-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ck-content-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ck-content-card:hover .ck-content-card-img img {
  transform: scale(1.05);
}

.ck-content-card-body {
  padding: 1.5rem;
}

.ck-content-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ck-content-card-body p {
  font-size: 0.9rem;
  color: #6b7b8d;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .ck-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ck-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
