/* ============================================================
   非凡娱乐 — 复古马戏艺术文化资讯平台
   CSS前缀: fc-
   平台备案编号: CIRCUS-FC-2026-2602
   ============================================================ */

/* === Font Faces === */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --fc-primary: #A62626;
  --fc-secondary: #F2E8C9;
  --fc-accent: #F2B705;
  --fc-highlight: #025E73;
  --fc-bg: #F2F2F2;
  --fc-text: #262626;
  --fc-text-light: #595959;
  --fc-white: #FFFFFF;
  --fc-radius: 4px;
  --fc-shadow: 0 2px 10px rgba(0,0,0,0.1);
  --fc-font-title: 'Playfair Display', 'Georgia', serif;
  --fc-font-body: 'Lora', 'Georgia', serif;
  --fc-transition: 300ms ease;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--fc-font-body);
  color: var(--fc-text);
  background-color: var(--fc-bg);
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--fc-primary);
  text-decoration: none;
  transition: color var(--fc-transition);
}
a:hover {
  color: var(--fc-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fc-font-title);
  line-height: 1.3;
  color: var(--fc-text);
}
ul, ol {
  list-style: none;
}

/* === Container === */
.fc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .fc-container { padding: 0 40px; }
}
@media (min-width: 1024px) {
  .fc-container { padding: 0 60px; }
}

/* === Navigation === */
.fc-nav {
  background: var(--fc-primary);
  padding: 0;
  position: relative;
  z-index: 1000;
}
.fc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 20px;
}
.fc-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fc-nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.fc-nav-logo-text {
  font-family: var(--fc-font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fc-secondary);
  letter-spacing: 1px;
}
.fc-nav-links {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 768px) {
  .fc-nav-links {
    display: flex;
  }
}
.fc-nav-links a {
  color: var(--fc-secondary);
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  padding: 8px 14px;
  position: relative;
  transition: color var(--fc-transition);
  white-space: nowrap;
}
.fc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--fc-accent);
  transition: width var(--fc-transition);
}
.fc-nav-links a:hover,
.fc-nav-links a.fc-active {
  color: var(--fc-accent);
}
.fc-nav-links a:hover::after,
.fc-nav-links a.fc-active::after {
  width: 70%;
}
.fc-nav-cta {
  display: none;
  background: var(--fc-secondary);
  color: var(--fc-primary) !important;
  padding: 8px 18px !important;
  border-radius: var(--fc-radius);
  font-weight: 600;
  border: 2px dashed var(--fc-accent);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fc-nav-cta { display: inline-block; }
}
.fc-nav-cta:hover {
  background: var(--fc-accent);
  color: var(--fc-white) !important;
}
.fc-nav-cta::after {
  display: none !important;
}

/* Hamburger Menu */
.fc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1100;
}
@media (min-width: 768px) {
  .fc-hamburger { display: none; }
}
.fc-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--fc-secondary);
  transition: all var(--fc-transition);
}
.fc-hamburger.fc-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.fc-hamburger.fc-open span:nth-child(2) {
  opacity: 0;
}
.fc-hamburger.fc-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.fc-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(166, 38, 38, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1050;
  transition: left var(--fc-transition);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fc-mobile-menu.fc-open {
  left: 0;
}
.fc-mobile-menu a {
  color: var(--fc-secondary);
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 232, 201, 0.2);
  display: block;
}
.fc-mobile-menu a:hover {
  color: var(--fc-accent);
}
.fc-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  display: none;
}
.fc-mobile-overlay.fc-open {
  display: block;
}

/* === Hero Banner (Module 1) === */
.fc-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--fc-primary);
}
.fc-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.fc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(166,38,38,0.6) 0%, rgba(38,38,38,0.8) 100%);
}
.fc-hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,183,5,0.15) 0%, transparent 70%);
  animation: fc-glow-move 8s ease-in-out infinite alternate;
  top: 20%;
  left: 30%;
}
@keyframes fc-glow-move {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.5); }
}
.fc-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}
.fc-hero-title {
  font-family: var(--fc-font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fc-accent);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  animation: fc-fadeIn 1.5s ease forwards;
  opacity: 0;
}
@media (min-width: 768px) {
  .fc-hero-title { font-size: 3.5rem; }
}
@media (min-width: 1024px) {
  .fc-hero-title { font-size: 4.5rem; }
}
@keyframes fc-fadeIn {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}
.fc-hero-subtitle {
  font-family: var(--fc-font-body);
  font-size: 1.1rem;
  color: var(--fc-secondary);
  margin-bottom: 30px;
  animation: fc-fadeIn 1.5s ease 0.5s forwards;
  opacity: 0;
}
@media (min-width: 768px) {
  .fc-hero-subtitle { font-size: 1.3rem; }
}
.fc-hero-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.fc-countdown-item {
  background: linear-gradient(180deg, #3d1a1a 0%, #2a0f0f 100%);
  border-radius: var(--fc-radius);
  padding: 12px 16px;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.fc-countdown-num {
  font-family: var(--fc-font-title);
  font-size: 2rem;
  color: #FFFFF0;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.fc-countdown-label {
  font-size: 0.75rem;
  color: var(--fc-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.fc-hero-cta {
  display: inline-block;
  background: var(--fc-secondary);
  color: var(--fc-primary);
  font-family: var(--fc-font-title);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--fc-radius);
  border: 2px dashed var(--fc-accent);
  transition: all var(--fc-transition);
  animation: fc-fadeIn 1.5s ease 1s forwards;
  opacity: 0;
}
.fc-hero-cta:hover {
  background: var(--fc-accent);
  color: var(--fc-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.fc-hero-event {
  color: var(--fc-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* === Section Common === */
.fc-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .fc-section { padding: 80px 0; }
}
.fc-section-title {
  font-family: var(--fc-font-title);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--fc-text);
}
@media (min-width: 768px) {
  .fc-section-title { font-size: 2.5rem; }
}
.fc-section-subtitle {
  text-align: center;
  color: var(--fc-text-light);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.fc-section-divider {
  width: 80px;
  height: 3px;
  background: var(--fc-accent);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* === Module 2: Star of the Week === */
.fc-star {
  background: var(--fc-secondary);
}
.fc-star-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  overflow: hidden;
}
@media (min-width: 768px) {
  .fc-star-card { flex-direction: row; }
}
.fc-star-img {
  width: 100%;
  object-fit: cover;
  max-height: 350px;
}
@media (min-width: 768px) {
  .fc-star-img { width: 40%; max-height: none; }
}
.fc-star-info {
  padding: 30px;
  flex: 1;
}
.fc-star-name {
  font-family: var(--fc-font-title);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.fc-star-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.fc-star-tag {
  background: var(--fc-primary);
  color: var(--fc-white);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.fc-star-desc {
  font-size: 1rem;
  color: var(--fc-text-light);
  margin-bottom: 20px;
  line-height: 1.9;
}
.fc-star-desc::first-letter {
  font-size: 2.5em;
  float: left;
  line-height: 1;
  margin-right: 8px;
  font-family: var(--fc-font-title);
  color: var(--fc-primary);
  font-weight: 700;
}
.fc-star-link {
  color: var(--fc-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fc-star-link:hover {
  color: var(--fc-accent);
}

/* === Module 3: Video Section === */
.fc-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-videos-grid { grid-template-columns: repeat(3, 1fr); }
}
.fc-video-card {
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  overflow: hidden;
  transition: all var(--fc-transition);
  border: 2px solid transparent;
}
.fc-video-card:hover {
  border-color: var(--fc-accent);
  box-shadow: 0 4px 20px rgba(242,183,5,0.2);
  transform: rotate(1deg);
}
.fc-video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.fc-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.fc-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(242,183,5,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--fc-transition);
  border: none;
}
.fc-video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--fc-white);
  margin-left: 3px;
}
.fc-video-play-btn:hover {
  background: var(--fc-accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.fc-video-info {
  padding: 15px 20px;
}
.fc-video-title {
  font-family: var(--fc-font-title);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.fc-video-desc {
  font-size: 0.85rem;
  color: var(--fc-text-light);
}

/* === Module 4: World Map === */
.fc-map-section {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
}
.fc-map-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
}
.fc-map-img {
  width: 100%;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
}
.fc-map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--fc-primary);
  border: 3px solid var(--fc-accent);
  border-radius: 50%;
  cursor: pointer;
  animation: fc-pin-pulse 2s ease-in-out infinite;
  z-index: 10;
}
@keyframes fc-pin-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(166,38,38,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(166,38,38,0); }
}
.fc-map-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fc-secondary);
  padding: 15px 20px;
  border-radius: var(--fc-radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  min-width: 220px;
  z-index: 20;
  margin-bottom: 10px;
}
.fc-map-pin:hover .fc-map-tooltip {
  display: block;
}
.fc-map-tooltip-title {
  font-family: var(--fc-font-title);
  font-size: 1rem;
  color: var(--fc-primary);
  margin-bottom: 4px;
}
.fc-map-tooltip-info {
  font-size: 0.8rem;
  color: var(--fc-text-light);
  line-height: 1.5;
}

/* === Module 5: Behind the Scenes === */
.fc-behind-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-behind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .fc-behind-grid { grid-template-columns: repeat(4, 1fr); }
}
.fc-polaroid {
  background: var(--fc-white);
  padding: 12px 12px 30px;
  box-shadow: var(--fc-shadow);
  transition: transform var(--fc-transition);
  border-radius: 2px;
}
.fc-polaroid:hover {
  transform: rotate(-2deg) scale(1.02);
}
.fc-polaroid:nth-child(even):hover {
  transform: rotate(2deg) scale(1.02);
}
.fc-polaroid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fc-polaroid-title {
  font-family: var(--fc-font-title);
  font-size: 1.05rem;
  margin-top: 12px;
  margin-bottom: 6px;
}
.fc-polaroid-desc {
  font-size: 0.85rem;
  color: var(--fc-text-light);
  line-height: 1.6;
}

/* === Module 6: Encyclopedia === */
.fc-encyclopedia {
  background: var(--fc-secondary);
}
.fc-encyclopedia-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.fc-encyclopedia-scroll::-webkit-scrollbar {
  height: 6px;
}
.fc-encyclopedia-scroll::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 3px;
}
.fc-encyclopedia-scroll::-webkit-scrollbar-thumb {
  background: var(--fc-primary);
  border-radius: 3px;
}
.fc-ency-card {
  min-width: 260px;
  max-width: 300px;
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  padding: 25px;
  box-shadow: var(--fc-shadow);
  scroll-snap-align: start;
  flex-shrink: 0;
  border-top: 4px solid var(--fc-primary);
}
.fc-ency-icon {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--fc-radius);
  margin-bottom: 15px;
}
.fc-ency-num {
  font-family: var(--fc-font-title);
  font-size: 0.8rem;
  color: var(--fc-accent);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.fc-ency-title {
  font-family: var(--fc-font-title);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.fc-ency-desc {
  font-size: 0.9rem;
  color: var(--fc-text-light);
  line-height: 1.7;
}

/* === Module 7: Join Us === */
.fc-join {
  background-size: cover;
  background-position: center;
  position: relative;
}
.fc-join-overlay {
  background: rgba(38,38,38,0.85);
  padding: 60px 0;
}
.fc-join-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-join-inner { flex-direction: row; }
}
.fc-join-text {
  flex: 1;
  color: var(--fc-secondary);
}
.fc-join-text h2 {
  font-family: var(--fc-font-title);
  font-size: 2rem;
  color: var(--fc-accent);
  margin-bottom: 20px;
}
.fc-join-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--fc-secondary);
}
.fc-join-form {
  flex: 1;
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: var(--fc-radius);
  border: 1px solid rgba(242,183,5,0.2);
}
.fc-form-group {
  margin-bottom: 18px;
}
.fc-form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--fc-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.fc-form-group input,
.fc-form-group select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(242,232,201,0.3);
  border-radius: var(--fc-radius);
  color: var(--fc-secondary);
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  transition: border-color var(--fc-transition);
}
.fc-form-group input:focus,
.fc-form-group select:focus {
  outline: none;
  border-color: var(--fc-accent);
}
.fc-form-group select option {
  background: var(--fc-primary);
  color: var(--fc-secondary);
}
.fc-join-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: var(--fc-primary);
  color: var(--fc-white);
  font-family: var(--fc-font-title);
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid var(--fc-accent);
  border-radius: var(--fc-radius);
  cursor: pointer;
  transition: all var(--fc-transition);
}
.fc-join-btn:hover {
  background: var(--fc-accent);
  color: var(--fc-text);
  transform: scale(0.98);
}

/* === Module 8: Gallery === */
.fc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .fc-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.fc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--fc-radius);
  cursor: pointer;
}
.fc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: grayscale(80%);
}
.fc-gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.fc-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--fc-white);
  padding: 40px 15px 15px;
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fc-gallery-item:hover .fc-gallery-caption {
  opacity: 1;
}

/* === Module 9: Fan Comments === */
.fc-fans {
  background: var(--fc-secondary);
}
.fc-fans-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-fans-board { grid-template-columns: repeat(3, 1fr); }
}
.fc-note {
  padding: 25px;
  border-radius: 2px;
  box-shadow: 2px 3px 10px rgba(0,0,0,0.1);
  position: relative;
  transition: transform var(--fc-transition);
  line-height: 1.7;
}
.fc-note::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--fc-primary);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.fc-note:hover {
  transform: scale(1.03);
}
.fc-note-yellow { background: #FFF9C4; }
.fc-note-blue { background: #BBDEFB; }
.fc-note-pink { background: #F8BBD0; }
.fc-note-text {
  font-size: 0.9rem;
  color: var(--fc-text);
  margin-bottom: 10px;
}
.fc-note-author {
  font-size: 0.8rem;
  color: var(--fc-text-light);
  font-style: italic;
  text-align: right;
}

/* === Module 10: Honors === */
.fc-honors-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fc-honors-inner { flex-direction: row; }
}
.fc-honors-award {
  flex: 1;
  text-align: center;
}
.fc-award-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(242,183,5,0.3);
  transition: transform 0.6s ease;
}
.fc-award-img:hover {
  transform: rotateY(180deg);
}
.fc-award-title {
  font-family: var(--fc-font-title);
  font-size: 1.2rem;
  color: var(--fc-accent);
}
.fc-award-desc {
  font-size: 0.9rem;
  color: var(--fc-text-light);
  margin-top: 8px;
}
.fc-partners {
  flex: 1;
}
.fc-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}
.fc-partner-item {
  text-align: center;
  padding: 20px;
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  transition: all var(--fc-transition);
  filter: grayscale(100%);
  opacity: 0.6;
}
.fc-partner-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.fc-partner-name {
  font-family: var(--fc-font-title);
  font-size: 0.95rem;
  color: var(--fc-accent);
  margin-top: 8px;
}

/* === Footer === */
.fc-footer {
  background: var(--fc-primary);
  color: var(--fc-secondary);
  padding-top: 0;
}
.fc-footer-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--fc-accent), transparent);
  margin-bottom: 40px;
}
.fc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
@media (min-width: 768px) {
  .fc-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .fc-footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.fc-footer-col h3 {
  font-family: var(--fc-font-title);
  font-size: 1.1rem;
  color: var(--fc-accent);
  margin-bottom: 15px;
}
.fc-footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(242,232,201,0.8);
}
.fc-footer-col a {
  display: block;
  color: rgba(242,232,201,0.8);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--fc-transition);
}
.fc-footer-col a:hover {
  color: var(--fc-accent);
}
.fc-footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.fc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--fc-accent);
  border-radius: 50%;
  color: var(--fc-accent);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--fc-transition);
}
.fc-footer-social a:hover {
  background: var(--fc-accent);
  color: var(--fc-white);
}
.fc-footer-badge {
  font-size: 0.8rem;
  color: rgba(242,232,201,0.6);
  padding: 3px 8px;
  border: 1px solid rgba(242,183,5,0.3);
  border-radius: var(--fc-radius);
  display: inline-block;
  margin-top: 8px;
}
.fc-footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(242,232,201,0.15);
  font-size: 0.8rem;
  color: rgba(242,232,201,0.5);
}

/* === Inner Page Common === */
.fc-page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--fc-primary);
}
.fc-page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.fc-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(166,38,38,0.5) 0%, rgba(38,38,38,0.7) 100%);
}
.fc-page-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}
.fc-page-banner-content h1 {
  font-family: var(--fc-font-title);
  font-size: 2.2rem;
  color: var(--fc-accent);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .fc-page-banner-content h1 { font-size: 3rem; }
}
.fc-page-banner-content p {
  color: var(--fc-secondary);
  font-size: 1.05rem;
}

/* Breadcrumb */
.fc-breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--fc-text-light);
}
.fc-breadcrumb a {
  color: var(--fc-primary);
}
.fc-breadcrumb span {
  margin: 0 8px;
  color: var(--fc-text-light);
}

/* Article Content */
.fc-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.fc-article h2 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fc-accent);
  display: inline-block;
}
.fc-article h3 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
  color: var(--fc-primary);
}
.fc-article p {
  margin-bottom: 18px;
  line-height: 1.9;
  color: var(--fc-text);
}
.fc-article-img {
  width: 100%;
  border-radius: var(--fc-radius);
  margin: 20px 0;
  box-shadow: var(--fc-shadow);
}
.fc-article-img-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fc-text-light);
  margin-top: -10px;
  margin-bottom: 20px;
  font-style: italic;
}
.fc-article-img-left {
  float: left;
  width: 45%;
  margin: 0 25px 15px 0;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
}
.fc-article-img-right {
  float: right;
  width: 45%;
  margin: 0 0 15px 25px;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
}
@media (max-width: 767px) {
  .fc-article-img-left,
  .fc-article-img-right {
    float: none;
    width: 100%;
    margin: 15px 0;
  }
}
.fc-article::after {
  content: '';
  display: table;
  clear: both;
}

/* Cards Grid for inner pages */
.fc-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .fc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .fc-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.fc-card {
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  overflow: hidden;
  transition: all var(--fc-transition);
}
.fc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.fc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fc-card-body {
  padding: 20px;
}
.fc-card-title {
  font-family: var(--fc-font-title);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.fc-card-text {
  font-size: 0.9rem;
  color: var(--fc-text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}
.fc-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--fc-text-light);
}
.fc-card-link {
  color: var(--fc-primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.fc-card-link:hover {
  color: var(--fc-accent);
}

/* Training page specific */
.fc-training-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.fc-training-category {
  margin-bottom: 50px;
}
.fc-training-category h2 {
  font-family: var(--fc-font-title);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid var(--fc-accent);
}
.fc-course-card {
  background: var(--fc-white);
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
  overflow: hidden;
  transition: all var(--fc-transition);
}
.fc-course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}
.fc-course-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.fc-course-body {
  padding: 18px;
}
.fc-course-title {
  font-family: var(--fc-font-title);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.fc-course-desc {
  font-size: 0.85rem;
  color: var(--fc-text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.fc-course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.fc-course-stars {
  color: var(--fc-accent);
  letter-spacing: 2px;
}
.fc-course-count {
  color: var(--fc-text-light);
}

/* APP Download page */
.fc-app-features {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.fc-app-feature {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
  align-items: center;
}
@media (min-width: 768px) {
  .fc-app-feature { flex-direction: row; }
  .fc-app-feature:nth-child(even) { flex-direction: row-reverse; }
}
.fc-app-feature-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--fc-radius);
  box-shadow: var(--fc-shadow);
}
.fc-app-feature-text {
  flex: 1;
}
.fc-app-feature-text h3 {
  font-family: var(--fc-font-title);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--fc-primary);
}
.fc-app-feature-text p {
  font-size: 0.95rem;
  color: var(--fc-text-light);
  line-height: 1.8;
}
.fc-app-download-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}
.fc-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--fc-text);
  color: var(--fc-white);
  border-radius: var(--fc-radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--fc-transition);
}
.fc-app-btn:hover {
  background: var(--fc-primary);
  color: var(--fc-white);
  transform: translateY(-2px);
}

/* FAQ Section */
.fc-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.fc-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
}
.fc-faq-question {
  font-family: var(--fc-font-title);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--fc-accent);
  transition: transform var(--fc-transition);
}
.fc-faq-item.fc-open .fc-faq-question::after {
  transform: rotate(45deg);
}
.fc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 0.95rem;
  color: var(--fc-text-light);
  line-height: 1.8;
}
.fc-faq-item.fc-open .fc-faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* Utility */
.fc-text-center { text-align: center; }
.fc-mt-20 { margin-top: 20px; }
.fc-mb-20 { margin-bottom: 20px; }
.fc-clearfix::after { content: ''; display: table; clear: both; }
